/*
 * ═══════════════════════════════════════════════════════════════
 * UK VISA ASSISTANCE — Shared Stylesheet
 * ukva-styles.css · v1.0
 *
 * Architecture:
 *   1.  Tokens (design variables)
 *   2.  Reset & base
 *   3.  Layout utilities
 *   4.  Typography utilities
 *   5.  Buttons
 *   6.  Topbar
 *   7.  Navigation
 *   8.  Footer
 *   9.  Cards — c-card--list
 *   10. Cards — c-card--feature
 *   11. Cards — c-card--package
 *   12. Cards — c-card--news
 *   13. Cards — c-card--stat
 *   14. Forms (shared)
 *   15. Sidebar components
 *   16. Article / content components
 *   17. Section patterns
 *   18. Accreditations strip
 *   19. Scroll reveal
 *   20. Accessibility
 *   21. Breakpoints (600 / 1024 / 1280)
 * ═══════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════
   0. SELF-HOSTED FONTS
   No external Google Fonts requests.
   WOFF2 files in /fonts/ directory.
═══════════════════════════════════════ */
@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/libre-baskerville-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/libre-baskerville-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/libre-baskerville-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════
   1. DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  /* Colour */
  --blue:        #3333CC;
  --blue-dark:   #2424AA;
  --blue-mid:    #4040DD;
  --blue-pale:   #EEF0FF;
  --navy:        #1A1A3E;
  --navy-mid:    #232350;
  --black:       #111118;
  --gray-800:    #1F2028;
  --gray-700:    #374151;
  --gray-600:    #4B5563;
  --gray-500:    #6B7280;
  --gray-400:    #9CA3AF;
  --gray-300:    #D1D5DB;
  --gray-200:    #E5E7EB;
  --gray-100:    #F3F4F6;
  --gray-50:     #F9FAFB;
  --white:       #FFFFFF;
  --border:      #E5E7EB;
  --success:     #059669;
  --error:       #DC2626;
  --warning-bg:  #FFF8ED;
  --warning-fg:  #78350F;
  --warning-bdr: #F59E0B;

  /* Typography */
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  56px;
  --space-2xl: 72px;

  /* Layout */
  --container-max: 1200px; /* never override — single source of truth */
  --gutter:    20px;       /* overridden at each breakpoint */
  --radius:    4px;
  --radius-md: 8px;
  --nav-h:     60px;       /* overridden at each breakpoint */
  --sidebar-w: 300px;      /* overridden at 1280px */
}

/* ═══════════════════════════════════════
   2. RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ═══════════════════════════════════════
   3. LAYOUT UTILITIES
   ───────────────────────────────────────
   LAYOUT CONTRACT — read before building any page
   ───────────────────────────────────────
   Every page section follows this exact pattern:

     <section>                    full-width, zero padding
       <div class="container">    constrains width + applies gutter
         content                  always on the shared vertical axis
       </div>
     </section>

   Rules:
   1. NEVER put padding-left or padding-right on a section or
      full-bleed wrapper. Gutters live on .container only.
   2. NEVER redefine max-width inline. Use .container always.
   3. Nav (.nav-inner), footer (.footer-top + .footer-bottom),
      hero (.page-hero-inner), breadcrumb (.breadcrumb-inner)
      and every page body wrapper MUST all resolve to the same
      left edge: max-width var(--container-max) + margin auto
      + padding var(--gutter).
   4. --gutter is the single source of truth for left/right
      spacing. It updates at every breakpoint automatically.
      Never hardcode px edge values anywhere.
   5. Full-bleed colour backgrounds go on the <section>.
      The .container inside always provides the inset.
   ───────────────────────────────────────
═══════════════════════════════════════ */

/* The one true container — used on every section, nav, footer */
.container {
  width: 100%;
  max-width: var(--container-max);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}

/* Standard section padding + bottom border */
.section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}
.section--alt {
  background: var(--gray-50);
}
.section--flush {
  border-bottom: none;
}

/* ═══════════════════════════════════════
   4. TYPOGRAPHY UTILITIES
═══════════════════════════════════════ */
.section-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
}

.section-subheading {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 10px;
  line-height: 1.35;
}

.body-lg {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 14px;
}

.body-sm {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   5. BUTTONS
═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 13px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--blue);
  transition: background .15s, border-color .15s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 13px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--navy);
  transition: background .15s, color .15s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* Used on blue/navy backgrounds */
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue);
  padding: 13px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--white);
  transition: background .15s, color .15s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-white:hover { background: transparent; color: var(--white); }

/* Used on blue/navy backgrounds — outlined variant */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.5);
  transition: all .15s;
  cursor: pointer;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* Small CTA — news "View all", inline actions */
