/*
Theme Name: BVA Editorial
Theme URI: https://boardroomvoicesafrica.com
Description: Vanity Fair-inspired editorial layout for Boardroom Voices Africa. Full standalone theme with custom brand colors.
Author: Boardroom Voices Africa
Version: 2.0
License: GPL v2 or later
Text Domain: bva-editorial
*/

/* ============================================================
   BVA EDITORIAL THEME
   Layout: Vanity Fair editorial structure
   Colors: Boardroom Voices Africa brand palette (preserved exactly)
   Fonts: IBM Plex Serif (display) + Inter (body)
   ============================================================ */

/* ===== BRAND COLOR SYSTEM (BVA palette, never changed) ===== */
:root {
  /* BVA Brand Colors */
  --bva-orange:       #EC5B1D;
  --bva-orange-light: #F58634;
  --bva-orange-dark:  #B8430D;
  --bva-black:        #000000;
  --bva-white:        #FEFEFE;
  --bva-off-white:    #F8F6F3;
  --bva-grey-light:   #F0F0F0;
  --bva-grey:         #888888;
  --bva-grey-dark:    #444444;
  --bva-rule:         #D8D8D8;

  /* VF Layout Tokens → mapped to BVA palette */
  --accent:           var(--bva-orange);
  --accent-hover:     var(--bva-orange-light);
  --accent-dark:      var(--bva-orange-dark);
  --text-primary:     var(--bva-black);
  --text-secondary:   var(--bva-grey-dark);
  --text-muted:       var(--bva-grey);
  --bg-white:         var(--bva-white);
  --bg-off:           var(--bva-off-white);
  --bg-dark:          var(--bva-black);
  --border:           var(--bva-rule);

  /* Typography */
  --font-display: 'IBM Plex Serif', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ui:      'Inter', sans-serif;

  /* Spacing / layout */
  --container-max: 1260px;
  --gutter:        24px;
  --section-gap:   60px;
}

/* ===== RESET ===== */
*, *::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(--text-primary); 
  background: var(--bg-white); 
  font-weight: 400; 
  line-height: 1.6; 
}

img { 
  max-width: 100%; 
  height: auto; 
  display: block; 
}

a { 
  color: inherit; 
  text-decoration: none; 
  transition: color 0.2s ease; 
}

ul { 
  list-style: none; 
}

/* ===== WORDPRESS SPECIFIC RESETS ===== */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.alignwide {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.alignfull {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.vf-rule {
  display: block;
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-label span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
    /* Colors */
    --color-primary: #EC5B1D;
    --color-primary-dark: #C94A15;
    --color-primary-light: #F07A44;
    --color-black: #1A1A1A;
    --color-white: #FFFFFF;
    --color-gray-100: #F7F7F7;
    --color-gray-200: #E8E8E8;
    --color-gray-300: #D0D0D0;
    --color-gray-400: #999999;
    --color-gray-500: #666666;
    --color-gray-600: #444444;
    --color-gray-700: #333333;
    --color-gray-800: #222222;
    --color-gray-900: #1A1A1A;
    
    /* Typography */
    --font-display: 'Georgia', serif;
    --font-ui: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --gutter: 20px;
    --header-top-height: 64px;
    --header-bottom-height: 48px;
    --header-top-height-mobile: 56px;
    --header-top-height-small: 50px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-medium: 300ms ease;
    --transition-slow: 400ms ease;
}

/* ============================================================
   TOP RIBBON
   ============================================================ */
.site-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    z-index: 1100;
}


/* ============================================================
   CSS CUSTOM PROPERTIES (Ensure these are in your :root)
   ============================================================ */
:root {
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-primary: #EC5B1D;
    --color-primary-dark: #C84A17;
    --color-primary-light: #F07D4C;
    --color-youtube: #FF0000;
    --color-youtube-dark: #CC0000;
    
    --font-display: 'Georgia', serif;
    --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: 0.15s ease;
    --transition-medium: 0.3s ease;
    
    --container-max: 1200px;
    --gutter: 24px;
    --gutter-mobile: 16px;
    
    --header-top-height: 68px;
    --header-top-height-tablet: 62px;
    --header-top-height-mobile: 56px;
    --header-bottom-height: 48px;
    
    --wp-admin-bar-desktop: 32px;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--transition-medium);
}

.admin-bar .site-header {
    top: var(--wp-admin-bar-desktop);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   HEADER CONTAINER
   ============================================================ */
.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

/* ============================================================
   HEADER TOP ROW — Logo + Action Buttons
   ============================================================ */
.header-top {
    border-bottom: 1px solid var(--color-gray-200);
    background: var(--color-white);
}

.header-top .header-container {
    height: var(--header-top-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* ============================================================
   SITE BRANDING / LOGO (Left Side)
   ============================================================ */
.site-branding {
    flex-shrink: 0;
}

.site-branding a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
}

.site-description {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-primary);
    font-style: italic;
    margin-left: 4px;
    white-space: nowrap;
}

.custom-logo-link {
    display: block;
}

.custom-logo-link img {
    max-height: 48px;
    width: auto;
    height: auto;
    display: block;
}

/* ============================================================
   ACTION BUTTONS (Right Side)
   ============================================================ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Base Button Style */
.header-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.header-action-btn .btn-label {
    display: inline;
}

/* YouTube Button */
.header-youtube-btn {
    background: var(--color-youtube);
    color: var(--color-white);
}

.header-youtube-btn:hover,
.header-youtube-btn:focus {
    background: var(--color-youtube-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.header-youtube-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Search Button */
.header-search-btn {
    background: var(--color-gray-100);
    color: var(--color-gray-600);
}

.header-search-btn:hover,
.header-search-btn:focus {
    background: var(--color-gray-200);
    color: var(--color-primary);
}

.header-search-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Subscribe Button */
.header-subscribe-btn {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 18px;
}

.header-subscribe-btn:hover,
.header-subscribe-btn:focus {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(236, 91, 29, 0.3);
}

/* ============================================================
   MENU TOGGLE (Hamburger — Hidden on Desktop)
   ============================================================ */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    margin-left: 4px;
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.menu-toggle .bar {
    display: block;
    height: 2.5px;
    background: var(--color-gray-700);
    border-radius: 2px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   HEADER BOTTOM ROW — Navigation Bar
   ============================================================ */
.header-bottom {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-100);
}

.header-bottom .header-container {
    height: var(--header-bottom-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   MAIN NAVIGATION
   ============================================================ */
.main-navigation {
    width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray-700);
    padding: 14px 18px;
    border-bottom: 3px solid transparent;
    text-decoration: none;
    transition: color var(--transition-fast), border-color var(--transition-fast);
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a:focus {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.nav-menu > li.current-menu-item > a {
    border-bottom-color: var(--color-primary);
    color: var(--color-primary);
}

/* ============================================================
   DROPDOWN MENUS
   ============================================================ */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 999;
    list-style: none;
    padding: 6px 0;
    margin: 0;
}

.nav-menu > li:hover .sub-menu,
.nav-menu > li:focus-within .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-gray-600);
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-menu .sub-menu li a:hover,
.nav-menu .sub-menu li a:focus {
    background: var(--color-gray-100);
    color: var(--color-primary);
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 100%;
    max-width: 680px;
    padding: 0 24px;
    transform: translateY(-20px);
    transition: transform var(--transition-medium);
}

.search-overlay.active .search-overlay-inner {
    transform: translateY(0);
}

.search-overlay .search-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-overlay .search-field {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 2px solid var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 2rem;
    padding: 16px 0;
    outline: none;
}

.search-overlay .search-field::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-overlay .search-field:focus {
    border-bottom-color: var(--color-primary-light);
}

.search-overlay .search-submit {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 8px;
    transition: color var(--transition-fast);
}

.search-overlay .search-submit:hover {
    color: var(--color-primary);
}

.search-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 8px;
    transition: color var(--transition-fast), transform var(--transition-fast);
    line-height: 1;
}

.search-close:hover,
.search-close:focus {
    color: var(--color-primary);
    transform: rotate(90deg);
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
.mobile-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.15);
    transition: right var(--transition-medium);
    overflow-y: auto;
    z-index: 1060;
}

.mobile-navigation.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px var(--gutter-mobile);
    border-bottom: 1px solid var(--color-gray-200);
    position: sticky;
    top: 0;
    background: var(--color-white);
    z-index: 2;
}

.mobile-menu-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-gray-500);
    cursor: pointer;
    padding: 4px 8px;
    transition: color var(--transition-fast), transform var(--transition-fast);
    line-height: 1;
}

.mobile-menu-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

/* Mobile Search */
.mobile-search {
    padding: 16px var(--gutter-mobile);
    border-bottom: 1px solid var(--color-gray-200);
}

