/* minimal styles */
.related-product-shortcode { display:block }
.related-product-image img { display:block; max-width:100%; height:auto }
.related-product-info a { text-decoration:none }
.call-product-info { display:flex; gap:.5rem; align-items:center; flex-wrap:wrap }
.mj-related-post {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 72px 16px 20px;
  background: #fff;
  border-radius: 12px;
	box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12);
  overflow: hidden;
	margin: 30px 0;
}
.mj-related-post::after {
      content: "";
    position: absolute;
    left: 32px;
    width: 80px;
    height: 65px;
    background-image: url(https://manouchehrinuts.com/mag/wp-content/uploads/2025/08/logo_resized_75px.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
    opacity: .1;
	
}
.mj-related-post-section-label {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  height: 100%;
  width: 56px;
  background: #333;
  color: #fff;
  border-start-start-radius: 12px;
  border-end-start-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
	
}
.mj-related-post-section-label-inner {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .2px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.mj-related-post-thumbnail {
  order: 1;
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  flex: 0 0 auto;
}
.mj-related-post-thumbnail img {
  width: 120px;
  height: 76px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.mj-related-post-content {
  order: 2;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: 76px;
}
.mj-related-post-title {
  color: #444;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.9;
  transition: color .2s ease;
  display: inline-block;
}
.mj-related-post-title:hover {
  color: #000;
}

.mj-related-post::before {
  content: "";
  position: absolute;
  inset-inline-start: 20px;
  top: 18px;
  width: 56px;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.06) 0%, rgba(0,0,0,0) 72%);
  border-radius: 50%;
  opacity: .35;
  pointer-events: none;
}
@media (max-width: 480px) {
  .mj-related-post {
    padding: 14px 64px 14px 14px;
    gap: 12px;
  }
  .mj-related-post-section-label {
    width: 48px;
  }
  .mj-related-post-title {
    font-size: 15px;
  }
}