.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--blue);
  color: var(--white);
  padding: 9px 16px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  border: none;
  transition: background .15s;
  cursor: pointer;
}
.btn-sm:hover { background: var(--blue-dark); }

/* Text link with arrow */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  transition: color .15s;
}
.arrow-link::after { content: '↗'; font-size: 11px; }
.arrow-link:hover { color: var(--blue); }

/* ═══════════════════════════════════════
   6. TOPBAR
   Hidden on mobile, displays at 600px+
═══════════════════════════════════════ */
.topbar {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--gray-500);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7px var(--gutter);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
.topbar a { color: var(--gray-500); transition: color .12s; }
.topbar a:hover { color: var(--blue); }
.topbar-sep { color: var(--gray-300); }

/* ═══════════════════════════════════════
   7. NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }

.nav-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

/* Logo */
.nav-logo-wordmark {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.nav-logo-wordmark .tagline {
  display: none;
  font-size: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 1px;
}
.nav-sep {
  display: none;
  width: 1px;
  height: 32px;
  background: var(--border);
}
.nav-reg {
  display: none;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* Desktop nav links — hidden mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .12s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-right { display: flex; align-items: center; gap: 10px; }

/* Contact Us button — hidden mobile, shows 600px+ */
.nav-cta {
  display: none;
  align-items: center;
  gap: 5px;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: all .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--navy); color: var(--white); }
.nav-cta.active { background: var(--navy); color: var(--white); }

/* Mobile: blue call button */
.nav-call-mobile {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background .12s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--gray-100); }
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--white);
  z-index: 499;
  overflow-y: auto;
  padding: var(--space-md) var(--gutter) var(--space-xl);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}
.mobile-nav-link::after { content: '→'; font-size: 14px; color: var(--gray-400); }
.mobile-nav-link.active { color: var(--blue); }
.mobile-menu .btn-primary {
  display: block;
  width: 100%;
  margin-top: var(--space-md);
  padding: 15px;
  font-size: 15px;
  text-align: center;
}

/* Mobile accordion nav — parents with children */
.mobile-nav-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.mobile-nav-parent::after {
  content: '\25BC'; /* ▼ */
  font-size: 10px;
  color: var(--gray-400);
}
@media (prefers-reduced-motion: no-preference) {
  .mobile-nav-parent::after { transition: transform .2s; }
}
.mobile-nav-parent.open { color: var(--blue); }
.mobile-nav-parent.open::after {
  transform: rotate(180deg);
  color: var(--blue);
}

/* Accordion children container */
.mobile-nav-children {
  display: none;
  padding: 0;
}
.mobile-nav-children.open { display: block; }

.mobile-nav-child {
  display: block;
  padding: 12px 0 12px 36px;
  font-size: 14px;
  font-weight: 400;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-child:last-child { border-bottom: none; }

.mobile-nav-group-label {
  padding: 16px 0 6px 36px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.mobile-nav-group-label:first-child { padding-top: 8px; }

.mobile-nav-hub {
  display: block;
  padding: 12px 0 12px 36px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px solid var(--border);
}

/* Desktop dropdown — hidden by default (mobile-first) */
.nav-item { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  border: 1px solid var(--border);
  z-index: 600;
  margin-top: 8px;
  overflow: hidden;
}
.nav-item.dropdown-open .nav-dropdown { display: block; }

.nav-dropdown-item {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--navy);
}
.nav-dropdown-item:last-of-type { border-bottom: none; }

.nav-dropdown-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}
.nav-dropdown-desc {
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .nav-dropdown-item { transition: background .15s, color .15s; }
}
.nav-dropdown-item:hover {
  background: var(--blue-pale);
}
.nav-dropdown-item:hover .nav-dropdown-name { color: var(--blue); }
.nav-dropdown-item:hover .nav-dropdown-desc { color: var(--blue); opacity: .75; }

.nav-dropdown-hub {
  display: block;
  padding: 12px 20px;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
}
.nav-dropdown-hub:hover { color: var(--blue-dark); }

/* Desktop mega menu — anchors to .nav-inner so panel spans container width
   instead of trigger width (matches IAS pattern). Hidden mobile. */
.nav-item--mega { position: static; }

.nav-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  border: 1px solid var(--border);
  z-index: 600;
  margin-top: 8px;
  overflow: hidden;
}
.nav-item--mega.dropdown-open .nav-mega { display: block; }

.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg) var(--space-sm);
}

.nav-mega-col { min-width: 0; }

.nav-mega-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding-bottom: 8px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--gray-100);
}

.nav-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-mega-link {
  display: block;
  padding: 6px 8px;
  margin: 0 -8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius-sm);
}
@media (prefers-reduced-motion: no-preference) {
  .nav-mega-link { transition: background .15s, color .15s; }
}
.nav-mega-link:hover,
.nav-mega-link.is-active {
  background: var(--blue-pale);
  color: var(--blue);
}

