/* ============================================
   VISA TEMPLATE — EU Institutional Light v4
   Outfit (headings) + Instrument Sans (body)
   Design System Reference: /docs/design-system.html
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

:root {
  --eu-blue:    #003399;
  --eu-gold:    #FFCC00;
  --dark-navy:  #001A4D;
  --light-bg:   #F0F4FF;
  --white:      #FFFFFF;

  --color-bg:             var(--light-bg);
  --color-surface:        var(--white);
  --color-surface-2:      #F7F9FF;
  --color-surface-offset: #E8EDFB;
  --color-surface-accent: #DCEAFF;
  --color-divider:        #C7D0E6;
  --color-border:         #B0BCE0;

  --color-text:           var(--dark-navy);
  --color-text-muted:     #4A5578;
  --color-text-faint:     #8892AD;
  --color-text-inverse:   var(--white);

  --color-error:          #C62828;
  --color-error-bg:       #FFF0F0;
  --color-error-border:   #FFCDD2;
  --color-success:        #2E7D32;
  --color-success-bg:     #E8F5E9;

  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  --space-1:  0.25rem; --space-2:  0.5rem; --space-3:  0.75rem;
  --space-4:  1rem;    --space-5:  1.25rem; --space-6:  1.5rem;
  --space-8:  2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;   --space-24: 6rem;

  --radius-sm: 0.375rem; --radius-md: 0.5rem;
  --radius-lg: 0.75rem;  --radius-xl: 1rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 26, 77, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 26, 77, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 26, 77, 0.12);

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Outfit', 'Helvetica Neue', sans-serif;
  --font-body:    'Instrument Sans', 'Helvetica Neue', sans-serif;
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

h1,h2,h3,h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  text-wrap: balance;
}

p { text-wrap: pretty; max-width: 72ch; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

a, button, input, textarea, select {
  transition: color var(--transition-interactive), background var(--transition-interactive), border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

::selection { background: rgba(0, 51, 153, 0.15); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--eu-blue); outline-offset: 3px; border-radius: var(--radius-sm); }
@media(prefers-reduced-motion:reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* CONTAINER */
.container { max-width: var(--content-wide); margin: 0 auto; padding: 0 var(--space-6); }
.container--narrow { max-width: var(--content-default); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  cursor: pointer;
  min-height: 48px;
  text-align: center;
  white-space: nowrap;
}