.mobile-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-gray-100);
    border-radius: 6px;
    padding: 4px 8px;
}

.mobile-search-field {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 8px;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: var(--color-gray-800);
    outline: none;
}

.mobile-search-field::placeholder {
    color: var(--color-gray-400);
}

.mobile-search-submit {
    background: none;
    border: none;
    color: var(--color-gray-500);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.mobile-search-submit:hover {
    color: var(--color-primary);
}

/* Mobile Menu */
.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu > li {
    border-bottom: 1px solid var(--color-gray-100);
}

.mobile-menu > li > a {
    display: block;
    padding: 16px var(--gutter-mobile);
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-800);
    text-decoration: none;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.mobile-menu > li > a:hover,
.mobile-menu > li > a:focus {
    color: var(--color-primary);
    background: var(--color-gray-100);
}

.mobile-menu .sub-menu {
    list-style: none;
    background: var(--color-gray-50);
    padding: 4px 0;
    margin: 0;
}

.mobile-menu .sub-menu li a {
    display: block;
    padding: 12px var(--gutter-mobile) 12px calc(var(--gutter-mobile) + 20px);
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-gray-600);
    text-decoration: none;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.mobile-menu .sub-menu li a:hover,
.mobile-menu .sub-menu li a:focus {
    color: var(--color-primary);
    background: var(--color-gray-200);
}

/* Mobile Footer */
.mobile-menu-footer {
    padding: 20px var(--gutter-mobile);
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--color-gray-200);
}

.mobile-youtube-link,
.mobile-subscribe-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 6px;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.mobile-youtube-link {
    background: var(--color-youtube);
    color: var(--color-white);
}

.mobile-youtube-link:hover,
.mobile-youtube-link:focus {
    background: var(--color-youtube-dark);
    transform: translateY(-1px);
}

.mobile-youtube-link svg {
    width: 20px;
    height: 20px;
}

.mobile-subscribe-link {
    background: var(--color-primary);
    color: var(--color-white);
}

.mobile-subscribe-link:hover,
.mobile-subscribe-link:focus {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

/* ============================================================
   MOBILE OVERLAY
   ============================================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Desktop: 993px and above */
@media (min-width: 993px) {
    .menu-toggle {
        display: none !important;
    }
    
    /* Hide button labels on desktop if you want icon-only */
    /* .header-action-btn .btn-label {
        display: none;
    } */
}

/* Tablet: 769px to 992px */
@media (max-width: 992px) {
    .header-top .header-container {
        height: var(--header-top-height-tablet);
    }
    
    /* Show hamburger, hide desktop nav */
    .menu-toggle {
        display: flex !important;
    }
    
    .header-bottom {
        display: none !important;
    }
    
    /* Hide button text labels on tablet, show icons only */
    .header-action-btn .btn-label {
        display: none;
    }
    
    .header-action-btn {
        padding: 10px;
        min-width: 38px;
        min-height: 38px;
    }
    
    .header-subscribe-btn {
        padding: 10px 14px;
    }
    
    .header-subscribe-btn .btn-label {
        display: inline;
    }
    
    .header-search-btn .btn-label,
    .header-youtube-btn .btn-label {
        display: none;
    }
    
    .site-title {
        font-size: 1.25rem;
    }
    
    .custom-logo-link img {
        max-height: 40px;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
}

/* Mobile: up to 768px */
@media (max-width: 768px) {
    .header-top .header-container {
        height: var(--header-top-height-mobile);
        padding: 0 var(--gutter-mobile);
        gap: 12px;
    }
    
    .header-actions {
        gap: 4px;
    }
    
    .header-action-btn {
        padding: 8px;
        min-width: 34px;
        min-height: 34px;
        font-size: 0.7rem;
    }
    
    .header-subscribe-btn {
        padding: 8px 12px;
        font-size: 0.65rem;
    }
    
    .header-youtube-btn svg,
    .header-search-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .site-title {
        font-size: 1.125rem;
    }
    
    .site-description {
        display: none;
    }
    
    .custom-logo-link img {
        max-height: 34px;
    }
    
    .menu-toggle {
        padding: 6px;
    }
    
    .menu-toggle-icon {
        width: 20px;
        gap: 4px;
    }
    
    .menu-toggle .bar {
        height: 2px;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* Small Mobile: up to 480px */
@media (max-width: 480px) {
    .admin-bar .site-header {
        top: 0;
    }
    
    .header-top .header-container {
        height: 52px;
        padding: 0 12px;
        gap: 8px;
    }
    
    .header-actions {
        gap: 2px;
    }
    
    .header-action-btn {
        padding: 6px;
        min-width: 30px;
        min-height: 30px;
        border-radius: 4px;
    }
    
    .header-subscribe-btn {
        padding: 6px 10px;
        font-size: 0.6rem;
        letter-spacing: 0.03em;
    }
    
    .header-youtube-btn svg,
    .header-search-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .site-title {
        font-size: 1rem;
    }
    
    .custom-logo-link img {
        max-height: 28px;
    }
    
    .mobile-navigation {
        width: 100%;
        max-width: 100%;
    }
    
    .search-overlay .search-field {
        font-size: 1.25rem;
        padding: 10px 0;
    }
    
    .search-overlay-inner {
        padding: 0 16px;
    }
    
    .search-close {
        top: 16px;
        right: 16px;
        font-size: 2rem;
    }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.screen-reader-text:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    padding: 12px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    z-index: 9999;
    clip: auto;
    border-radius: 6px;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Scrollbar styling for mobile menu */
.mobile-navigation {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gray-300) var(--color-gray-100);
}

.mobile-navigation::-webkit-scrollbar {
    width: 6px;
}

.mobile-navigation::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}

.mobile-navigation::-webkit-scrollbar-thumb {
    background: var(--color-gray-300);
    border-radius: 3px;
}

.mobile-navigation::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray-400);
}
/* ============================================================
   PAGE BODY OFFSET (account for fixed header + ticker + ribbon)
   ============================================================ */
body { 
  padding-top: 148px; 
} /* ribbon 4 + ticker 28 + header 64 + 4px gap */

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.search-overlay.active { 
  opacity: 1; 
  pointer-events: all; 
}

.search-overlay-inner { 
  width: 100%; 
  max-width: 680px; 
  margin: 0 auto; 
  padding: 0 24px; 
}

.search-overlay input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 32px;
  padding: 12px 0;
  outline: none;
}

.search-overlay input::placeholder { 
  color: rgba(255,255,255,0.4); 
}

.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   HOMEPAGE HERO — VF large editorial feature
   ============================================================ */

/* Override old slideshow */
.corporate-slideshow {
  display: none !important;
}

.vf-homepage-hero {
  width: 100%;
  padding: 0;
  background: var(--bg-white);
  margin-bottom: 0;
}



/* === FEATURED HERO STORY (large image left + text right) === */
.hero-feature {
  display: grid;
  grid-template-columns: 1fr 380px;
  border-bottom: 1px solid var(--border);
}

.hero-feature-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: #111;
}

.hero-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-feature:hover .hero-feature-image img {
  transform: scale(1.02);
}

.hero-feature-image .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
}

.hero-feature-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}

.hero-feature-content .eyebrow {
  margin-bottom: 14px;
  display: block;
}

.hero-feature-content h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-feature-content h1 a:hover { 
  color: var(--accent); 
}

.hero-feature-content .deck {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-feature-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.hero-feature-meta .author { 
  color: var(--text-primary); 
  font-weight: 600; 
}

.hero-feature-meta .sep { 
  color: var(--border); 
}

/* === HERO SECONDARY STORIES (3-up strip below hero) === */
.hero-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}

.hero-secondary-card {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.hero-secondary-card:last-child { 
  border-right: none; 
}

.hero-secondary-card:hover { 
  background: var(--bg-off); 
}

.hero-secondary-card .eyebrow { 
  margin-bottom: 10px; 
}

.hero-secondary-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.hero-secondary-card h3 a:hover { 
  color: var(--accent); 
}

.hero-secondary-card .deck {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ============================================================
   VF-STYLE CONTENT SECTIONS
   ============================================================ */
.vf-section {
  padding: var(--section-gap) 0;
}

.vf-section + .vf-section {
  padding-top: 0;
}

/* Section header (matches VF category headers) */
.vf-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 4px solid var(--accent);
  padding-top: 14px;
  margin-bottom: 32px;
}

.vf-section-header h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.vf-section-header .see-all {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.vf-section-header .see-all:hover { 
  gap: 8px; 
}

/* ============================================================
   MAIN + SIDEBAR LAYOUT (VF content grid)
   ============================================================ */
.vf-content-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: var(--section-gap) 0;
}

/* ============================================================
   CARD GRID — 4-up magazine cards
   ============================================================ */
.vf-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.vf-card-grid.three-up { 
  grid-template-columns: repeat(3, 1fr); 
}

.vf-card-grid.two-up {   
  grid-template-columns: repeat(2, 1fr); 
}

.vf-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  transition: transform 0.25s ease;
}

