.smyk-ex .smyk-ex__frame { aspect-ratio: 900 / 1200 !important; }
.smyk-ex .smyk-ex__frame::before { padding-top: 133.333% !important; }
/* All sections on the What Is eSIM page → uniform 40px/45px padding.
   Emitted from this section (renders only on this page) so it stays page-scoped
   and bypasses the CSS-asset cache lag. */
body.page-what-is-esim .smyk-ex,
body.page-what-is-esim .smyk-bn,
body.page-what-is-esim .esvs,
body.page-what-is-esim .smyk-my,
body.page-what-is-esim .smyk-efaq,
body.page-what-is-esim .smyk-newsletter { padding-block: 40px 45px !important; }
/* Tighten the gap between the hero (image/copy) and the "eSIM Explained" block */
.smyk-ex .smyk-ex__explained { margin-top: clamp(24px, 3vw, 44px) !important; }

.smyk-ex {
  --ex-dark:   #222222;
  --ex-orange: #e41d56;
  --ex-border: #e5e7eb;
  --ex-light:  #f5f5f7;
  --ex-muted:  #475569;
  --ex-white:  #ffffff;

  background: var(--ex-white);
  padding-block: var(--smyk-section-py);
}
.smyk-ex__wrap {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

/* ── TOP: hero panel ─────────────────────────────── */
.smyk-ex__hero {
  padding: clamp(20px, 3vw, 32px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

/* Copy */
.smyk-ex__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.smyk-ex__eyebrow {
  font-family: var(--smyk-font, inherit);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ex-orange);
}
.smyk-ex__heading {
  font-family: var(--smyk-font, inherit);
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ex-dark);
  margin: 0;
}
.smyk-ex__heading-accent {
  color: var(--ex-orange);
  margin-left: 0.3em;
}
.smyk-ex__body {
  font-family: var(--smyk-font, inherit);
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.65;
  color: var(--ex-muted);
}
.smyk-ex__body p { margin: 0 0 12px; }
.smyk-ex__body p:last-child { margin: 0; }
.smyk-ex__body strong { color: var(--ex-dark); font-weight: 700; }
.smyk-ex__body a { color: var(--ex-orange); text-decoration: underline; text-underline-offset: 3px; }

/* CTA */
.smyk-ex__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  background: var(--ex-orange);
  color: var(--ex-white);
  font-family: var(--smyk-font, inherit);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color .2s, transform .15s, gap .2s;
}
.smyk-ex__cta:hover { background: #c2164a; gap: 14px; }

/* Media — bulletproof 1:1 square frame */
.smyk-ex__media {
  display: flex;
  justify-content: center;
  width: 100%;
}
.smyk-ex__frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 900 / 1200;
  border-radius: 20px;
  overflow: hidden;
}
/* Fallback for any environment that ignores aspect-ratio on the parent */
.smyk-ex__frame::before {
  content: '';
  display: block;
  padding-top: 133.333%;
}
.smyk-ex__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.smyk-ex__img--placeholder {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), transparent 60%),
    linear-gradient(135deg, #c7d8ed 0%, #88a8c8 100%);
}

/* ── BOTTOM: eSIM Explained ──────────────────────── */
.smyk-ex__explained {
  max-width: 1100px;
  margin: clamp(24px, 3vw, 44px) auto 0;
}
.smyk-ex__explained-heading {
  font-family: var(--smyk-font, inherit);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ex-dark);
  line-height: 1.15;
  margin: 0 0 18px;
}
.smyk-ex__explained-body {
  font-family: var(--smyk-font, inherit);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: var(--ex-muted);
  max-width: 80ch;
}
.smyk-ex__explained-body p { margin: 0 0 14px; }
.smyk-ex__explained-body p:last-child { margin: 0; }
.smyk-ex__explained-body strong { color: var(--ex-dark); font-weight: 700; }
.smyk-ex__explained-body a {
  color: var(--ex-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 900px) {
  .smyk-ex__hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .smyk-ex__media { order: 1; }
  .smyk-ex__img { max-width: 100%; }
}