.btn-primary { background: var(--eu-gold); color: var(--dark-navy); border: 2px solid var(--eu-gold); }
.btn-primary:hover { background: #E6B800; border-color: #CC9F00; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--dark-navy); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline:active { transform: translateY(0); }

.btn-nav { background: var(--eu-gold); color: var(--dark-navy); border: 2px solid #E6B800; padding: var(--space-2) var(--space-5); min-height: 40px; font-size: var(--text-xs); }
.btn-nav:hover { background: #E6B800; }

/* SECTION SPACING */
.section { padding: clamp(var(--space-12), 6vw, var(--space-24)) 0; }
.section-header { text-align: center; margin-bottom: clamp(var(--space-8), 4vw, var(--space-16)); }
.section-title { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl); color: var(--dark-navy); margin-bottom: var(--space-4); }
.section-subtitle { font-size: var(--text-base); color: var(--color-text-muted); max-width: 60ch; margin: 0 auto; }

/* ======== NAV ======== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: #001A4D; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.1); transition: border-color 0.3s, background 0.3s; }
.nav.scrolled { border-bottom-color: rgba(255,255,255,0.15); background: #001A4D; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--content-wide); margin: 0 auto; padding: var(--space-4) var(--space-6); height: 64px; }
.nav-logo { font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); color: var(--white); display: flex; align-items: center; gap: var(--space-2); }
.nav-links { display: flex; align-items: center; gap: var(--space-8); }
.nav-link { font-family: var(--font-body); font-weight: 500; font-size: var(--text-sm); color: rgba(255,255,255,0.7); position: relative; }
.nav-link:hover { color: var(--white); }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--eu-gold); transition: width var(--transition-interactive); }
.nav-link:hover::after { width: 100%; }
.nav-cta { margin-left: var(--space-4); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: var(--space-2); }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--color-divider); padding: var(--space-6); box-shadow: var(--shadow-lg); z-index: 99; }
.mobile-menu.open { display: flex; flex-direction: column; gap: var(--space-4); animation: slideDown 0.3s ease; }
.mobile-menu a { font-family: var(--font-body); font-weight: 500; font-size: var(--text-base); color: var(--color-text); padding: var(--space-3) 0; border-bottom: 1px solid var(--color-divider); }
.mobile-menu a:last-child { border: none; }

@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

@media(max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
}

/* ======== HERO ======== */
.hero { padding-top: calc(64px + clamp(var(--space-12), 8vw, var(--space-24))); padding-bottom: clamp(var(--space-12), 6vw, var(--space-20)); text-align: center; background: #001A4D; }
.hero-badge { display: inline-flex; align-items: center; gap: var(--space-2); padding: var(--space-2) var(--space-4); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 500; color: rgba(255,255,255,0.8); margin-bottom: var(--space-6); }
.hero-badge svg { color: var(--eu-gold); }
.hero h1 { font-family: var(--font-display); font-weight: 800; font-size: var(--text-3xl); color: var(--white); margin-bottom: var(--space-4); line-height: 1.05; }
.hero h1 span { color: var(--eu-gold); }
.hero-sub { font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); color: rgba(255,255,255,0.85); margin-bottom: var(--space-6); max-width: 50ch; margin-left: auto; margin-right: auto; }
.hero-desc { font-size: var(--text-base); color: rgba(255,255,255,0.65); max-width: 55ch; margin: 0 auto var(--space-8); line-height: 1.7; }
.hero-callout { max-width: 600px; margin: 0 auto var(--space-8); background: var(--eu-gold); border: none; border-radius: var(--radius-lg); padding: var(--space-6) var(--space-8); }
.hero-callout p { font-size: var(--text-base); color: var(--dark-navy); font-style: italic; font-weight: 600; max-width: none; margin: 0 auto; line-height: 1.6; }
.hero-stat { max-width: 640px; margin: 0 auto var(--space-10); background: var(--white); border: 1px solid var(--color-divider); border-radius: var(--radius-xl); padding: var(--space-8); }
.hero-stat-number { font-family: var(--font-display); font-weight: 800; font-size: var(--text-xl); color: #003399; display: inline; }
.hero-stat-text { font-size: var(--text-base); font-weight: 600; color: var(--dark-navy); display: inline; }
.hero-stat p { font-size: var(--text-base); color: var(--color-text-muted); margin-top: var(--space-4); max-width: none; }
.hero-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-8); }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: var(--space-3); }
.hero-trust-stars { color: var(--eu-gold); font-size: 1.25rem; letter-spacing: 2px; }
.hero-trust-text { font-size: var(--text-sm); color: rgba(255,255,255,0.7); font-weight: 500; }

/* ======== PAIN POINTS ======== */
.pain { background: var(--white); }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px,100%),1fr)); gap: var(--space-5); }
.pain-card { background: var(--color-bg); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); padding: var(--space-5); }
.pain-card-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); margin-bottom: var(--space-3); color: var(--eu-blue); background: var(--white); border: 1px solid var(--color-divider); }
.pain-card h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); margin-bottom: var(--space-1); }
.pain-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; }
.pain-disclaimer { text-align: center; margin-top: var(--space-8); font-size: var(--text-xs); color: var(--color-text-faint); font-style: italic; max-width: 50ch; margin-left: auto; margin-right: auto; }

/* ======== FEATURES ======== */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-5); }
.feature-card { background: var(--color-bg); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); padding: var(--space-6); }
.feature-card-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--white); border: 1px solid var(--color-divider); border-radius: var(--radius-md); margin-bottom: var(--space-4); color: var(--eu-blue); }
.feature-card h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-base); margin-bottom: var(--space-2); }
.feature-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; }
.features-grid .feature-card:last-child { grid-column: 1; }

@media(max-width: 1024px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

/* ======== NOT INCLUDED ======== */
.not-included { background: var(--white); }
.not-included-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(240px,100%),1fr)); gap: var(--space-5); }
.exclusion-card { background: var(--color-error-bg); border: 1px solid var(--color-error-border); border-radius: var(--radius-lg); padding: var(--space-5); }
.exclusion-icon { color: var(--color-error); font-weight: 700; font-size: 1.1rem; margin-bottom: var(--space-3); display: flex; align-items: center; gap: var(--space-2); }
.exclusion-icon svg { flex-shrink: 0; }
.exclusion-card h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); margin-bottom: var(--space-1); }
.exclusion-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.5; }