.nav-mega-hub {
  display: block;
  padding: 12px var(--space-md);
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
}
.nav-mega-hub:hover { color: var(--blue-dark); }

/* ═══════════════════════════════════════
   8. FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  /* No horizontal padding here — gutters live on .footer-top
     and .footer-bottom which use the container pattern */
  padding-top: var(--space-xl);
  padding-bottom: var(--space-md);
}
/* Extra bottom padding on mobile — leaves room for sticky phone bar */
.footer--has-sticky-phone {
  padding-bottom: 96px;
}

.footer-top {
  /* Mirrors .container exactly so footer logo left-aligns with nav logo */
  width: 100%;
  max-width: var(--container-max);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.footer-reg {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 2px;
}
.footer-address {
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 10px;
  line-height: 1.7;
}
.footer-address a { color: var(--gray-500); transition: color .12s; }
.footer-address a:hover { color: var(--blue); }

.footer-cta-btn {
  display: inline-block;
  margin-top: 14px;
  background: var(--blue);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  transition: background .12s;
}
.footer-cta-btn:hover { background: var(--blue-dark); }

.footer-social { display: flex; gap: 7px; margin-top: 12px; }
.footer-soc-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  transition: background .12s;
  cursor: pointer;
}
.footer-soc-btn:hover { background: var(--blue); }

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.footer-link {
  display: block;
  font-size: 12.5px;
  color: var(--gray-500);
  margin-bottom: 6px;
  transition: color .12s;
}
.footer-link:hover { color: var(--blue); }