.vf-card:hover { 
  transform: translateY(-3px); 
}

.vf-card-img {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--bg-off);
  margin-bottom: 14px;
}

.vf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vf-card:hover .vf-card-img img {
  transform: scale(1.04);
}

.vf-card .eyebrow { 
  margin-bottom: 8px; 
}

.vf-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.vf-card h3 a:hover { 
  color: var(--accent); 
}

.vf-card .deck {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.vf-card-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.vf-card-meta .author { 
  color: var(--text-secondary); 
  font-weight: 600; 
}

/* ============================================================
   LIST-STYLE STORY ROWS (VF right column / sidebar list style)
   ============================================================ */
.vf-story-list { 
  display: flex; 
  flex-direction: column; 
  gap: 0; 
}

.vf-story-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.vf-story-row:first-child { 
  border-top: 1px solid var(--border); 
}

.vf-story-row:hover { 
  background: var(--bg-off); 
}

.vf-story-row-img {
  aspect-ratio: 1;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-off);
}

.vf-story-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vf-story-row:hover .vf-story-row-img img { 
  transform: scale(1.05); 
}

.vf-story-row-body { 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  gap: 6px; 
}

.vf-story-row-body h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0;
}

.vf-story-row-body h4 a:hover { 
  color: var(--accent); 
}

.vf-story-row-body .eyebrow { 
  font-size: 9px; 
}

.vf-story-row-body .meta {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   FEATURE PAIR — large + small side by side (VF style)
   ============================================================ */
.vf-feature-pair {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
  padding: var(--section-gap) 0;
}

.vf-feature-lead-img {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
}

.vf-feature-lead-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vf-feature-pair:hover .vf-feature-lead-img img { 
  transform: scale(1.03); 
}

.vf-feature-lead h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.vf-feature-lead h2 a:hover { 
  color: var(--accent); 
}

.vf-feature-lead .deck {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.vf-feature-sidebar { 
  border-left: 1px solid var(--border); 
  padding-left: 32px; 
}

/* ============================================================
   MAGAZINE SHELF — horizontal scrolling strip (VF on mobile)
   ============================================================ */
.vf-shelf {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.vf-shelf::-webkit-scrollbar { 
  display: none; 
}

.vf-shelf .vf-card {
  flex: 0 0 220px;
  transform: none;
}

/* ============================================================
   SIDEBAR WIDGETS (VF right rail)
   ============================================================ */
.sidebar { 
  position: relative; 
}

.sidebar-widget {
  margin-bottom: 40px;
}

/* Most Read / Trending */
.sidebar-widget-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent);
  margin-bottom: 20px;
  color: var(--text-primary);
}

.trending-list { 
  display: flex; 
  flex-direction: column; 
  gap: 0; 
}

.trending-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.trending-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: right;
  letter-spacing: -0.03em;
}

.trending-item:hover .trending-number { 
  color: var(--accent); 
}

.trending-body h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.trending-body h4 a:hover { 
  color: var(--accent); 
}

.trending-body .eyebrow { 
  font-size: 9px; 
}

/* Sidebar Newsletter */
.sidebar-newsletter {
  background: var(--bva-black);
  color: var(--bva-white);
  padding: 28px 24px;
  border-radius: 0;
}

.sidebar-newsletter h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bva-white);
  margin-bottom: 8px;
}

.sidebar-newsletter p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  line-height: 1.55;
}

.sidebar-newsletter input[type="email"] {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 13px;
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
}

.sidebar-newsletter input[type="email"]:focus { 
  border-color: var(--accent); 
}

.sidebar-newsletter input::placeholder { 
  color: rgba(255,255,255,0.4); 
}

.sidebar-newsletter button {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.sidebar-newsletter button:hover { 
  background: var(--accent-hover); 
}

/* Social Follow */
.sidebar-follow { 
  display: flex; 
  gap: 10px; 
  flex-wrap: wrap; 
}

.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.2s;
}

.follow-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ============================================================
   NEWSLETTER BANNER (full-width, inline)
   ============================================================ */
.vf-newsletter-banner {
  background: var(--bva-black);
  color: var(--bva-white);
  padding: 60px 0;
  margin: 0;
}

.vf-newsletter-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.vf-newsletter-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--bva-white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.vf-newsletter-banner h2 em {
  color: var(--accent);
  font-style: italic;
}

.vf-newsletter-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.vf-newsletter-form {
  display: flex;
  gap: 0;
  min-width: 360px;
}

.vf-newsletter-form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-right: none;
  color: #fff;
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
}

.vf-newsletter-form input:focus { 
  border-color: var(--accent); 
}

.vf-newsletter-form input::placeholder { 
  color: rgba(255,255,255,0.4); 
}

.vf-newsletter-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.vf-newsletter-form button:hover { 
  background: var(--accent-hover); 
}

/* ============================================================
   HERO CAPTURE (old section, hidden — replaced by sidebar widget)
   ============================================================ */
.hero-capture { 
  display: none; 
}

/* ============================================================
   AUTHORITY / INTERVIEWS SECTION (override old styles)
   ============================================================ */
.authority-section .container {
  max-width: var(--container-max);
}

/* ============================================================
   PAGE HEADER (About, Contact, etc.)
   ============================================================ */
.page-header {
  background: var(--bva-black);
  padding: 60px 0 50px;
  text-align: center;
  color: var(--bva-white);
  border-bottom: 4px solid var(--accent);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bva-white);
  margin-bottom: 12px;
}

.page-header h1 span { 
  color: var(--accent); 
  font-style: italic; 
}

.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   ARTICLE / SINGLE POST LAYOUT
   ============================================================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  padding: 48px 0;
}

.article-main {}

.article-header { 
  margin-bottom: 32px; 
}

.article-header .eyebrow { 
  margin-bottom: 12px; 
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.article-header .deck {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.article-byline .author {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-byline .date {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-byline .read-time {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
}

.article-hero-img {
  margin-bottom: 28px;
  overflow: hidden;
}

.article-hero-img img { 
  width: 100%; 
}

.article-hero-img figcaption {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.article-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.article-body p { 
  margin-bottom: 22px; 
}

.article-body h2 { 
  font-family: var(--font-display); 
  font-size: 26px; 
  font-weight: 700; 
  margin: 36px 0 18px; 
  color: var(--text-primary); 
}

.article-body h3 { 
  font-family: var(--font-display); 
  font-size: 22px; 
  font-weight: 700; 
  margin: 28px 0 14px; 
  color: var(--text-primary); 
}

.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 0 16px 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
  color: var(--text-primary);
}

/* ============================================================
   RELATED POSTS
   ============================================================ */
.related-posts { 
  padding: var(--section-gap) 0; 
  border-top: 4px solid var(--accent); 
}

.related-posts h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text-primary);
}

/* ============================================================
   FOOTER (VF multi-column editorial footer)
   ============================================================ */
.site-footer {
  background: var(--bva-black) !important;
  color: var(--bva-white) !important;
  padding: 0 !important;
  margin-top: 0 !important;
  border-top: 4px solid var(--accent);
}

.footer-top-bar {
  background: var(--accent);
  text-align: center;
  padding: 10px 0;
}

.footer-top-bar p {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--bva-white);
  letter-spacing: 0.02em;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr auto auto !important;
  gap: 48px !important;
  padding: 56px 0 40px !important;
  margin-bottom: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}

/* Column 1 — Logo/About (left, takes available space) */
.footer-columns > .footer-column:nth-child(1) {
  max-width: 380px;
}

/* Columns 2 and 3 — Explore + Connect (compact, pushed to far right) */
.footer-columns > .footer-column:nth-child(2),
.footer-columns > .footer-column:nth-child(3) {
  min-width: 160px;
  max-width: 200px;
}

.footer-column h3,
.footer-column .widget-title,
.footer-column h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--bva-white) !important;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.footer-column h3 span,
.footer-column .widget-title span {
  color: var(--accent) !important;
  font-style: italic;
}