/* ======== HOW IT WORKS ======== */
.how { background: var(--white); }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-8); position: relative; }
.how-steps::before { content: ''; position: absolute; top: 32px; left: calc(16.67% + 32px); right: calc(16.67% + 32px); height: 2px; background: var(--color-divider); z-index: 0; }
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step-circle { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--eu-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-5); background: var(--white); position: relative; color: var(--eu-blue); }
.how-step-num { position: absolute; top: -6px; right: -6px; width: 24px; height: 24px; border-radius: 50%; background: var(--eu-gold); color: var(--dark-navy); font-family: var(--font-display); font-weight: 800; font-size: var(--text-xs); display: flex; align-items: center; justify-content: center; }
.how-step h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-base); margin-bottom: var(--space-2); }
.how-step p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: 28ch; margin: 0 auto; }

@media(max-width: 768px) {
  .how-steps { grid-template-columns: 1fr; gap: var(--space-10); }
  .how-steps::before { display: none; }
}

/* ======== CTA BAND (mid-page) ======== */
.cta-band { background: #001A4D; text-align: center; padding: clamp(var(--space-10),5vw,var(--space-16)) 0; }
.cta-band h2 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); color: var(--white); margin-bottom: var(--space-3); }
.cta-band p { font-size: var(--text-base); color: rgba(255,255,255,0.7); margin: 0 auto var(--space-6); max-width: 50ch; }

/* ======== TESTIMONIALS ======== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-6); }
.testimonial-card { background: var(--white); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); padding: var(--space-6); }
.testimonial-stars { color: var(--eu-gold); font-size: 1.1rem; margin-bottom: var(--space-4); letter-spacing: 2px; }
.testimonial-quote { font-size: var(--text-base); color: var(--color-text); font-style: italic; line-height: 1.7; margin-bottom: var(--space-5); }
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--color-surface-accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); color: var(--eu-blue); }
.testimonial-name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); }
.testimonial-info { font-size: var(--text-xs); color: var(--color-text-muted); }

@media(max-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ======== BLOG PREVIEW ======== */
.blog { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-6); }
.blog-card { background: var(--color-bg); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); padding: var(--space-6); transition: box-shadow var(--transition-interactive), transform var(--transition-interactive); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-tag { display: inline-block; padding: var(--space-1) var(--space-3); border-radius: var(--radius-sm); font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.tag-tips { background: var(--color-surface-accent); color: var(--eu-blue); }
.tag-guides { background: #E3ECFF; color: #1A3FA0; }
.tag-req { background: #FFF3E0; color: #C65100; }
.tag-insurance { background: #E8F5E9; color: #2E7D32; }
.tag-planning { background: #F3E5F5; color: #6A1B9A; }
.tag-interviews { background: #FFF8E1; color: #F57F17; }
.blog-card-meta { font-size: var(--text-xs); color: var(--color-text-faint); margin: var(--space-3) 0; display: flex; align-items: center; gap: var(--space-3); }
.blog-card h3 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); margin-bottom: var(--space-2); color: var(--dark-navy); }
.blog-card p { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-4); line-height: 1.5; }
.blog-card-link { font-size: var(--text-sm); color: var(--eu-blue); font-weight: 600; }
.blog-card-link:hover { text-decoration: underline; }
.blog-card-link.coming { color: var(--color-text-faint); }

@media(max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ======== FAQ ======== */
.faq-list { max-width: var(--content-default); margin: 0 auto; }
.faq-item { border: 1px solid var(--color-divider); border-radius: var(--radius-md); margin-bottom: var(--space-3); overflow: hidden; background: var(--white); }
.faq-question { width: 100%; text-align: left; padding: var(--space-5) var(--space-6); font-family: var(--font-display); font-weight: 600; font-size: var(--text-base); background: var(--white); display: flex; justify-content: space-between; align-items: center; cursor: pointer; border: none; color: var(--color-text); gap: var(--space-4); }
.faq-question:hover { background: var(--color-surface-2); }
.faq-question svg { flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer-inner { padding: 0 var(--space-6) var(--space-6); font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; }
.faq-contact { text-align: center; margin-top: var(--space-8); }
.faq-contact p { font-size: var(--text-sm); color: var(--color-text-faint); margin: 0 auto var(--space-2); }
.faq-contact a { font-size: var(--text-sm); color: var(--eu-blue); font-weight: 600; }
.faq-contact a:hover { text-decoration: underline; }

/* ======== FINAL CTA ======== */
.final-cta { background: var(--dark-navy); text-align: center; padding: clamp(var(--space-12),6vw,var(--space-20)) 0; margin-top: var(--space-1); }
.final-cta h2 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); color: var(--white); margin-bottom: var(--space-4); }
.final-cta p { font-size: var(--text-base); color: rgba(255,255,255,0.75); margin: 0 auto var(--space-8); max-width: 50ch; }

/* ======== FOOTER ======== */
.footer { background: var(--white); border-top: 1px solid var(--color-divider); padding: var(--space-10) 0 var(--space-6); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: var(--space-8); }
.footer-brand { max-width: 300px; }
.footer-brand-name { font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg); color: var(--dark-navy); margin-bottom: var(--space-3); display: flex; align-items: center; gap: var(--space-2); }
.footer-brand p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }
.footer-links { display: flex; gap: clamp(var(--space-8),4vw,var(--space-16)); }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm); color: var(--dark-navy); margin-bottom: var(--space-4); }
.footer-col a { display: block; font-size: var(--text-sm); color: var(--color-text-muted); padding: var(--space-1) 0; }
.footer-col a:hover { color: var(--eu-blue); }
.footer-bottom { border-top: 1px solid var(--color-divider); margin-top: var(--space-8); padding-top: var(--space-6); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-4); }
.footer-bottom p { font-size: var(--text-xs); color: var(--color-text-faint); }
.footer-bottom a { font-size: var(--text-xs); color: var(--color-text-faint); }
.footer-bottom a:hover { color: var(--eu-blue); }

