/* ================================================================
   article.css — Shared nav + footer styles for Fielding Global
   article pages. Mirrors sections in assets/css/styles.css.
   ================================================================ */

:root {
  --gold: #A8966E;
  --navy: #1B2D4F;
  --white: #ffffff;
  --nav-glass-bg: rgba(12, 18, 32, 0.48);
  --nav-glass-border: rgba(245, 235, 215, 0.16);
  --nav-link: rgba(252, 248, 242, 0.94);
  --nav-mobile-sheet: rgba(12, 18, 32, 0.9);
  --brand-logo-h: 48px;
  --brand-logo-h-tablet: 42px;
  --brand-logo-h-mobile: 38px;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-headings: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-glass-bg);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  border-bottom: 1px solid var(--nav-glass-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 1px 0 rgba(0,0,0,0.12);
  transition: background 0.28s ease, backdrop-filter 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
nav.is-scrolled {
  background: rgba(12,18,32,0.72);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 8px 28px rgba(0,0,0,0.22);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
@media (min-width: 1121px) {
  nav {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 10px max(20px, calc((100vw - 1280px) / 2 + 12px)) 0;
  }
  nav.is-scrolled {
    background: linear-gradient(180deg, rgba(12,18,32,0.42) 0%, rgba(12,18,32,0.18) 54%, rgba(12,18,32,0) 100%);
    backdrop-filter: blur(10px) saturate(1.04);
    -webkit-backdrop-filter: blur(10px) saturate(1.04);
    box-shadow: none;
  }
  .nav-inner {
    max-width: 1280px;
    height: 62px;
    padding: 0 28px;
    border-radius: 14px;
    border: 1px solid var(--nav-glass-border);
    background: var(--nav-glass-bg);
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.09);
  }
  nav.is-scrolled .nav-inner {
    background: rgba(12,18,32,0.78);
    border-color: rgba(245,235,215,0.2);
    box-shadow: 0 16px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
  }
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.nav-logo img {
  height: var(--brand-logo-h);
  width: auto;
  max-width: min(200px, 28vw);
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0 18px rgba(168,144,90,0.18));
}
.nav-logo-text {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
  gap: 1px;
  white-space: nowrap;
}
.nav-logo-main {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(244,239,231,0.62);
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  line-height: 1;
}
.nav-logo-text span {
  background: none;
  -webkit-text-fill-color: currentColor;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links li { white-space: nowrap; }
.nav-links a {
  color: var(--nav-link);
  text-decoration: none;
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.is-active { color: var(--gold); }
.nav-cta {
  background: linear-gradient(180deg, rgba(193,170,118,0.98) 0%, rgba(160,136,90,0.98) 100%);
  color: #f8f2e8 !important;
  border: 1px solid rgba(255,248,238,0.24);
  border-radius: 999px;
  min-height: 40px;
  padding: 11px 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
  box-shadow: 0 12px 28px rgba(11,18,32,0.22), inset 0 1px 0 rgba(255,248,238,0.24);
}
.nav-cta:hover {
  color: #fffaf2 !important;
  box-shadow: 0 18px 36px rgba(11,18,32,0.26), inset 0 1px 0 rgba(255,248,238,0.34);
  filter: brightness(1.03);
}
.nav-cta:active { transform: scale(0.98) translateY(0) !important; box-shadow: 0 10px 22px rgba(11,18,32,0.2); }
.nav-backdrop { display: none; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
@media (min-width: 1121px) {
  .nav-hamburger { display: none; }
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1120px) {
  .nav-inner { padding: 0 24px; gap: 12px; }
  .nav-logo img { height: var(--brand-logo-h-tablet); }
  .nav-logo-main { font-size: 13px; }
  .nav-logo-sub { font-size: 8px; }
  .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--nav-mobile-sheet);
    backdrop-filter: blur(20px) saturate(1.06);
    -webkit-backdrop-filter: blur(20px) saturate(1.06);
    border-top: 1px solid var(--nav-glass-border);
    padding: 20px 24px 28px;
    gap: 4px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
  }
  nav.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  nav.nav-open .nav-backdrop {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background: rgba(8,12,22,0.48);
    backdrop-filter: blur(6px) saturate(1.05);
    -webkit-backdrop-filter: blur(6px) saturate(1.05);
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-cta {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
    min-height: 42px;
    padding: 12px 18px !important;
    border-bottom: none !important;
  }
}

/* ── FOOTER ── */
footer {
  background:
    radial-gradient(circle at 14% 18%, rgba(168,144,90,0.14) 0%, rgba(168,144,90,0) 30%),
    radial-gradient(circle at 86% 10%, rgba(61,82,141,0.18) 0%, rgba(61,82,141,0) 34%),
    linear-gradient(180deg, #162238 0%, #10192c 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 40px 34px;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-shell {
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 0.66fr) minmax(0, 1.84fr);
  gap: 56px;
  align-items: start;
  padding: 0 0 36px;
}
.footer-brand,
.footer-side-column,
.footer-links-column,
.footer-locations-column,
.footer-contact-column,
.footer-utility-grid {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}
.footer-brand { gap: 20px; max-width: 320px; }
.footer-utility-grid {
  grid-template-columns: minmax(300px, 1.14fr) minmax(220px, 0.74fr);
  gap: 54px;
  padding: 8px 0 0;
  align-items: start;
}
.footer-side-column { gap: 24px; align-content: start; min-width: 0; }
.footer-links-column { order: 2; }
.footer-locations-column { order: 1; }
.footer-side-column { order: 2; grid-column: 2; }
.footer-contact-column { order: 3; }
.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}
.footer-logo img {
  height: clamp(38px, 3.2vw, 46px);
  width: auto;
  max-width: 56px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(6,12,24,0.18));
}
.footer-brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}
.footer-brand-main {
  font-family: var(--font-serif);
  font-size: clamp(30px, 2.9vw, 38px);
  font-weight: 600;
  color: rgba(255,255,255,0.98);
  letter-spacing: 0.04em;
  line-height: 0.96;
}
.footer-brand-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  color: rgba(231,223,210,0.68);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1;
}
.footer-brand-note {
  margin: 0;
  max-width: 35ch;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
}
.footer-brand-meta,
.footer-contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-brand-meta { max-width: 340px; }
.footer-brand-meta span,
.footer-contact-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.72);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-icon {
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 12px;
  color: rgba(255,255,255,0.56);
}
.footer-icon--nav { width: 9px; height: 9px; color: rgba(255,255,255,0.42); }
.footer-icon--contact { width: 13px; height: 13px; color: rgba(255,255,255,0.58); }
.footer-icon--cta { width: 12px; height: 12px; color: rgba(255,255,255,0.68); }
.footer-brand-meta .footer-icon,
.footer-contact-meta .footer-icon,
.footer-legal-row .footer-icon { width: 11px; height: 11px; }
.footer-column-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(231,223,210,0.58);
}
.footer-nav { display: grid; gap: 10px; list-style: none; }
.footer-nav a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  display: inline-grid;
  grid-template-columns: 10px auto;
  align-items: center;
  column-gap: 9px;
  min-height: 24px;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact-column { gap: 12px; width: 100%; max-width: 302px; }