.footer-bottom {
  /* Mirrors .container exactly */
  width: 100%;
  max-width: var(--container-max);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-accred-row { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-accred-badge {
  height: 34px;
  padding: 0 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  gap: 5px;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-legal-link { font-size: 11px; color: var(--gray-400); transition: color .12s; }
.footer-legal-link:hover { color: var(--blue); }
.footer-copyright { font-size: 11px; color: var(--gray-400); }

/* Trustpilot inline in footer bottom */
.footer-tp { display: flex; align-items: center; gap: 5px; }
.footer-tp-stars { color: #00B67A; font-size: 13px; }
.footer-tp-label { font-size: 11px; font-weight: 700; color: #00B67A; }
.footer-tp-sub { font-size: 10px; color: var(--gray-500); }

/* ═══════════════════════════════════════
   9. CARD — c-card--list
   Compact, bordered grid card with arrow.
   Used: homepage services, related pages.
   Hover: gray-50 bg, blue arrow nudge.
═══════════════════════════════════════ */
.c-card-list {
  padding: 24px 22px 28px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
  cursor: pointer;
}
.c-card-list:last-child { border-bottom: none; }
.c-card-list:hover { background: var(--gray-50); }

.c-card-list__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.c-card-list__body {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}
.c-card-list__arrow {
  font-size: 18px;
  color: var(--gray-400);
  display: block;
  transition: color .15s, transform .15s;
}
.c-card-list:hover .c-card-list__arrow {
  color: var(--blue);
  transform: translate(2px,-2px);
}

/* Grid wrapper for list cards */
.c-card-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ═══════════════════════════════════════
   10. CARD — c-card--feature
   Spacious, icon chip, subtle hover.
   Used: service page benefits grid.
   Hover: border-color → var(--blue).
═══════════════════════════════════════ */
.c-card-feature {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: border-color .15s;
  cursor: default;
}
.c-card-feature:hover { border-color: var(--blue); }

.c-card-feature__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.c-card-feature__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.c-card-feature__body {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════
   11. CARD — c-card--package
   Feature card + price line.
   Used: service page packages.
   Hover: border → blue, bg → blue-pale.
   Featured modifier: permanent highlight.
═══════════════════════════════════════ */
.c-card-package {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: border-color .15s, background .15s;
  cursor: pointer;
}
.c-card-package:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
}
.c-card-package--featured {
  border-color: var(--blue);
  background: var(--blue-pale);
}
.c-card-package__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.c-card-package__body {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 14px;
}
.c-card-package__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}

/* ═══════════════════════════════════════
   12. CARD — c-card--news
   Image + meta + serif title + excerpt.
   Used: homepage news, news archive.
   Hover: title → blue, image scales.
═══════════════════════════════════════ */
.c-card-news {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.c-card-news:hover .c-card-news__title { color: var(--blue); }

.c-card-news__img {
  display: block;          /* <a> defaults to inline. Without this, height/width/margin are ignored and the inner img sizes to the article block, overflowing the card into the section below. */
  width: 100%;
  height: 196px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--gray-100);
}
.c-card-news__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.c-card-news:hover .c-card-news__img img { transform: scale(1.03); }

.c-card-news__meta {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.c-card-news__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
  transition: color .15s;
  display: block;
}
.c-card-news__excerpt {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════
   12b. NEWS STRIP (section wrapper + grid)
   Used by homepage, service-hub (style=alt), About.
   Migrated from page-home.css 2026-05-07.
═══════════════════════════════════════ */
.news {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.news--alt { background: var(--gray-50); }

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;       /* don't stretch cards if heights mismatch; let each card size to content */
}

.c-card-news__img-fallback {
  width: 100%;
  height: 100%;
  background: var(--gray-100);
}

@media (min-width: 600px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

/* ═══════════════════════════════════════
   12c. CTA FORM SECTION (.hub-cta-*)
   Used by service-hub + about. Navy background with form on white.
   Migrated from page-service-hub.css 2026-05-07.
═══════════════════════════════════════ */
.hub-cta-form {
  background: var(--navy);
  padding: var(--space-xl) 0;
}
.hub-cta-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.hub-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}
.hub-cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 20px;
}
.hub-cta-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.hub-cta-trust-item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.hub-cta-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.hub-cta-form-wrap {
  max-width: 480px;
}
.hub-cta-form-wrap .form-label {
  color: rgba(255, 255, 255, 0.6);
}
.hub-cta-form-wrap .form-input {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.25);
}
.hub-cta-form-wrap .form-input:focus {
  border-bottom-color: var(--white);
}
.hub-cta-form-wrap .form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.hub-cta-form-wrap select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E");
}
.hub-cta-form-wrap select.form-input option {
  color: var(--black);
  background: var(--white);
}
.hub-cta-form-wrap textarea.form-input {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}
.hub-cta-form-wrap textarea.form-input:focus {
  border-color: var(--white);
}
.hub-cta-form-wrap .form-sub-label {
  color: rgba(255, 255, 255, 0.35);
}
.hub-cta-form-wrap .form-char-count {
  color: rgba(255, 255, 255, 0.35);
}
.hub-cta-form-wrap .form-privacy {
  color: rgba(255, 255, 255, 0.45);
}
.hub-cta-form-wrap .form-privacy a {
  color: rgba(255, 255, 255, 0.7);
}
.hub-cta-form-wrap .form-submit {
  background: var(--white);
  color: var(--blue);
}
.hub-cta-form-wrap .form-submit:hover {
  background: var(--blue-pale);
}

@media (min-width: 1024px) {
  .hub-cta-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 72px;
  }
  .hub-cta-text {
    flex: 1;
    padding-top: 12px;
  }
  .hub-cta-form-wrap {
    flex-shrink: 0;
    width: 420px;
  }
}

/* ═══════════════════════════════════════
   13. CARD — c-card--stat
   Large number on dark navy bg.
   Used: homepage stats, sponsor facts.
   No hover state.
═══════════════════════════════════════ */
.c-card-stat {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--white);
}
.c-card-stat__number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.c-card-stat__label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.c-card-stat__divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 16px 0;
}

/* ═══════════════════════════════════════
   14. FORMS (shared)
═══════════════════════════════════════ */

/* Underline input — main forms */
.form-input {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--gray-300);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  outline: none;
  background: transparent;
  transition: border-color .15s;
  display: block;
  -webkit-appearance: none;
}
.form-input:focus { border-bottom-color: var(--blue); }
.form-input.valid { border-bottom-color: var(--success); }
.form-input.error { border-bottom-color: var(--error); }

select.form-input {
  cursor: pointer;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B7280'/%3E%3C/svg%3E") no-repeat right 4px center / 10px;
}

textarea.form-input {
  border: 1.5px solid var(--gray-300);
  padding: 12px;
  resize: vertical;
  min-height: 120px;
  border-radius: 2px;
  font-size: 14px;
}
textarea.form-input:focus { border-color: var(--blue); }

/* Boxed input — sidebar forms */
.form-input--boxed {
  width: 100%;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  outline: none;
  background: var(--white);
  transition: border-color .15s;
  display: block;
}
.form-input--boxed:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(51,51,204,.1); }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 5px;
}
.form-field { margin-bottom: 20px; }
.form-field-error {
  font-size: 11px;
  color: var(--error);
  margin-top: 5px;
  display: none;
}
.form-field-error.show { display: block; }
.form-hint { font-size: 12px; color: var(--gray-500); margin-bottom: 8px; }
.form-privacy { font-size: 12px; color: var(--gray-500); line-height: 1.6; margin-bottom: 20px; }
.form-privacy a { color: var(--blue); }
.form-char-count { font-size: 11px; color: var(--gray-400); margin-top: 4px; text-align: right; }