@media(max-width: 768px) {
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: var(--space-6); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ======== SCROLL ANIMATIONS ======== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.stagger-children .reveal { transition-delay: calc(var(--i,0) * 0.08s); }

/* ======== MISC ======== */
.icon-inline { display: inline-flex; vertical-align: middle; }

/* ======== BLOG ARTICLE STYLES ======== */
article { background: var(--color-surface); }

article header {
  padding-top: calc(64px + clamp(var(--space-8), 4vw, var(--space-12)));
  padding-bottom: clamp(var(--space-8), 3vw, var(--space-12));
  text-align: center;
  border-bottom: 1px solid var(--color-divider);
}

article header h1 {
  font-size: var(--text-2xl);
  color: var(--dark-navy);
  margin-bottom: var(--space-4);
}

article header p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0 auto;
}

article section {
  padding: clamp(var(--space-8), 4vw, var(--space-16)) 0;
}

article .container {
  max-width: var(--content-default);
}

article h2 {
  font-size: var(--text-xl);
  color: var(--dark-navy);
  margin: var(--space-8) 0 var(--space-4) 0;
}

article h3 {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin: var(--space-6) 0 var(--space-3) 0;
  font-weight: 600;
}

article h4 {
  font-size: var(--text-base);
  color: var(--color-text);
  margin: var(--space-5) 0 var(--space-2) 0;
  font-weight: 600;
}

article p {
  margin-bottom: var(--space-4);
  line-height: 1.8;
  color: var(--color-text);
}

article ul, article ol {
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
}

article li {
  margin-bottom: var(--space-2);
  color: var(--color-text);
  line-height: 1.8;
}

article ul li {
  list-style: disc;
}

article ol li {
  list-style: decimal;
}

article a {
  color: var(--eu-blue);
  text-decoration: underline;
  font-weight: 500;
}

article a:hover {
  color: var(--dark-navy);
}

article strong {
  font-weight: 600;
  color: var(--color-text);
}

article em {
  font-style: italic;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--eu-blue);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--dark-navy);
}

/* RELATED ARTICLES */
.related-articles {
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
  padding: clamp(var(--space-8), 4vw, var(--space-12)) 0;
}

.related-articles h2 {
  font-size: var(--text-xl);
  color: var(--dark-navy);
  margin-bottom: var(--space-6);
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.related-card {
  background: var(--white);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}

.related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.related-card h3 {
  font-size: var(--text-lg);
  color: var(--dark-navy);
  margin-bottom: var(--space-3);
  font-weight: 700;
}

.related-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.related-card a {
  color: var(--eu-blue);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
}

.related-card a:hover {
  text-decoration: underline;
}

@media(max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}