.footer-locations-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}
.footer-location-card { display: grid; gap: 5px; align-content: start; }
.footer-location-kicker {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}
.footer-location-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 1px;
}
.footer-location-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.98);
  line-height: 1.05;
}
.footer-location-chip {
  color: rgba(235,229,216,0.56);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-location-address { margin: 0; font-size: 10px; line-height: 1.55; color: rgba(255,255,255,0.78); }
.footer-location-detail { margin: 0; font-size: 9px; line-height: 1.55; color: rgba(255,255,255,0.5); }
.footer-contact-link {
  display: inline-grid;
  grid-template-columns: 13px auto;
  align-items: center;
  column-gap: 10px;
  color: rgba(255,255,255,0.96);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.2;
  transition: color 0.25s ease;
}
.footer-contact-link:hover { color: var(--gold); }
.footer-cta-link {
  display: inline-grid;
  grid-template-columns: 12px auto;
  align-items: center;
  column-gap: 10px;
  min-height: 38px;
  width: fit-content;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.98);
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.footer-cta-link:hover {
  border-color: rgba(233,220,192,0.36);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,1);
}
.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 24px;
  padding: 20px 0 0;
}
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.62); letter-spacing: 0.04em; }
.footer-tagline {
  font-size: 11px;
  color: rgba(231,223,210,0.74);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: right;
}
.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 20px;
  margin-top: 18px;
}
.footer-legal-row span,
.footer-legal-row a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-legal-row a { text-decoration: none; }
.footer-legal-row a:hover { color: rgba(255,255,255,0.62); }

