/* ============================================================
   IPL RUPEE CONTEST — L20 RUPEE CURRENCY INFOCARDS LAYOUT
   Brand: iplrupeecontest.com
   Palette: Rupee Green #138808 + Saffron #FF9933 + Navy #000080 + Ivory #FFF8E7
   Fonts: Mukta (display) + Hind (body) + Tiro Devanagari Hindi (data)
   Layout: Currency infocards hero with INR visual identity, rupee symbol motif,
           paisa-precise number formatting, currency-aware data tables.
   100% FRESH - no inheritance from sister sites
   ============================================================ */

:root {
  --primary: #138808;          /* Rupee green */
  --primary-deep: #0B5E05;     /* Deep rupee green */
  --primary-soft: #1FA329;     /* Soft rupee green */
  --accent: #FF9933;           /* Indian saffron */
  --accent-soft: #E07A1F;
  --accent-bright: #FFB366;
  --navy: #000080;             /* Indian navy */
  --navy-deep: #00004D;
  --navy-soft: #1A1A99;
  --ivory: #FFF8E7;            /* Paper ivory */
  --bg: #FFF8E7;               /* Paper ivory background */
  --bg-soft: #FBF1D9;
  --surface: #FFFFFF;
  --surface-elev: #FFFFFF;
  --surface-line: #E8DFC7;
  --text: #1A1A1A;             /* Near black on ivory */
  --text-soft: #4A4A4A;
  --text-dim: #6B6B6B;
  --border: #D6CCAE;
  --border-bright: #138808;
  --success: #138808;
  --warn: #FF9933;
  --danger: #C62828;
  --rupee: #138808;            /* INR accent */

  --font-sans: 'Hind', system-ui, -apple-system, sans-serif;
  --font-display: 'Mukta', 'Hind', sans-serif;
  --font-hindi: 'Tiro Devanagari Hindi', 'Mukta', serif;

  --container: 1280px;
  --container-narrow: 980px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 4px 14px rgba(0, 0, 128, 0.08);
  --shadow-hover: 0 8px 24px rgba(19, 136, 8, 0.18);
  --header-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  -webkit-font-smoothing: antialiased;
}
section[id] { scroll-margin-top: 80px; }

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

/* ======================== HEADER ======================== */
.site-header {
  z-index: 250 !important;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 248, 231, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--accent);
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,128,0.05);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.brand-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ivory);
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(19,136,8,0.3);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .name {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-text .tag {
  color: var(--primary);
  font-family: var(--font-hindi);
  font-size: 11px;
  font-weight: 500;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all .2s;
}
.main-nav a:hover { background: rgba(19,136,8,0.10); color: var(--primary); }
.main-nav a.cta { background: var(--primary); color: var(--ivory); font-weight: 700; }

.header-right {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-cta-ghost {
  padding: 8px 16px;
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.header-cta {
  padding: 10px 18px;
  background: var(--primary);
  color: var(--ivory);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(19,136,8,0.25);
}

.hamburger {
  z-index: 300 !important;
  position: relative !important;
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--primary);
  border: none;
  color: var(--ivory);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================== MOBILE DRAWER ======================== */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--ivory);
  z-index: 200;
  padding: 88px 24px 32px;
  display: none;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.mobile-drawer.open, .mobile-drawer.is-open { display: flex; }
.mobile-drawer a {
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  padding: 14px 16px;
  border-radius: 8px;
  border-bottom: 1px solid var(--surface-line);
}
.mobile-drawer a:hover { background: rgba(19,136,8,0.08); color: var(--primary); }

/* ======================== HERO ======================== */
.hero {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--bg-soft) 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--accent);
}
.hero::before {
  content: '₹';
  position: absolute;
  top: 30%;
  right: 8%;
  font-family: var(--font-display);
  font-size: 480px;
  color: var(--primary);
  opacity: 0.06;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-hindi);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
#hero-h {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
#hero-h .rupee-accent {
  color: var(--primary);
  display: inline-block;
  font-size: 64px;
  vertical-align: -8px;
  margin-right: 4px;
}
.hero-lede {
  font-size: 19px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--primary); color: var(--ivory); box-shadow: 0 4px 14px rgba(19,136,8,0.30); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(19,136,8,0.45); }