.footer-column p {
  font-size: 13px;
  color: rgba(255,255,255,0.55) !important;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-column .widget-title {
  font-family: var(--font-ui) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  margin-bottom: 18px !important;
  border-bottom: none;
}

.footer-column ul {
  list-style: none !important;
}

.footer-column li {
  margin-bottom: 10px !important;
}

.footer-column a {
  font-size: 13px !important;
  color: rgba(255,255,255,0.65) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  transition: color 0.2s !important;
  padding-left: 0 !important;
}

.footer-column a:hover { 
  color: var(--bva-white) !important;
  padding-left: 0 !important;
}

.footer-bottom {
  padding: 20px 0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px !important;
}

.footer-bottom p {
  font-size: 12px !important;
  color: rgba(255,255,255,0.4) !important;
}

/* ============================================================
   FOOTER: Responsive
   ============================================================ */

/* Large tablet — stack columns */
@media (max-width: 1100px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
  }
  
  /* Logo column spans full width on top */
  .footer-columns > .footer-column:nth-child(1) {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  
  /* Reset the two right columns to equal width */
  .footer-columns > .footer-column:nth-child(2),
  .footer-columns > .footer-column:nth-child(3) {
    min-width: auto;
    max-width: none;
  }
}

/* Mobile — single column */
@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  
  .footer-columns > .footer-column:nth-child(1) {
    grid-column: auto;
  }
}
/* ============================================================
   ABOUT PAGE OVERRIDES
   ============================================================ */
.about-story { 
  padding: var(--section-gap) 0; 
}

.about-story .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* Section title (used on About page values section) */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 48px;
}

.section-title span {
  color: var(--accent);
  font-style: italic;
}

.story-content h2 span { 
  color: var(--accent); 
  font-style: italic; 
}

.story-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  margin-top: 32px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--bg-off);
  padding: 32px 24px;
  border-top: 4px solid var(--accent);
  transition: transform 0.25s ease;
}

.value-card:hover { 
  transform: translateY(-4px); 
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.value-icon i { 
  font-size: 20px; 
  color: #fff; 
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

/* Mission box */
.about-mission { 
  background: var(--bva-black); 
  padding: var(--section-gap) 0; 
}

.mission-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.mission-box h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--bva-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.mission-text { 
  text-align: left; 
  margin-top: 32px; 
}

.mission-text p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}

.mission-quote {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(236,91,29,0.08);
}

.mission-signature { 
  color: rgba(255,255,255,0.5) !important; 
}

.mission-signature span { 
  color: var(--accent) !important; 
}

/* Vision / Promise */
.about-vision, .about-promise { 
  padding: var(--section-gap) 0; 
}

.vision-box, .promise-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-box h2, .promise-box h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.vision-box h2 span, .promise-box h2 span { 
  color: var(--accent); 
  font-style: italic; 
}

.promise-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.promise-item {
  background: var(--bg-off);
  padding: 28px 20px;
  border-top: 3px solid var(--accent);
  text-align: left;
}

.promise-item i {
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 14px;
  display: block;
}

/* ============================================================
   WORDPRESS CUSTOMIZER SUPPORT
   ============================================================ */
.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.gallery-item {
  margin: 0;
}

.gallery-icon img {
  width: 100%;
  height: auto;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large tablet */
@media (max-width: 1100px) {
  .vf-card-grid { 
    grid-template-columns: repeat(3, 1fr); 
  }
  
  .vf-card-grid.three-up { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .values-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .footer-columns { 
    grid-template-columns: 1fr 1fr !important; 
  }
  
  .vf-content-wrap { 
    grid-template-columns: 1fr 260px; 
  }
}

/* Tablet */
@media (max-width: 900px) {
  .hero-feature { 
    grid-template-columns: 1fr; 
  }
  
  .hero-feature-image { 
    min-height: 300px; 
  }
  
  .hero-feature-content { 
    border-left: none; 
    border-top: 1px solid var(--border); 
  }
  
  .hero-secondary { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .hero-secondary-card:nth-child(3) { 
    display: none; 
  }
  
  .vf-content-wrap { 
    grid-template-columns: 1fr; 
  }
  
  .article-layout { 
    grid-template-columns: 1fr; 
  }
  
  .vf-feature-pair { 
    grid-template-columns: 1fr; 
  }
  
  .vf-feature-sidebar { 
    border-left: none; 
    padding-left: 0; 
    border-top: 1px solid var(--border); 
    padding-top: 32px; 
  }
  
  .vf-newsletter-banner-inner { 
    grid-template-columns: 1fr; 
    gap: 28px; 
  }
  
  .vf-newsletter-form { 
    min-width: auto; 
    width: 100%; 
  }
  
  .about-story .story-grid { 
    grid-template-columns: 1fr; 
  }
  
  .promise-items { 
    grid-template-columns: 1fr; 
  }
  
  .footer-columns { 
    grid-template-columns: 1fr 1fr !important; 
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root { 
    --section-gap: 40px; 
  }
  
  body { 
    padding-top: 92px; 
  }
  
  .bva-ticker { 
    display: none; 
  }
  
  .header { 
    top: 4px; 
  }
  
  body { 
    padding-top: 72px; 
  }
  
  .hero-secondary { 
    grid-template-columns: 1fr; 
  }
  
  .hero-secondary-card:nth-child(2),
  .hero-secondary-card:nth-child(3) { 
    display: none; 
  }
  
  .vf-card-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .vf-card-grid.three-up,
  .vf-card-grid.four-up { 
    grid-template-columns: 1fr; 
  }
  
  .values-grid { 
    grid-template-columns: 1fr; 
  }
  
  .footer-columns { 
    grid-template-columns: 1fr !important; 
    gap: 28px !important; 
  }
  
  .vf-newsletter-form { 
    flex-direction: column; 
  }
  
  .story-stats { 
    flex-direction: column; 
    gap: 20px; 
  }
  
  .about-story .story-grid { 
    gap: 32px; 
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { 
    animation-duration: 0.01ms !important; 
    transition-duration: 0.01ms !important; 
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -1000px;
  left: -1000px;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  z-index: 9999;
}

.skip-link:focus {
  top: 10px;
  left: 10px;
}

/* ============================================================
   HEADER — Logo centered, nav below
   ============================================================ */
.header {
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  transition: box-shadow 0.3s ease, top 0.3s ease;
  display: flex;
  flex-direction: column;
}

.header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.header.ticker-hidden {
  top: 4px;
}

/* Logo brand area - centered */
.header-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 12px;
  border-bottom: 1px solid var(--border);
}

.logo a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bva-black);
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
}

.logo span {
  color: var(--accent);
  font-style: italic;
}

/* Custom logo support */
.custom-logo-link {
  display: block;
}

.custom-logo-link img {
  max-height: 60px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* Navbar - below logo */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--gutter);
  max-width: var(--container-max);
  margin: 0 auto;
  height: 52px;
  width: 100%;
  position: relative;
}

/* Primary nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  height: 100%;
}

.nav-menu > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-menu > li > a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Dropdown */
.nav-menu > li:hover .sub-menu,
.nav-menu > li:focus-within .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--bg-white);
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
  list-style: none;
  padding: 8px 0;
}

.nav-menu .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  border-bottom: none;
  transition: background 0.15s, color 0.15s;
}

.nav-menu .sub-menu li a:hover {
  background: var(--bg-off);
  color: var(--accent);
}

/* ============================================================
   ACTION BUTTONS (Right Side)
   ============================================================ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Base Button Style */
.header-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    line-height: 1;
    min-height: 40px;
    box-sizing: border-box;
}

.header-action-btn .btn-label {
    display: inline;
    line-height: 1;
}

/* YouTube Button */
.header-youtube-btn {
    background: var(--color-youtube);
    color: var(--color-white);
}

.header-youtube-btn:hover,
.header-youtube-btn:focus {
    background: var(--color-youtube-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.header-youtube-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Search Button */
.header-search-btn {
    background: var(--color-gray-100);
    color: var(--color-gray-600);
}

.header-search-btn:hover,
.header-search-btn:focus {
    background: var(--color-gray-200);
    color: var(--color-primary);
}

.header-search-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Subscribe Button */
.header-subscribe-btn {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 18px;
}

.header-subscribe-btn:hover,
.header-subscribe-btn:focus {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(236, 91, 29, 0.3);
}

/* Hamburger - positioned at far left of nav on mobile */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  position: absolute;
  left: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
}

.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) { 
  transform: translateY(7px) rotate(45deg); 
}

.hamburger.active .bar:nth-child(2) { 
  opacity: 0; 
}

.hamburger.active .bar:nth-child(3) { 
  transform: translateY(-7px) rotate(-45deg); 
}

/* Mobile nav */
@media (max-width: 900px) {
  .header-brand {
    padding: 16px 0 10px;
  }
  
  .logo a {
    font-size: 1.4rem;
  }
  
  .custom-logo-link img {
    max-height: 48px;
  }
  
  .navbar {
    height: 48px;
    justify-content: flex-start;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 32px 32px;
    gap: 0;
    box-shadow: -4px 0 32px rgba(0,0,0,0.12);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1050;
  }
  
  .nav-menu.active { 
    right: 0; 
  }
  
  .nav-menu > li { 
    width: 100%; 
    height: auto; 
  }
  
  .nav-menu > li > a {
    font-size: 14px;
    padding: 14px 0;
    height: auto;
    border-bottom: 1px solid var(--border);
    border-top: none;
    width: 100%;
  }
  
  .nav-menu .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-top: none;
    opacity: 1;
    transform: none;
    pointer-events: all;
    padding-left: 16px;
  }
  
  .hamburger { 
    display: flex; 
  }
  
  .header-subscribe-btn { 
    display: none; 
  }
  
  .header-actions {
    right: var(--gutter);
  }
}