/* Footer responsive */
@media (max-width: 1120px) {
  footer { padding: 48px 28px 28px; }
  .footer-brand { gap: 14px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; }
  .footer-utility-grid { grid-template-columns: 1fr; gap: 22px; padding-top: 0; }
  .footer-logo { justify-content: center; }
  .footer-logo img { height: clamp(32px, 10vw, 38px); max-width: 44px; }
  .footer-brand-main, .footer-brand-sub, .footer-brand-note, .footer-column-label, .footer-contact-link { text-align: center; }
  .footer-brand-meta, .footer-nav { justify-content: center; }
  .footer-brand-meta, .footer-contact-column .footer-contact-meta { max-width: none; }
  .footer-nav { text-align: center; }
  .footer-locations-list { grid-template-columns: 1fr; gap: 16px; }
  .footer-location-card { text-align: center; }
  .footer-location-head { justify-content: center; flex-wrap: wrap; }
  .footer-bottom { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .footer-tagline { text-align: center; }
  .footer-legal-row { justify-content: center; text-align: center; }
}

/* ── NOISE LAYER ── */
.noise-layer {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.footer-shell.fade-up.visible {
  animation: footerShellReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  opacity: 1;
  transform: none;
}
.fade-up-delay-1 { transition-delay: 0.08s; }
.fade-up-delay-2 { transition-delay: 0.18s; }
.fade-up-delay-3 { transition-delay: 0.28s; }
.fade-up-delay-4 { transition-delay: 0.38s; }

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(168,144,90,0.55) 100%);
  z-index: 2000;
  pointer-events: none;
  will-change: width;
}

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed;
  bottom: max(36px, calc(env(safe-area-inset-bottom) + 12px));
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(168,144,90,0.4);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(27,42,74,0.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s, border-color 0.2s;
  pointer-events: none;
  z-index: 999;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { background: rgba(27,42,74,0.85); border-color: var(--gold); box-shadow: 0 6px 28px rgba(27,42,74,0.35); }
#back-to-top:active { transform: translateY(2px); }
@media (max-width: 600px) {
  #back-to-top { bottom: max(20px, calc(env(safe-area-inset-bottom) + 8px)); right: max(16px, calc(env(safe-area-inset-right) + 16px)); width: 40px; height: 40px; }
}

/* ── FOOTER KEYFRAMES ── */
@keyframes footerShellReveal {
  0% { opacity: 0; transform: translateY(18px) scale(0.992); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ================================================================
   MORE INSIGHTS SECTION (article pages)
   ================================================================ */
.article-more-insights {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(201,174,121,0.2) 0%, rgba(201,174,121,0) 28%),
    radial-gradient(circle at 82% 12%, rgba(47,77,127,0.14) 0%, rgba(47,77,127,0) 32%),
    linear-gradient(180deg, #f6f1e8 0%, #eef2f5 46%, #f7f8f9 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(27,45,79,0.08);
}

.article-more-insights::before,
.article-more-insights::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(14px);
}

.article-more-insights::before {
  top: 74px;
  left: -90px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 72%);
}

.article-more-insights::after {
  right: -60px;
  bottom: 28px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(168,144,90,0.14) 0%, rgba(168,144,90,0) 70%);
}

.article-more-insights-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── INSIGHTS SHELL HEADER (glass panel) ── */
.article-more-insights .insights-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  gap: 28px;
  align-items: end;
  padding: 36px 38px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.66);
  background: linear-gradient(135deg, rgba(255,255,255,0.52) 0%, rgba(255,255,255,0.18) 100%);
  box-shadow: 0 22px 48px rgba(27,45,79,0.12), inset 0 1px 0 rgba(255,255,255,0.5);
  backdrop-filter: blur(28px) saturate(165%);
  -webkit-backdrop-filter: blur(28px) saturate(165%);
  transform: translate3d(var(--insights-shell-x, 0px), var(--insights-shell-y, 0px), 0);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
  overflow: hidden;
  margin-bottom: 30px;
}