.btn-secondary { background: var(--accent); color: var(--ivory); box-shadow: 0 4px 14px rgba(255,153,51,0.30); }
.btn-secondary:hover { background: var(--accent-soft); transform: translateY(-2px); }

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--surface-line);
}
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item .num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.hero-trust-item .label {
  font-family: var(--font-hindi);
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--accent);
}
.hero-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.hero-stat-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--navy);
  padding: 20px;
  border-radius: var(--radius-lg);
  color: var(--ivory);
  box-shadow: var(--shadow-card);
}
.hero-stat-panel .stat {
  text-align: center;
}
.hero-stat-panel .stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.hero-stat-panel .stat-label {
  font-family: var(--font-hindi);
  font-size: 11px;
  color: var(--ivory);
  opacity: 0.85;
  margin-top: 4px;
  display: block;
  letter-spacing: 0.05em;
}

/* ======================== CONTAINER ======================== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.band { padding: 64px 0; }
.band-elev-1 { background: var(--bg); }
.band-elev-2 { background: var(--bg-soft); }
.band-elev-3 { background: var(--navy); color: var(--ivory); }
.band-elev-3 h1, .band-elev-3 h2, .band-elev-3 h3 { color: var(--ivory); }
.band-elev-3 .lede { color: rgba(255,248,231,0.9); }

.band-header { margin-bottom: 40px; max-width: 720px; }
.band-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
}
.band-header h2 .accent { color: var(--primary); }
.band-header h2 .rupee-mark { color: var(--primary); font-size: 44px; }
.band-header .lede {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
.band-header .eyebrow {
  font-family: var(--font-hindi);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ======================== RUPEE CURRENCY INFOCARDS ======================== */
.rupee-infocard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rupee-infocard {
  background: var(--surface);
  border: 2px solid var(--surface-line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.rupee-infocard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}
.rupee-infocard:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}
.rupee-infocard .ic-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.rupee-infocard .ic-amount .rupee-sym { color: var(--navy); margin-right: 2px; }
.rupee-infocard .ic-label {
  font-family: var(--font-hindi);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 12px;
}
.rupee-infocard .ic-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
}
.rupee-infocard .ic-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.rupee-infocard .ic-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}
.rupee-infocard.alt .ic-icon { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%); }
.rupee-infocard.alt .ic-amount { color: var(--accent); }
.rupee-infocard.alt::before { background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%); }

/* L20 LAYOUT: large 8-card grid for rupee currency hero */
.rupee-infocard-grid-lg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rupee-infocard-grid-lg .rupee-infocard { padding: 24px; }
.rupee-infocard-grid-lg .rupee-infocard .ic-amount { font-size: 32px; }

/* ======================== DATA CARDS (REQUIRED CLASSES) ======================== */
.data-card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: all .2s;
}
.data-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.data-card .dc-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.data-card .dc-num .rupee-sym { color: var(--navy); }
.data-card .dc-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.data-card .dc-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

.step-card {
  background: var(--surface);
  border: 2px solid var(--surface-line);
  border-left: 6px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 24px 24px 24px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-card .step-num {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(19,136,8,0.3);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0 10px;
}
.step-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}

.loose-card {
  background: linear-gradient(135deg, rgba(19,136,8,0.06) 0%, rgba(255,153,51,0.04) 100%);
  border: 2px solid rgba(19,136,8,0.25);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin: 18px 0;
  box-shadow: 0 4px 14px rgba(0,0,128,0.05);
  position: relative;
}
.loose-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  display: flex; align-items: center; gap: 10px;
}
.loose-card h3::before {
  content: '₹';
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(19,136,8,0.18);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.loose-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: all .2s;
}
.card:hover { border-color: var(--primary); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
}
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.faq-item p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

/* ======================== INLINE IMAGE ROW ======================== */
.inline-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin: 36px 0;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.inline-image-row .img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--surface-line);
}
.inline-image-row .img-wrap img { width: 100%; height: 280px; object-fit: cover; display: block; }
.inline-image-row .text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.inline-image-row .text p { font-size: 15px; color: var(--text-soft); line-height: 1.6; margin: 0 0 10px; }