/* Mobile small */
@media (max-width: 600px) {
  .header-brand {
    padding: 12px 0 8px;
  }
  
  .logo a {
    font-size: 1.2rem;
  }
  
  .custom-logo-link img {
    max-height: 36px;
  }
  
  .navbar {
    height: 44px;
  }
}

/* ============================================================
   FOOTER SOCIAL ICONS (black background variant)
   ============================================================ */
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  transition: all 0.25s ease;
}

.footer-social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(236, 91, 29, 0.35);
}

.footer-social-btn svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   SINGLE POST — Complete Layout
   ============================================================ */

/* Offset for fixed header */
.vf-single-post {
  padding-top: 0;
}

.single .bva-breadcrumb {
  margin-top: 0;
}

/* ============================================================
   SINGLE POST: Article Header (dark bar — VF style)
   ============================================================ */
.single-article-header {
  background: var(--bva-black);
  padding: 48px 0 40px;
  border-bottom: 4px solid var(--accent);
}

.single-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 11px;
  color: var(--accent);
}

.single-article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--bva-white);
  margin-bottom: 18px;
  max-width: 800px;
}

.single-deck {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  max-width: 680px;
}

/* Byline inside dark header */
.single-byline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.single-byline-avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.single-byline-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.single-byline-author {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--bva-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.single-byline-meta {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   SINGLE POST: Hero Image (constrained, centered)
   ============================================================ */
.single-hero-figure {
  padding: 32px 0 0;
  margin: 0;
  background: var(--bg-white);
}

.single-hero-figure .container {
  padding: 0 var(--gutter);
  max-width: 800px;
}

.single-hero-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 450px;
  object-fit: cover;
  margin: 0 auto;
}

.single-hero-caption {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  padding: 12px 0 0;
  letter-spacing: 0.03em;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* ============================================================
   SINGLE POST: Content + Sidebar Layout
   ============================================================ */
.single-content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 48px 0 60px;
}

.single-content-main {
  min-width: 0;
}

/* ============================================================
   SINGLE POST: Article Body Typography
   ============================================================ */
.article-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.78;
  color: var(--text-secondary);
}

.article-body p {
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 40px 0 18px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 14px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.article-body h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--text-primary);
}

.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 18px 24px 18px 28px;
  margin: 36px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-off);
}

.article-body blockquote p {
  margin-bottom: 0;
}

.article-body ul,
.article-body ol {
  margin: 24px 0;
  padding-left: 28px;
}

.article-body li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.article-body ul li {
  list-style: disc;
}

.article-body ol li {
  list-style: decimal;
}

.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.article-body a:hover {
  color: var(--accent-dark);
  text-decoration-thickness: 2px;
}

/* ============================================================
   SINGLE POST: In-Article Images (constrained)
   ============================================================ */
.article-body img {
  max-width: 100%;
  height: auto;
  margin: 24px auto;
  display: block;
}

.article-body img.size-full,
.article-body img.size-large {
  max-height: 500px;
  object-fit: cover;
}

.article-body figure {
  margin: 24px auto;
  max-width: 100%;
}

.article-body figure img {
  max-height: 450px;
  object-fit: cover;
}

.article-body figcaption {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.03em;
  text-align: center;
}

/* WordPress image alignment */
.article-body .alignleft {
  float: left;
  margin: 8px 24px 16px 0;
  max-width: 50%;
}

.article-body .alignright {
  float: right;
  margin: 8px 0 16px 24px;
  max-width: 50%;
}

.article-body .aligncenter {
  margin-left: auto;
  margin-right: auto;
  float: none;
}

.article-body .alignnone {
  margin: 24px 0;
}

/* Clear floats after aligned images */
.article-body::after {
  content: '';
  display: table;
  clear: both;
}

/* Drop cap */
.article-body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.4em;
  float: left;
  line-height: 0.72;
  padding-right: 12px;
  padding-top: 8px;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================================
   SINGLE POST: Article Footer (tags + share)
   ============================================================ */
.single-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  margin-top: 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.single-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.single-tags-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-right: 4px;
}

.single-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-off);
  padding: 6px 14px;
  border-radius: 2px;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.single-tag:hover {
  background: var(--accent);
  color: #fff;
}

/* Share buttons */
.single-share {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.single-share-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-right: 4px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.2s ease;
}

.share-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.share-btn svg {
  width: 15px;
  height: 15px;
  display: block;
}

/* ============================================================
   SINGLE POST: Author Bio (below article)
   ============================================================ */
.single-author-bio {
  display: flex;
  gap: 20px;
  padding: 32px;
  margin-top: 40px;
  background: var(--bg-off);
  border-top: 3px solid var(--accent);
  align-items: flex-start;
}

.single-author-bio-avatar {
  flex-shrink: 0;
}

.single-author-bio-img {
  border-radius: 50%;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 3px solid var(--accent);
  display: block;
}

.single-author-bio-text {
  flex: 1;
}

.single-author-bio-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.single-author-bio-name a {
  color: inherit;
}

.single-author-bio-name a:hover {
  color: var(--accent);
}

.single-author-bio-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================================
   SINGLE POST: Related Posts
   ============================================================ */
.single-related {
  padding-top: 48px;
  margin-top: 48px;
  border-top: 4px solid var(--accent);
}

.single-related h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

/* ============================================================
   SINGLE POST: Paginated Posts
   ============================================================ */
.post-pagination {
  font-family: var(--font-ui);
  font-size: 13px;
  margin-top: 32px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

.post-pagination-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 8px;
  color: var(--text-secondary);
}

.post-pagination a {
  color: var(--accent);
  font-weight: 600;
}

.post-pagination a:hover {
  text-decoration: underline;
}

.post-pagination-sep {
  color: var(--border);
  margin: 0 4px;
}

/* ============================================================
   SINGLE POST: Sidebar
   ============================================================ */
.single-sidebar {
  position: sticky;
  top: 160px;
  align-self: start;
}

/* ============================================================
   SINGLE POST: Responsive
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .single-content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .single-sidebar {
    position: static;
    top: auto;
  }

  .single-article-header {
    padding: 36px 0 32px;
  }

  .single-article-header h1 {
    font-size: clamp(24px, 5vw, 36px);
  }

  .single-deck {
    font-size: 18px;
  }

  .single-footer {
    flex-direction: column;
    gap: 18px;
  }

  .single-tags {
    flex: none;
  }

  .single-share {
    flex: none;
  }

  /* Images */
  .single-hero-figure .container {
    max-width: 100%;
    padding: 0 var(--gutter);
  }

  .single-hero-img {
    max-height: 350px;
  }

  .article-body img.size-full,
  .article-body img.size-large {
    max-height: 380px;
  }

  .article-body figure img {
    max-height: 350px;
  }

  .article-body .alignleft,
  .article-body .alignright {
    float: none;
    margin: 20px auto;
    max-width: 100%;
    display: block;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .single-article-header {
    padding: 28px 0 24px;
  }

  .single-article-header h1 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .single-deck {
    font-size: 16px;
  }

  .single-content-layout {
    padding: 32px 0 48px;
    gap: 32px;
  }

  .article-body {
    font-size: 16px;
    line-height: 1.7;
  }

  .article-body h2 {
    font-size: 22px;
    margin: 32px 0 14px;
  }

  .article-body h3 {
    font-size: 19px;
  }

  .article-body blockquote {
    font-size: 18px;
    padding: 14px 16px 14px 20px;
  }

  .article-body > p:first-of-type::first-letter {
    font-size: 3.2em;
    padding-right: 8px;
    padding-top: 6px;
  }

  .single-author-bio {
    flex-direction: column;
    padding: 24px;
    gap: 14px;
  }

  /* Images */
  .single-hero-figure {
    padding: 20px 0 0;
  }

  .single-hero-img {
    max-height: 250px;
  }

  .single-hero-caption {
    font-size: 11px;
    padding: 8px 0 0;
  }

  .article-body img.size-full,
  .article-body img.size-large {
    max-height: 280px;
  }

  .article-body figure img {
    max-height: 260px;
  }
}

/* ============================================================
   CATEGORY ARCHIVE
   ============================================================ */

/* Category Header */
.category-header {
  background: var(--bva-black);
  padding: 52px 0 44px;
  border-bottom: 4px solid var(--accent);
  text-align: center;
  margin-bottom: 0;
}