.article-more-insights .insights-shell::before,
.article-more-insights .insights-shell::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.article-more-insights .insights-shell::before {
  top: -100px; right: -54px;
  width: 230px; height: 230px;
  background: radial-gradient(circle, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0) 74%);
}
.article-more-insights .insights-shell::after {
  bottom: -84px; left: 38%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(168,144,90,0.12) 0%, rgba(168,144,90,0) 74%);
}

.article-more-insights .insights-head,
.article-more-insights .insights-side {
  position: relative;
  z-index: 1;
}

.article-more-insights .section-label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-more-insights .section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.article-more-insights .section-title {
  font-family: var(--font-headings);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 16px;
}
.article-more-insights .section-title em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}

.article-more-insights .insights-lead {
  max-width: 700px;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(27,45,79,0.74);
}

.article-more-insights .insights-side {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.article-more-insights .insights-side-note {
  margin: 0;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(27,45,79,0.56);
}

.article-more-insights .insights-side-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.article-more-insights .insights-side-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.18);
  color: rgba(27,45,79,0.68);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── CARDS GRID ── */
.article-more-insights .insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  perspective: 1400px;
  margin-top: 0;
}

/* ── INSIGHT CARDS (article context — uses same JS-ready classes) ── */
.article-more-insights .insight-card {
  --insight-accent: rgba(168,144,90,0.38);
  --card-shift-x: 0px;
  --card-shift-y: 0px;
  --card-rotate-x: 0deg;
  --card-rotate-y: 0deg;
  --card-lift: 0px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.56);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.12) 100%);
  box-shadow: 0 18px 40px rgba(27,45,79,0.12), inset 0 1px 0 rgba(255,255,255,0.44);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  transform: translate3d(var(--card-shift-x), calc(var(--card-shift-y) + var(--card-lift)), 0) rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y));
  transform-style: preserve-3d;
  transition: transform 0.34s cubic-bezier(0.22,1,0.36,1), box-shadow 0.34s ease, border-color 0.34s ease;
  will-change: transform;
  text-decoration: none;
}

.article-more-insights .insight-card--gold     { --insight-accent: rgba(168,144,90,0.34); }
.article-more-insights .insight-card--champagne { --insight-accent: rgba(209,179,127,0.3); }
.article-more-insights .insight-card--navy     { --insight-accent: rgba(47,77,127,0.28); }

.article-more-insights .insight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255,255,255,0.44) 0%, rgba(255,255,255,0) 38%),
    radial-gradient(circle at top right, var(--insight-accent) 0%, rgba(255,255,255,0) 46%);
  pointer-events: none;
}

.article-more-insights .insight-card:hover {
  --card-lift: -8px;
  border-color: rgba(255,255,255,0.68);
  box-shadow: 0 26px 52px rgba(27,45,79,0.16), inset 0 1px 0 rgba(255,255,255,0.54);
}

.article-more-insights .insight-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  transform: translateZ(18px);
}

.article-more-insights .insight-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27,45,79,0.8);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.article-more-insights .insight-card-body {
  position: relative;
  z-index: 1;
  padding: 24px 0 20px;
  transform: translateZ(26px);
}

.article-more-insights .insight-card-body h4 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin: 0 0 12px;
}

.article-more-insights .insight-card-body p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(27,45,79,0.68);
  line-height: 1.72;
  margin: 0;
}

.article-more-insights .insight-card-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateZ(20px);
}

.article-more-insights .insight-meta {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(27,45,79,0.46);
}

.article-more-insights .insight-read-more {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(27,45,79,0.8);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.14);
}
.article-more-insights .insight-read-more::after { content: '→'; }
.article-more-insights .insight-read-more:hover {
  border-color: rgba(255,255,255,0.56);
  background: rgba(255,255,255,0.22);
}

@media (max-width: 880px) {
  .article-more-insights .insights-shell {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 20px;
  }
  .article-more-insights .insights-side { display: none; }
}

@media (max-width: 720px) {
  .article-more-insights { padding: 60px 0; }
  .article-more-insights-inner { padding: 0 24px; }
  .article-more-insights .insights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .article-more-insights .insight-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