.form-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  display: block;
  width: 100%;
}
.form-submit:hover { background: var(--blue-dark); }
.form-submit--success { background: var(--success); }

/* Name row — stacked mobile, side-by-side 480px+ */
.form-name-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.form-sub-label {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   15. SIDEBAR COMPONENTS
   Desktop only — sticky, right column
═══════════════════════════════════════ */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-card__header {
  background: var(--navy);
  padding: 16px 18px;
}
.sidebar-card__header h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.sidebar-card__body { padding: 18px; }

/* ── Sidebar form fields (callback-form partial) ── */
.sidebar-form-field { margin-bottom: 14px; }
.sidebar-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  margin-bottom: 5px;
}
.sidebar-input {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--gray-300);
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  outline: none;
  background: transparent;
}
.sidebar-input:focus { border-bottom-color: var(--blue); }
.sidebar-select {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--gray-300);
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  outline: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B7280'/%3E%3C/svg%3E") no-repeat right 4px center / 9px;
  cursor: pointer;
  -webkit-appearance: none;
}
.sidebar-textarea {
  width: 100%;
  border: 1.5px solid var(--gray-300);
  border-radius: 3px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--black);
  outline: none;
  background: transparent;
  resize: vertical;
  min-height: 90px;
}
.sidebar-textarea:focus { border-color: var(--blue); }
.sidebar-privacy {
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 12px;
  line-height: 1.5;
}
.sidebar-privacy a { color: var(--blue); }
.sidebar-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
}
.sidebar-submit:hover { background: var(--blue-dark); }

@media (prefers-reduced-motion: no-preference) {
  .sidebar-input { transition: border-color .15s; }
  .sidebar-textarea { transition: border-color .15s; }
  .sidebar-submit { transition: background .15s; }
}

/* ── Page body — article + sidebar (service, single post, etc.) ── */
.page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px var(--gutter);
}
.sidebar { display: none; }

@media (min-width: 1024px) {
  .page-body {
    padding: 56px var(--gutter);
    display: grid;
    grid-template-columns: 1fr var(--sidebar-w);
    gap: 56px;
    align-items: start;
  }
  .article-content { min-width: 0; }
  .sidebar {
    display: block;
    position: sticky;
    /* Clear main nav (var(--nav-h)) + sticky page-nav-strip (~48px) + buffer.
       Same offset as #anchor scroll-margin-top so the stack is consistent. */
    top: calc(var(--nav-h) + 64px);
  }
}

/* Key facts — label / value rows */
.key-fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.key-fact:last-child { border-bottom: none; }
.key-fact__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  min-width: 80px;
  flex-shrink: 0;
  margin-top: 2px;
}
.key-fact__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.key-fact__sub {
  font-size: 11.5px;
  color: var(--gray-500);
  margin-top: 2px;
  line-height: 1.4;
}

/* Sidebar related links */
.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .12s;
  cursor: pointer;
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--blue); }
.sidebar-link__arrow { font-size: 11px; color: var(--gray-400); }

/* Trust badges in sidebar */
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 18px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
}
.trust-badge__icon {
  width: 22px;
  height: 22px;
  background: var(--blue);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 800;
  color: var(--white);
}

/* ═══════════════════════════════════════
   16. ARTICLE / CONTENT COMPONENTS
═══════════════════════════════════════ */

/* Article column typography */
.article h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 27px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin: 40px 0 14px;
  padding-top: 8px;
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 10px;
  line-height: 1.35;
}
.article h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 20px 0 8px;
}
.article p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 14px;
}
.article strong { color: var(--black); font-weight: 600; }
.article ul, .article ol { padding-left: 20px; margin-bottom: 16px; }
.article li {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 5px;
}

/* Info box — blue-pale bg */
.info-box {
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  margin: 24px 0;
}
.info-box p {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 0;
  line-height: 1.65;
}
.info-box strong { color: var(--blue); }

/* Warning box — amber */
.warning-box {
  background: var(--warning-bg);
  border-left: 3px solid var(--warning-bdr);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  margin: 24px 0;
}
.warning-box p {
  font-size: 14px;
  color: var(--warning-fg);
  margin-bottom: 0;
  line-height: 1.65;
}

/* Check list — custom blue bullet */
.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.6;
}
.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%233333CC' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/12px no-repeat;
  border: 1.5px solid var(--blue);
}

/* Requirements table */
.req-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.req-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.req-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}
.req-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--gray-700);
  vertical-align: top;
  line-height: 1.55;
}
.req-table tr:last-child td { border-bottom: none; }
.req-table tr:nth-child(even) td { background: var(--gray-50); }