.category-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
}

.category-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--bva-white);
  margin-bottom: 12px;
}

.category-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Category Lead Story */
.category-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.category-lead-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
  display: block;
}

.category-lead-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-lead:hover .category-lead-image img {
  transform: scale(1.03);
}

.category-lead-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-off);
  min-height: 300px;
}

.category-lead-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}

.category-lead-content .eyebrow {
  margin-bottom: 14px;
  display: block;
}

.category-lead-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.category-lead-content h2 a:hover {
  color: var(--accent);
}

.category-lead-content .deck {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.category-lead-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.category-lead-meta .author {
  color: var(--text-primary);
  font-weight: 600;
}

.category-lead-meta .sep {
  color: var(--border);
}

/* Sub-Categories Section */
.category-subcategories {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 4px solid var(--accent);
}

.category-subcategories h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.category-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.category-sub-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: var(--bg-off);
  border-top: 3px solid var(--accent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-sub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.category-sub-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.category-sub-count {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Empty State */
.category-empty {
  text-align: center;
  padding: 80px 20px;
}

.category-empty h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.category-empty p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.category-back-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bva-white);
  background: var(--accent);
  padding: 12px 24px;
  border-radius: 2px;
  transition: background 0.2s;
}

.category-back-btn:hover {
  background: var(--accent-dark);
  color: var(--bva-white);
}

/* Category Pagination */
.category-main .pagination,
.category-main .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.category-main .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-off);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.category-main .page-numbers.current {
  background: var(--accent);
  color: #fff;
}

.category-main .page-numbers:hover:not(.current) {
  background: var(--border);
  color: var(--text-primary);
}

.category-main .page-numbers.next,
.category-main .page-numbers.prev {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 18px;
  background: transparent;
  border: 1px solid var(--border);
}

.category-main .page-numbers.next:hover,
.category-main .page-numbers.prev:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ============================================================
   CATEGORY ARCHIVE: Responsive
   ============================================================ */
@media (max-width: 900px) {
  .category-header {
    padding: 40px 0 36px;
  }

  .category-lead {
    grid-template-columns: 1fr;
  }

  .category-lead-content {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 28px 24px;
  }

  .category-lead-image {
    aspect-ratio: 16 / 9;
  }

  .category-lead-placeholder {
    min-height: 220px;
  }
}

@media (max-width: 600px) {
  .category-header {
    padding: 32px 0 28px;
  }

  .category-header h1 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .category-description {
    font-size: 14px;
  }

  .category-lead-content {
    padding: 24px 16px;
  }

  .category-lead-content h2 {
    font-size: 20px;
  }

  .category-sub-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-empty {
    padding: 56px 16px;
  }

  .category-empty h2 {
    font-size: 22px;
  }
}

/* ============================================================
   ABOUT PAGE: Additional Elements
   ============================================================ */

/* Story image */
.story-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-story:hover .story-image img {
  transform: scale(1.03);
}

/* Value card SVG icons */
.value-icon svg {
  color: #fff;
  display: block;
}

/* Promise item SVG icons */
.promise-icon {
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.promise-icon svg {
  display: block;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Contact Info Cards Grid */
.contact-info {
  padding: var(--section-gap) 0;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--bg-off);
  padding: 32px 24px;
  text-align: center;
  border-top: 3px solid var(--accent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: rgba(236, 91, 29, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.contact-icon svg {
  color: var(--accent);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.contact-link {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--accent-dark);
}

.contact-card address {
  font-style: normal;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 10px;
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 18px;
  background: #25D366;
  color: #fff;
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background: #1da851;
  color: #fff;
}

.btn-whatsapp svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Contact Form Section */
.contact-form-section {
  padding: var(--section-gap) 0;
  background: var(--bg-off);
}

.form-map-grid {
  max-width: 720px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 48px;
  border-top: 4px solid var(--accent);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.contact-form-wrapper h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.contact-form-wrapper h2 span {
  color: var(--accent);
  font-style: italic;
}

.contact-form-wrapper > p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Form Fields */
.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(236, 91, 29, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  color: var(--text-primary);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group select:invalid {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: var(--accent-dark);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Success Message */
#form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  margin-bottom: 20px;
}

.form-success-icon svg {
  color: var(--accent);
}

#form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

#form-success p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.success-tagline {
  margin-top: 16px;
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
}

/* Error Message */
#form-error {
  text-align: center;
  padding: 32px 20px;
  margin-top: 20px;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.form-error-icon {
  margin-bottom: 16px;
}

.form-error-icon svg {
  color: #dc3545;
}

#form-error h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #dc3545;
  margin-bottom: 8px;
}

#form-error p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.error-details-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Story Tips Section */
.story-tips {
  padding: 48px 0;
  background: var(--bg-white);
}

.story-tips-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--bva-black);
  padding: 36px 40px;
  border-bottom: 4px solid var(--accent);
}

.story-tips-icon {
  flex-shrink: 0;
}

.story-tips-icon svg {
  color: var(--accent);
}

.story-tips-content {
  flex: 1;
}

.story-tips-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--bva-white);
  margin-bottom: 6px;
}

.story-tips-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.tips-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.tips-btn:hover {
  background: var(--accent-dark);
  color: #fff;
}

.tips-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* FAQ Section */
.contact-faq {
  padding: var(--section-gap) 0;
  background: var(--bg-off);
}

.contact-faq h2 {
  text-align: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.contact-faq h2 span {
  color: var(--accent);
  font-style: italic;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  padding: 28px;
  border-top: 3px solid var(--accent);
}

.faq-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   CONTACT PAGE: Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .story-tips-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .story-tips-icon {
    margin-bottom: 4px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-faq h2 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .contact-form-wrapper {
    padding: 24px 16px;
  }

  .tips-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   SEARCH PAGE
   ============================================================ */

/* Search Header */
.search-page-header {
  background: var(--bva-black);
  padding: 52px 0 40px;
  border-bottom: 4px solid var(--accent);
  text-align: center;
}

.search-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  color: var(--accent);
}

.search-page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--bva-white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.search-result-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

/* Inline search form in header */
.search-page-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
}

.search-page-form input[type="search"] {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
}

.search-page-form input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-page-form input[type="search"]:focus {
  outline: none;
  border-color: var(--accent);
}

.search-page-form button {
  background: var(--accent);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.search-page-form button:hover {
  background: var(--accent-dark);
}

/* Search result meta */
.search-result-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.search-post-type-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--bg-off);
  padding: 2px 8px;
  border-radius: 2px;
}

.search-result-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 6px 0 8px;
}

/* No results */
.search-no-results {
  text-align: center;
  padding: 64px 20px;
}

.search-no-results-icon {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.search-no-results h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.search-no-results p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.search-no-results-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.search-action-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  transition: background 0.2s;
}

.search-action-btn:hover {
  background: var(--accent-dark);
  color: #fff;
}

.search-action-btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.search-action-btn-outline:hover {
  background: var(--bg-off);
  color: var(--text-primary);
}

/* Browse categories sidebar widget */
.search-categories-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.search-category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-primary);
  transition: color 0.2s;
}

.search-category-link:hover {
  color: var(--accent);
}

.search-cat-count {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   SUBSCRIBE PAGE
   ============================================================ */

.subscribe-main {
  padding: var(--section-gap) 0;
  background: var(--bg-white);
}

.subscribe-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

/* Form Column */
.subscribe-form-col h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.subscribe-form-col h2 span {
  color: var(--accent);
  font-style: italic;
}

.subscribe-intro {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.subscribe-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.subscribe-form-group label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.subscribe-form-group input,
.subscribe-form-group select {
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.2s;
}

.subscribe-form-group input:focus,
.subscribe-form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(236, 91, 29, 0.08);
}

.subscribe-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.subscribe-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.subscribe-submit-btn:hover {
  background: var(--accent-dark);
}

.subscribe-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.subscribe-form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Success State */
.subscribe-success {
  text-align: center;
  padding: 40px 20px;
}

.subscribe-success-icon {
  margin-bottom: 20px;
  color: var(--accent);
}

.subscribe-success h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.subscribe-success p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.subscribe-back-home {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.subscribe-back-home:hover {
  color: var(--accent-dark);
}

/* Error State */
.subscribe-error {
  text-align: center;
  padding: 20px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  margin-top: 20px;
}

.subscribe-error p {
  font-size: 14px;
  color: #991b1b;
  line-height: 1.6;
}

/* Benefits Column */
.subscribe-benefits-col {
  background: var(--bg-off);
  padding: 36px 32px;
  border-top: 4px solid var(--accent);
}

.subscribe-benefits-col h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(236, 91, 29, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.benefit-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.subscribe-social-proof {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.subscribe-social-proof p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.subscribe-social-proof strong {
  color: var(--accent);
}

/* ============================================================
   SEARCH + SUBSCRIBE: Responsive
   ============================================================ */
@media (max-width: 900px) {
  .subscribe-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .subscribe-benefits-col {
    padding: 28px 24px;
  }

  .search-page-header {
    padding: 40px 0 32px;
  }
}

@media (max-width: 600px) {
  .search-page-header h1 {
    font-size: 24px;
  }

  .search-page-form {
    max-width: 100%;
  }

  .search-no-results {
    padding: 40px 16px;
  }

  .search-no-results-actions {
    flex-direction: column;
    align-items: center;
  }

  .search-action-btn {
    width: 100%;
    text-align: center;
  }

  .subscribe-form-col h2 {
    font-size: 26px;
  }

  .subscribe-benefits-col {
    padding: 24px 16px;
  }
}

/* Banner newsletter success message */
.banner-success-msg {
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  padding: 14px 0;
}

/* ============================================================
   NEWS / ALL ARTICLES PAGE
   ============================================================ */

/* Lead Story */
.news-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.news-lead-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
  display: block;
}

.news-lead-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-lead:hover .news-lead-image img {
  transform: scale(1.03);
}

.news-lead-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-off);
  min-height: 300px;
}

.news-lead-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}

