/* ── Article layout ── */
.mign-product-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 600px;
  gap: 80px;
  padding: 80px 56px;
}
.mign-block-section.is-editor .mign-product-card {
  padding: 40px 24px;
  gap: 10px;
}
/* Image on right: visually swap columns */
.mign-product-card--image-right {
  flex-direction: row-reverse;
}

/* ── Media column ── */
.mign-product-card__media {
  flex: 0 0 50%;
  max-width: 50%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mign-product-card__media-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Editor: wrap for replace button overlay */
.mign-product-card__media-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mign-product-card__media-replace {
  position: absolute !important;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

/* ── Meta / text column ── */
.mign-product-card__meta {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.mign-product-card__meta > p {
  margin-bottom: 0;
}
/* ── Typography ── */
.mign-product-card__index {
  color: var(--color-text-secondary, #5b575c);
  font-family: var(--font-family-sans-en, "Inter");
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 18.2px */
  letter-spacing: 1.68px;
  margin-bottom: 12px;
}

.mign-product-card__name-prefix {
  color: var(--color-text-primary, #1a171c);
  font-family: var(--font-family-sans-en, "Inter");
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 105%; /* 25.2px */
  letter-spacing: -0.48px;
}

.mign-product-card__name-main {
  color: var(--color-text-primary, #1a171c);
  font-family: "Cormorant Infant";
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 105%; /* 67.2px */
  letter-spacing: -1.28px;
  margin-bottom: 8px;
}

.mign-product-card__tagline {
  color: var(--color-text-primary, #1a171c);
  font-family: var(--font-family-sans-jp, "Noto Sans JP");
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%; /* 28.8px */
  margin-bottom: 16px;
}

.mign-product-card__desc {
  color: var(--color-text-secondary, #5b575c);
  font-family: var(--font-family-sans-jp, "Noto Sans JP");
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 185%; /* 25.9px */
  margin-bottom: 24px;
}

.mign-product-card__link {
  color: var(--color-text-primary, #1a171c) !important;
  font-family: var(--font-family-sans-en, "Inter");
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 18.2px */
  letter-spacing: 1.12px;
  text-decoration: none;
}

.mign-product-card__link:hover {
  opacity: 0.7;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mign-product-card,
  .mign-product-card--image-right {
    flex-direction: column;
  }

  .mign-product-card__media,
  .mign-product-card__meta {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mign-product-card__media {
    min-height: 280px;
  }

  .mign-product-card__meta {
    padding: 40px 24px;
  }

  .mign-product-card__name-main {
    font-size: 48px;
  }
}