/* FAQ section wrapper (component is self-wrapping since 2026-05-07) */
.faq-section {
  padding-block: var(--space-2xl);
}
.faq-section .section-head {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.faq-section .section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0;
  color: var(--gray-800);
}
.faq-section .faq-list {
  max-width: 820px;
  margin: 0 auto;
}

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  line-height: 1.4;
  transition: color .12s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray-500);
  transition: all .2s;
  margin-top: 2px;
}
.faq-item.open .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.75;
  padding: 0 0 18px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* In-article CTA block */
.article-cta {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.article-cta h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}
.article-cta p {
  font-size: 14px;
  color: var(--white);
  line-height: 1.65;
  margin: 0;
  max-width: 720px;
}
.article-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Related pages grid */
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}
.related-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  transition: all .12s;
  cursor: pointer;
  gap: 8px;
}
.related-card:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}
.related-card__arrow { font-size: 11px; color: var(--gray-400); flex-shrink: 0; transition: color .12s; }
.related-card:hover .related-card__arrow { color: var(--blue); }

/* ═══════════════════════════════════════
   17. SECTION PATTERNS
═══════════════════════════════════════ */

/* Blue full-width CTA banner */
.cta-banner {
  background: var(--blue);
  padding: var(--space-xl) var(--gutter);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: var(--space-md);
}
.cta-banner .btn-white { width: 100%; max-width: 280px; }

/* Dark navy recruitment/final CTA banner */
.recruitment {
  background: var(--navy);
  padding: var(--space-xl) var(--gutter);
}
.recruitment h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.recruitment p {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 20px;
}
.recruit-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  margin-top: 14px;
}
.recruit-link::after { content: '↗'; }
.recruitment .btn-white { width: 100%; max-width: 280px; }

/* Trust/approach banner — solid blue, centred text */
.banner-section {
  background: var(--blue);
  padding: 72px var(--gutter);
  text-align: center;
}
.banner-inner { max-width: 760px; margin: 0 auto; }
.banner-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.banner-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 24px;
}
.banner-headline strong { font-weight: 700; }
.banner-body {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 14px;
}
.banner-small {
  font-size: 12.5px;
  color: rgba(255,255,255,.42);
  line-height: 1.7;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--gray-500); transition: color .12s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { color: var(--gray-300); }
.breadcrumb-current { color: var(--navy); font-weight: 500; }

/* In-page anchor nav strip — sticky below the main site nav so the
   section anchors stay reachable while reading. z-index sits below
   modals/drawers (500+) but above body content. */
.page-nav-strip {
  position: sticky;
  top: var(--nav-h);
  z-index: 300;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.page-nav-strip::-webkit-scrollbar { display: none; }
.page-nav-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  white-space: nowrap;
}
.page-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 2px solid transparent;
  transition: all .15s;
  cursor: pointer;
  white-space: nowrap;
}
.page-nav-link:hover { color: var(--blue); border-bottom-color: var(--blue); }
.page-nav-link.active { color: var(--blue); border-bottom-color: var(--blue); font-weight: 600; }

/* Scroll offset for every page-nav-strip anchor target.
   Covers main nav (var(--nav-h)) + sticky page-nav-strip (~48px) + buffer.
   Listed by id to catch anchors that live in different parents
   (sections inside .article-content, body h2s, .faq-section, related). */
#overview,
#requirements,
#documents,
#how-to-apply,
#costs,
#our-services,
#faqs,
#related {
  scroll-margin-top: calc(var(--nav-h) + 64px);
}