.news-lead-content .eyebrow {
  margin-bottom: 14px;
  display: block;
}

.news-lead-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.news-lead-content h2 a:hover {
  color: var(--accent);
}

.news-lead-content .deck {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.news-lead-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.news-lead-meta .author {
  color: var(--text-primary);
  font-weight: 600;
}

.news-lead-meta .sep {
  color: var(--border);
}

/* Pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-off);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.news-pagination .page-numbers.current {
  background: var(--accent);
  color: #fff;
}

.news-pagination .page-numbers:hover:not(.current) {
  background: var(--border);
  color: var(--text-primary);
}

.news-pagination .page-numbers.next,
.news-pagination .page-numbers.prev {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 18px;
  background: transparent;
  border: 1px solid var(--border);
}

.news-pagination .page-numbers.next:hover,
.news-pagination .page-numbers.prev:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Empty State */
.news-empty {
  text-align: center;
  padding: 80px 20px;
}

.news-empty h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.news-empty p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.news-back-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bva-white);
  background: var(--accent);
  padding: 12px 24px;
  border-radius: 2px;
  transition: background 0.2s;
}

.news-back-btn:hover {
  background: var(--accent-dark);
  color: var(--bva-white);
}

/* ============================================================
   INSIGHTS PAGE
   ============================================================ */

/* Featured Pair Layout */
.insights-featured-pair {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Lead insight */
.insights-feature-lead {
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}

.insights-feature-lead-img {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
  margin-bottom: 20px;
  background: var(--bg-off);
}

.insights-feature-lead-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insights-feature-lead:hover .insights-feature-lead-img img {
  transform: scale(1.03);
}

.insights-feature-lead-content .eyebrow {
  margin-bottom: 12px;
  display: block;
}

.insights-feature-lead-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.insights-feature-lead-content h2 a:hover {
  color: var(--accent);
}

.insights-feature-lead-content .deck {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.insights-feature-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.insights-feature-meta .sep {
  color: var(--border);
}

/* Secondary insights (right column) */
.insights-feature-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 1px solid var(--border);
  padding-left: 28px;
}

.insights-feature-secondary {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.insights-feature-secondary:hover {
  opacity: 0.85;
}

.insights-secondary-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-off);
  flex-shrink: 0;
}

.insights-secondary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insights-feature-secondary:hover .insights-secondary-img img {
  transform: scale(1.05);
}

.insights-feature-secondary h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.insights-feature-secondary h3 a:hover {
  color: var(--accent);
}

.insights-feature-secondary .deck {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}