/* ======================== TABLE ======================== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin: 24px 0;
}
.data-table th {
  background: var(--primary);
  color: var(--ivory);
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}
.data-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--surface-line);
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-hindi);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table .inr { color: var(--primary); font-weight: 700; }

/* ======================== FOOTER ======================== */
.site-footer {
  background: var(--navy);
  color: var(--ivory);
  padding: 56px 0 24px;
  border-top: 4px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: rgba(255,248,231,0.85);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-brand .brand-mark { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%); }
.footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,248,231,0.85); margin: 14px 0 0; max-width: 360px; }
.footer-bottom {
  border-top: 1px solid rgba(255,248,231,0.18);
  padding-top: 20px;
  text-align: center;
  font-family: var(--font-hindi);
  font-size: 13px;
  color: rgba(255,248,231,0.65);
}
.footer-bottom a { color: var(--accent); text-decoration: none; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .rupee-infocard-grid, .rupee-infocard-grid-lg { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 899px) {
  .main-nav { display: none !important; }
  .header-cta-ghost { display: none !important; }
  .hamburger { display: flex !important; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  #hero-h { font-size: 32px !important; line-height: 1.1 !important; }
  #hero-h .rupee-accent { font-size: 40px; }
  .hero-lede { font-size: 16px !important; line-height: 1.5 !important; }
  .hero { min-height: 480px !important; max-height: 720px !important; padding: 80px 0 60px !important; }
  .hero img { height: 100% !important; object-fit: cover !important; }
  .hero-trust { display: none !important; }
  .hero-cta .btn { flex: 1 1 auto !important; }
  .inline-image-row { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .band-header h2 { font-size: 28px; }
  .hero::before { font-size: 240px; opacity: 0.04; }
}
@media (max-width: 600px) {
  .rupee-infocard-grid, .rupee-infocard-grid-lg { grid-template-columns: 1fr; }
  .hero-img-wrap img { height: 220px; }
  .hero-stat-panel { grid-template-columns: repeat(3, 1fr); padding: 14px; }
  .hero-stat-panel .stat-num { font-size: 18px; }
}
@media (min-width: 900px) {
  .hamburger { display: none !important; }
  .mobile-drawer, .mobile-drawer.is-open { display: none !important; }
}

/* BRAND TEXT - Required for proper visibility */
.brand-name { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.brand-tag { font-size: 11px; color: var(--primary-deep); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; font-weight: 600; }
.brand-words { display: flex; flex-direction: column; gap: 1px; }

/* Make header more visible */
.site-header { min-height: var(--header-h); }


/* ARTICLE IMAGE RESPONSIVE FRAME — 2026-07-16 */
/* Article templates previously had no styles for their image components. */
main img { max-width: 100%; height: auto; }
.content-hero-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 280px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow-card);
}
.content-hero-image > img {
  display: block;
  width: 100%;
  height: clamp(280px, 36vw, 460px);
  object-fit: cover;
}
.content-hero-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 52px 28px 24px;
  color: var(--ivory);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 77, .92));
}
.content-hero-label { font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); }
.content-hero-title { margin-top: 6px; font-family: var(--font-display); font-size: clamp(23px, 3vw, 38px); line-height: 1.12; font-weight: 700; }
.content-2col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: center;
  gap: 28px;
  padding: 24px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.content-2col-image { min-width: 0; overflow: hidden; border-radius: var(--radius); }
.content-2col-image img,
.inline-image-row > img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}
.content-2col-caption { min-width: 0; font-size: 17px; color: var(--text-soft); }
.inline-image-row > div { min-width: 0; }

@media (max-width: 600px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .band { padding: 38px 0; }
  .content-hero-image { min-height: 220px; border-radius: 12px; }
  .content-hero-image > img { height: 220px; }
  .content-hero-overlay { padding: 42px 18px 16px; }
  .content-hero-title { font-size: 24px; }
  .content-2col { grid-template-columns: 1fr; gap: 18px; padding: 14px; }
  .content-2col-image img,
  .inline-image-row > img { height: 220px; }
  .inline-image-row { padding: 14px; }
}