/* Sticky mobile phone bar */
.sticky-phone {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--navy);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.15);
}
.sticky-phone__text { font-size: 12px; color: rgba(255,255,255,.65); line-height: 1.3; }
.sticky-phone__text strong { display: block; font-size: 15px; color: var(--white); font-weight: 600; }
.sticky-phone__btn {
  background: var(--blue);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ═══════════════════════════════════════
   18. ACCREDITATIONS STRIP
═══════════════════════════════════════ */
.accreditations {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}
.accred-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.accred-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.accred-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color .12s;
  flex-shrink: 0;
}
.accred-badge:hover { border-color: var(--blue); }
.accred-icon {
  width: 30px;
  height: 30px;
  background: var(--blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.accred-badge-text { font-size: 11px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.accred-badge-sub { font-size: 9.5px; color: var(--gray-500); }
.tp-badge { display: flex; align-items: center; gap: 6px; }
.tp-stars { color: #00B67A; font-size: 16px; }
.tp-text { font-size: 12px; font-weight: 700; color: #00B67A; }
.tp-sub-text { font-size: 10px; color: var(--gray-500); }

/* ═══════════════════════════════════════
   19. SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   20. ACCESSIBILITY
═══════════════════════════════════════ */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════
   26. FEATURES GRID (Why Choose Us)
   Large blue display numbers on white.
   Used: homepage, service hub pages.
   No hover state.
═══════════════════════════════════════ */
.why-us {
  padding: var(--space-xl) 0;
}
.why-us-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  line-height: 1.3;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.feature-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.feature-item:last-child { border-bottom: none; }
.feature-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 12px;
}
.feature-num sup { font-size: 16px; }
.feature-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   27. PROCESS STEPS
   Numbered circle steps with connector line.
   Used: homepage, service hub pages.
═══════════════════════════════════════ */
.process {
  padding: var(--space-xl) 0;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 480px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
}
.step { text-align: center; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}
.step.active .step-num {
  background: var(--blue);
  color: var(--white);
}
.step h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.step p {
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   28. REVIEWS
   Trustpilot summary + review cards.
   Used: about page, service hub pages.
   Hover: border-color -> blue on cards.
═══════════════════════════════════════ */
.reviews-section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
  background: var(--gray-50);
}
.reviews-heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}
.reviews-intro {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.reviews-summary-score {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-score-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.reviews-score-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviews-stars {
  color: #00B67A;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
}
.reviews-score-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.reviews-score-sub {
  font-size: 12px;
  color: var(--gray-500);
}
.reviews-tp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-500);
  transition: color .12s;
}
.reviews-tp-link:hover { color: var(--blue); }
.reviews-tp-logo {
  font-weight: 700;
  font-size: 13px;
  color: #00B67A;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: border-color .15s;
}
.review-card:hover { border-color: var(--blue); }
.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}
.review-card-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.review-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.review-card-date {
  font-size: 11px;
  color: var(--gray-400);
}
.review-card-service {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.review-stars {
  color: #00B67A;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.review-card blockquote {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  border-left: 2px solid var(--blue-pale);
  padding-left: 14px;
  margin: 0;
}

/* ═══════════════════════════════════════
   29. NEWS HEADER
   Section heading + "View all" button row.
   Used: homepage, service hub pages.
═══════════════════════════════════════ */
.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  gap: 16px;
}
.news-header h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

/* ═══════════════════════════════════════
   30. BREAKPOINTS
═══════════════════════════════════════ */

/* ── 480px ─────────────────────────────
   Name row side-by-side on forms
   Submit button auto-width
──────────────────────────────────────── */
@media (min-width: 480px) {
  .form-name-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-submit { width: auto; min-width: 180px; }
}

/* ── 600px (Tablet) ────────────────────
   Topbar appears
   Nav: tagline, sep, reg, CTA btn show
   Mobile call btn hides
   2-col grids start
──────────────────────────────────────── */
@media (min-width: 600px) {
  :root { --gutter: 28px; --nav-h: 64px; }

  .topbar { display: block; }

  .nav-logo-wordmark { font-size: 18px; }

  /* Page hero: actions become inline */
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn-white, .hero-actions .btn-outline-white { width: auto; }
  .nav-logo-wordmark .tagline { display: block; }
  .nav-sep { display: block; }
  .nav-reg { display: block; }
  .nav-cta { display: flex; }
  .nav-call-mobile { display: none; }

  /* Cards */
  .c-card-list-grid { grid-template-columns: 1fr 1fr; }
  .c-card-list { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .c-card-list:nth-child(2n) { border-right: none; }
  .c-card-list:nth-last-child(-n+2) { border-bottom: none; }

  /* CTA banner — stacked layout: full-width heading, button below-left */
  .cta-banner-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-banner h2 { margin-bottom: 0; max-width: 880px; }
  .cta-banner .btn-white { width: auto; }

  /* Recruitment banner */
  .recruitment-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
  .recruitment p { max-width: 520px; }
  .recruitment .btn-white { width: auto; }

  /* Article CTA */
  .article-cta__actions { flex-direction: row; }

  /* Features grid — 3-col (parent selector for specificity over base) */
  .why-us .features-grid { grid-template-columns: repeat(3, 1fr); }
  .why-us .feature-item { border-bottom: none; border-right: 1px solid var(--border); padding: 32px 28px 32px 0; }
  .why-us .feature-item:not(:first-child) { padding-left: 28px; }
  .why-us .feature-item:last-child { border-right: none; }

  /* Process steps — 4-col with connector */
  .process .steps-grid { grid-template-columns: repeat(4, 1fr); position: relative; }
  .process .steps-grid::before {
    content: ''; position: absolute;
    top: 20px; left: 12.5%; right: 12.5%;
    height: 1px; background: var(--border); z-index: 0;
  }
  .process .step { position: relative; z-index: 1; }

  /* Reviews — 2-col cards */
  .reviews-section .reviews-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; }
  .footer--has-sticky-phone { padding-bottom: 80px; }
}

/* ── 1024px (Desktop) ─────────────────
   Full nav, sidebar layout
   4-col service grid
   Sticky sidebar
   3-col news
   Desktop footer
──────────────────────────────────────── */
@media (min-width: 1024px) {
  :root {
    --gutter: 40px;
    --nav-h: 68px;
    --space-xl: 80px;
  }

  /* Nav — override space-between so logo/sep/reg stay tight */
  .nav-inner { justify-content: flex-start; }
  .nav-links { display: flex; margin-left: auto; }
  .nav-hamburger { display: none; }
  .nav-call-mobile { display: none; }

  /* Cards — 4-col list grid */
  .c-card-list-grid { grid-template-columns: repeat(4, 1fr); }
  .c-card-list { border-right: 1px solid var(--border); border-bottom: none; }
  .c-card-list:nth-child(2n) { border-right: 1px solid var(--border); } /* reset tablet */
  .c-card-list:nth-last-child(-n+2) { border-bottom: none; }
  .c-card-list:last-child { border-right: none; }

  /* Sidebar layout — main col + sticky right panel */
  .l-sidebar {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-w);
    gap: 56px;
    align-items: start;
  }
  .l-sidebar__main { min-width: 0; }
  .l-sidebar__side {
    position: sticky;
    top: calc(var(--nav-h) + 16px);
  }

  /* 2-col content split */
  .l-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .l-2col--reverse .l-2col__main { order: 2; }
  .l-2col--reverse .l-2col__side { order: 1; }

  /* 3-col */
  .l-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

  /* News header */
  .news-header h2 { font-size: 22px; }

  /* CTA banner */
  .cta-banner h2 { font-size: 30px; }

  /* Recruitment */
  .recruitment h2 { font-size: 22px; }

  /* Article CTA */
  .article-cta__actions { flex-direction: row; flex-shrink: 0; }

  /* Features grid */
  .why-us .why-us-heading { font-size: 28px; }

  /* Reviews — 3-col cards, horizontal summary */
  .reviews-section { padding: 80px 0; }
  .reviews-section .reviews-summary { flex-direction: row; align-items: center; justify-content: space-between; }
  .reviews-section .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .footer-top { grid-template-columns: 200px 1fr 1fr 1fr; gap: 48px; }
  .footer--has-sticky-phone { padding-bottom: var(--space-md); }

  /* Sticky phone — hidden desktop */
  .sticky-phone { display: none; }
}

/* ── 1280px (Wide) ────────────────────
   Max gutters, wider sidebar
──────────────────────────────────────── */
@media (min-width: 1280px) {
  :root {
    --gutter: 48px;
    --sidebar-w: 320px;
  }

  .cta-banner h2 { font-size: 34px; }
}

/* ═══════════════════════════════════════
   22. AUTHOR ATTRIBUTION (E-E-A-T)
═══════════════════════════════════════ */
.author-attribution {
  margin: 36px 0;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--gray-50);
}
.author-attribution__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.author-attribution__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.author-attribution__name a {
  color: var(--blue);
  transition: color .12s;
}
.author-attribution__name a:hover { color: var(--blue-dark); }
.author-attribution__title {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 2px;
}
.author-attribution__date {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 6px;
}