.insights-feature-secondary .meta {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   NEWS + INSIGHTS: Responsive
   ============================================================ */
@media (max-width: 900px) {
  .news-lead {
    grid-template-columns: 1fr;
  }

  .news-lead-content {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 28px 24px;
  }

  .news-lead-image {
    aspect-ratio: 16 / 9;
  }

  .news-lead-placeholder {
    min-height: 220px;
  }

  .insights-featured-pair {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .insights-feature-sidebar {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 28px;
    flex-direction: row;
    gap: 20px;
  }

  .insights-feature-secondary {
    grid-template-columns: 80px 1fr;
    flex: 1;
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 600px) {
  .news-lead-content {
    padding: 20px 16px;
  }

  .news-lead-content h2 {
    font-size: 20px;
  }

  .insights-feature-sidebar {
    flex-direction: column;
  }

  .insights-feature-secondary {
    grid-template-columns: 70px 1fr;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }

  .news-pagination .page-numbers {
    min-width: 34px;
    height: 34px;
    font-size: 12px;
  }
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

.privacy-content {
  padding: var(--section-gap) 0;
  background: var(--bg-white);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

/* ============================================================
   TABLE OF CONTENTS (sidebar)
   ============================================================ */
.privacy-toc {
  position: sticky;
  top: 160px;
  background: var(--bg-off);
  padding: 24px;
  border-top: 3px solid var(--accent);
}

.privacy-toc h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.privacy-toc ul {
  list-style: none;
}

.privacy-toc li {
  margin-bottom: 8px;
}

.privacy-toc a {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  display: block;
  padding: 4px 0;
}

.privacy-toc a:hover {
  color: var(--accent);
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.privacy-main {
  min-width: 0;
}

.privacy-intro {
  background: var(--bg-off);
  padding: 20px 24px;
  margin-bottom: 36px;
  border-left: 4px solid var(--accent);
}

.privacy-intro p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.privacy-intro p:last-child {
  margin-bottom: 0;
}

.privacy-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.privacy-section h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  margin-top: 24px;
}

.privacy-section h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.privacy-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.privacy-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.privacy-section li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.privacy-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-section a:hover {
  color: var(--accent-dark);
}

.privacy-section strong {
  color: var(--text-primary);
}

.privacy-section address {
  font-style: normal;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   THIRD-PARTY SERVICE CARDS
   ============================================================ */
.privacy-service-card {
  background: var(--bg-off);
  padding: 20px 24px;
  margin-bottom: 16px;
  border-top: 3px solid var(--accent);
}

.privacy-service-card h4 {
  margin-bottom: 6px;
}

.privacy-service-card p {
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================================
   CONTACT CARD
   ============================================================ */
.privacy-contact-card {
  background: var(--bg-off);
  padding: 24px 28px;
  margin-top: 20px;
  border-top: 3px solid var(--accent);
}

.privacy-contact-item {
  margin-bottom: 14px;
}

.privacy-contact-item:last-child {
  margin-bottom: 0;
}

.privacy-contact-item strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.privacy-contact-item a,
.privacy-contact-item address {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.privacy-contact-item a:hover {
  color: var(--accent);
}

/* ============================================================
   PRIVACY PAGE: Responsive
   ============================================================ */
@media (max-width: 900px) {
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .privacy-toc {
    position: static;
    top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 20px;
    align-items: baseline;
  }

  .privacy-toc h3 {
    margin-bottom: 0;
    margin-right: 8px;
    font-size: 14px;
  }

  .privacy-toc ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .privacy-toc li {
    margin-bottom: 0;
  }

  .privacy-toc a {
    font-size: 11px;
    padding: 4px 10px;
    background: var(--bg-white);
    border-radius: 2px;
  }

  .privacy-section h2 {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .privacy-intro {
    padding: 16px;
  }

  .privacy-section h2 {
    font-size: 20px;
  }

  .privacy-section h3 {
    font-size: 16px;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 14px;
  }

  .privacy-service-card {
    padding: 16px;
  }

  .privacy-contact-card {
    padding: 20px;
  }

  .privacy-toc ul {
    flex-direction: column;
    gap: 0;
  }
}

/* ============================================================
   AUTHOR ARCHIVE
   ============================================================ */

/* Author Header */
.author-header {
  background: var(--bva-black);
  padding: 48px 0 40px;
  border-bottom: 4px solid var(--accent);
}

.author-header-inner {
  display: flex;
  gap: 28px;
  align-items: center;
}

.author-header-avatar {
  flex-shrink: 0;
}

.author-header-avatar img {
  border-radius: 50%;
  border: 3px solid var(--accent);
  display: block;
}

.author-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
}

.author-header-info h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--bva-white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.author-position {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.author-bio {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 16px;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.author-post-count {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.author-post-count strong {
  color: var(--bva-white);
  font-size: 16px;
}

.author-social-links {
  display: flex;
  gap: 8px;
}

.author-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}

.author-social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Author Posts Section */
.author-posts-main {
  padding-top: 8px;
}

.author-empty {
  text-align: center;
  padding: 64px 20px;
}

.author-empty h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.author-empty p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.author-back-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bva-white);
  background: var(--accent);
  padding: 12px 24px;
  border-radius: 2px;
  transition: background 0.2s;
}

.author-back-btn:hover {
  background: var(--accent-dark);
  color: var(--bva-white);
}

/* ============================================================
   AUTHOR PAGE: Responsive
   ============================================================ */
@media (max-width: 900px) {
  .author-header-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .author-header-avatar img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

  .author-bio {
    margin-left: auto;
    margin-right: auto;
  }

  .author-meta {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .author-header {
    padding: 32px 0 28px;
  }

  .author-header-info h1 {
    font-size: 24px;
  }

  .author-header-avatar img {
    width: 64px;
    height: 64px;
  }
}

/* ============================================================
   404 PAGE
   ============================================================ */

.four-oh-four-content {
  padding: var(--section-gap) 0;
  background: var(--bg-white);
}

.four-oh-four-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* Large 404 number */
.four-oh-four-number {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.four-oh-four-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.four-oh-four-inner > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Action buttons */
.four-oh-four-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.four-oh-four-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.four-oh-four-btn-primary {
  background: var(--accent);
  color: #fff;
}

.four-oh-four-btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.four-oh-four-btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.four-oh-four-btn-outline:hover {
  background: var(--bg-off);
  color: var(--text-primary);
  border-color: var(--text-muted);
}

/* Search form */
.four-oh-four-search {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.four-oh-four-search h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.four-oh-four-search-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}

.four-oh-four-search-form input[type="search"] {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-right: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-white);
}

.four-oh-four-search-form input[type="search"]:focus {
  outline: none;
  border-color: var(--accent);
}

.four-oh-four-search-form input[type="search"]::placeholder {
  color: var(--text-muted);
}

.four-oh-four-search-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}

.four-oh-four-search-form button:hover {
  background: var(--accent-dark);
}

/* Suggested links */
.four-oh-four-suggestions h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.four-oh-four-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.four-oh-four-links a {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 18px;
  background: var(--bg-off);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.four-oh-four-links a:hover {
  background: var(--accent);
  color: #fff;
}

/* ============================================================
   404 PAGE: Responsive
   ============================================================ */
@media (max-width: 600px) {
  .four-oh-four-number {
    font-size: 72px;
  }

  .four-oh-four-inner h2 {
    font-size: 20px;
  }

  .four-oh-four-actions {
    flex-direction: column;
    align-items: center;
  }

  .four-oh-four-btn {
    width: 100%;
    text-align: center;
    max-width: 280px;
  }

  .four-oh-four-search-form {
    max-width: 100%;
  }

  .four-oh-four-links {
    flex-direction: column;
    gap: 8px;
  }

  .four-oh-four-links a {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   COMMENTS
   ============================================================ */
.comments-area {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 4px solid var(--accent);
}

.comments-header {
  margin-bottom: 28px;
}

.comments-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

/* Comments List */
.comments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comments-list > li {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.comments-list > li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Nested replies */
.comments-list .children {
  list-style: none;
  padding-left: 32px;
  margin-top: 24px;
  border-left: 3px solid var(--bg-off);
}

.comment-body {
  display: flex;
  gap: 16px;
}

.comment-avatar {
  flex-shrink: 0;
}

.comment-avatar-img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
  display: block;
}

.comment-content {
  flex: 1;
  min-width: 0;
}

.comment-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.comment-author {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.comment-author a {
  color: var(--text-primary);
}

.comment-author a:hover {
  color: var(--accent);
}

.comment-date {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comment-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}

.comment-text p {
  margin-bottom: 12px;
}

.comment-text p:last-child {
  margin-bottom: 0;
}

.comment-awaiting-moderation {
  font-style: italic;
  color: var(--accent);
  font-size: 13px;
}

.comment-reply a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.comment-reply a:hover {
  color: var(--accent-dark);
}

/* Comments Pagination */
.comments-pagination {
  margin: 24px 0;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
}

.comments-pagination .page-numbers {
  display: inline-block;
  padding: 6px 12px;
  color: var(--text-secondary);
}

.comments-pagination .page-numbers.current {
  color: var(--accent);
}

/* Closed Comments */
.comments-closed {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 24px;
}

/* ============================================================
   COMMENT FORM
   ============================================================ */
.comment-respond {
  margin-top: 40px;
  padding: 32px;
  background: var(--bg-off);
  border-top: 3px solid var(--accent);
}

.comment-reply-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.comment-reply-title span {
  color: var(--accent);
  font-style: italic;
}

.comment-form {
  margin-top: 20px;
}

.comment-form-comment {
  margin-bottom: 16px;
}

.comment-form-comment textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  resize: vertical;
  min-height: 120px;
}

.comment-form-comment textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.comment-form-comment textarea::placeholder {
  color: var(--text-muted);
}

.comment-form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.comment-form-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
}

.comment-form-field input:focus {
  outline: none;
  border-color: var(--accent);
}

.comment-form-field input::placeholder {
  color: var(--text-muted);
}

.comment-submit-btn {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bva-white);
  background: var(--accent);
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.comment-submit-btn:hover {
  background: var(--accent-dark);
}

/* ============================================================
   GENERIC ARCHIVE
   ============================================================ */
.archive-empty {
  text-align: center;
  padding: 64px 20px;
}

.archive-empty h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.archive-empty p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.archive-back-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bva-white);
  background: var(--accent);
  padding: 12px 24px;
  border-radius: 2px;
  transition: background 0.2s;
}

.archive-back-btn:hover {
  background: var(--accent-dark);
  color: var(--bva-white);
}

/* ============================================================
   COMMENTS + ARCHIVE: Responsive
   ============================================================ */
@media (max-width: 600px) {
  .comment-form-row {
    grid-template-columns: 1fr;
  }

  .comment-respond {
    padding: 24px 16px;
  }

  .comments-list .children {
    padding-left: 16px;
  }
}

/* ============================================================
   HERO CONTENT LOGO
   ============================================================ */
.hero-content-logo {
  margin-bottom: 18px;
}

.hero-logo-img {
  max-width: 280px;
  height: auto;
  display: block;
}

/* ============================================================
   MOBILE: Logo above featured image
   ============================================================ */
@media (max-width: 900px) {
    /* Make hero feature a single column so logo can go above image */
    .hero-feature {
        grid-template-columns: 1fr;
    }

    /* Hide the logo from its original position in content */
    .hero-feature-content .hero-content-logo {
        display: none;
    }

    /* Create a duplicate logo display above the image */
    .hero-feature-image {
        position: relative;
        min-height: auto;
    }

    /* Add logo overlay on top of the featured image */
    .hero-feature-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px; /* Adjust based on your logo size */
        background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
        z-index: 2;
    }

    /* Actually, let's use a better approach - inject the logo via the hero overlay */
    .hero-overlay {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 16px;
        z-index: 3;
    }

    /* Add a pseudo-element for the logo image */
    .hero-overlay::after {
        content: '';
        display: block;
        width: 200px;
        height: 50px;
        background-image: url('../logo-bva.jpeg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
        z-index: 3;
    }
}

/* ============================================================
   MOBILE: Logo above featured image
   ============================================================ */
@media (max-width: 900px) {
    /* Keep original logo visible (remove if you had hidden it) */
    .hero-feature-content .hero-content-logo {
        display: block;
    }

    /* Use CSS Grid order to rearrange */
    .hero-feature {
        display: flex;
        flex-direction: column;
    }

    /* Pull the logo out of content and place it first */
    .hero-feature-content .hero-content-logo {
        order: -1;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-feature-content .hero-content-logo .hero-logo-img {
        max-width: 220px;
        margin: 0 auto;
    }

    /* Content comes after */
    .hero-feature-content {
        padding: 24px 20px;
        border-left: none;
        border-top: 1px solid var(--border);
    }
}

@media (max-width: 600px) {
    .hero-feature-content .hero-content-logo .hero-logo-img {
        max-width: 180px;
    }
}

/* ============================================================
   MOBILE LOGO ABOVE FEATURED IMAGE
   ============================================================ */

/* Hide mobile logo on desktop */
.hero-logo-mobile {
    display: none;
}

/* Hide desktop logo on mobile */
@media (max-width: 900px) {
    .hero-feature-content .hero-content-logo {
        display: none;
    }

    .hero-logo-mobile {
        display: block;
        text-align: center;
        padding: 24px 20px 16px;
        background: var(--bg-white);
    }

    .hero-logo-mobile .hero-logo-img {
        max-width: 220px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 600px) {
    .hero-logo-mobile {
        padding: 20px 16px 12px;
    }

    .hero-logo-mobile .hero-logo-img {
        max-width: 180px;
    }
}