/* ═══════════════════════════════════════
   23. SEARCH RESULTS
═══════════════════════════════════════ */
.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.search-result h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.search-result h2 a { transition: color .12s; }
.search-result h2 a:hover { color: var(--blue); }

/* ═══════════════════════════════════════
   24. ARCHIVE PAGINATION
═══════════════════════════════════════ */
.archive-pagination {
  margin-top: var(--space-lg);
  text-align: center;
}
.archive-pagination .nav-links {
  display: inline-flex;
  gap: 6px;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  transition: all .12s;
}
.archive-pagination .page-numbers:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.archive-pagination .page-numbers.current {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ═══════════════════════════════════════
   25. PAGE HERO (blue band on inner pages)
═══════════════════════════════════════ */
.page-hero {
  background: var(--blue);
  padding-top: var(--space-xl);    /* scales 56 → 80 via root --space-xl override at >=1024 */
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  /* Mirror .container exactly so hero content aligns with header / footer / main */
  width: 100%;
  max-width: var(--container-max);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 400;
  color: white;
  line-height: 1.25;
  max-width: 680px;
  margin-bottom: var(--space-sm);
}
.page-hero-intro {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.page-hero-intro strong { color: white; font-weight: 600; }
.page-hero-intro a { color: white; text-decoration: underline; }
.page-hero-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--space-xs);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}
.hero-actions .btn-white,
.hero-actions .btn-outline-white { width: 100%; max-width: 300px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}
.hero-trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
}
.article-hero-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
}
.article-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}
