/* =========================================
   VARIABLES & RESETS
   ========================================= */
   :root {
    --primary: #0F2C59; /* Deep Navy */
    --accent: #98C93C;  /* Soft Kiwi Green */
    --accent-hover: #7ea831;
    --bg: #F9FAFB;      /* Light Grey / Off-white */
    --surface: #FFFFFF;
    --text-main: #333333; /* Dark Charcoal */
    --text-light: #5a6575; /* Softer, elegant text color */
    --border: #E5E7EB;
    
    /* Premium Supporting Colors */
    --powder-blue: #E0F2FE;
    --warm-cream: #FFFDF0;
    --pale-green: #F0FDF4;
    --mist-gradient: linear-gradient(180deg, rgba(249,250,251,1) 0%, rgba(224,242,254,0.3) 100%);
    
    /* Upgraded Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  
  h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  /* =========================================
     GLOBAL ANIMATION UTILITIES
     ========================================= */
  .home-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .home-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* =========================================
     BUTTONS
     ========================================= */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
  }
  
  .btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }
  
  .btn-primary {
    background-color: var(--accent);
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(152, 201, 60, 0.3);
  }
  
  .btn-secondary {
    background-color: #fff;
    color: var(--primary);
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  }
  
  .btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 44, 89, 0.08);
  }
  
  /* =========================================
     HEADER & NAVIGATION
     ========================================= */
  .header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
    box-shadow: 0 12px 40px -18px rgba(15, 44, 89, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
  }
  
  .header.scrolled {
    box-shadow: 0 20px 50px -20px rgba(15, 44, 89, 0.35);
    border-bottom-color: transparent;
    background-color: rgba(255, 255, 255, 0.95);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
  }
  
  .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
  }
  
  .logo span {
    color: var(--accent);
  }
  
  .nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }
  
  .nav-links a {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.95rem;
  }
  
  .nav-links a:not(.btn):hover, 
  .nav-links a:not(.btn).active {
    color: var(--primary);
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
    background: transparent;
    border: none;
    padding: 0;
    line-height: 1;
    font: inherit;
  }
  
  /* =========================================
     CARDS & GRIDS (GLOBAL UTILITIES)
     ========================================= */
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .card {
    background: var(--surface);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
    transition: var(--transition);
  }
  
  /* =========================================
     SCOPED HOMEPAGE STYLES (.page-home)
     ========================================= */
  
  .page-home .home-section-large { padding: 140px 0; }
  .page-home .home-section-standard { padding: 100px 0; }
  .page-home .home-text-center { text-align: center; }
  .page-home .home-mt-large { margin-top: 4rem; }
  
  .page-home .home-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
  }
  
  .page-home .home-section-header {
    max-width: 650px;
    margin: 0 auto 4rem auto;
  }

  .page-home .home-section-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: var(--primary);
  }
  
  .page-home .home-section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
  }
  
  .page-home .home-section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
  }
  
  /* 1. Home Hero Section (Now assigned to Featured Initiatives HTML) */
  .page-home .home-hero {
    padding: 100px 0 120px;
    background: var(--mist-gradient);
    overflow: hidden;
  }
  
  .page-home .home-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .page-home .home-former-hero {
    position: relative;
    padding: 140px 0 120px;
    background:
      linear-gradient(135deg, rgba(8, 24, 48, 0.82), rgba(15, 44, 89, 0.68)),
      url('../images/image28.jpg') center/cover no-repeat;
    overflow: hidden;
  }

  .page-home .home-former-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 32%),
      radial-gradient(circle at bottom right, rgba(115, 181, 255, 0.2), transparent 28%);
    pointer-events: none;
  }

  .page-home .home-former-hero .container {
    position: relative;
    z-index: 1;
  }

  .page-home .home-former-hero .home-eyebrow,
  .page-home .home-former-hero .home-hero-content h1,
  .page-home .home-former-hero .home-hero-content h2,
  .page-home .home-former-hero .home-hero-content p,
  .page-home .home-former-hero .home-trust-row {
    color: #ffffff;
  }

  .page-home .home-former-hero .home-eyebrow {
    color: rgba(255, 255, 255, 0.82);
  }

  .page-home .home-former-hero .home-trust-row {
    color: rgba(255, 255, 255, 0.88);
  }
  
  .page-home .home-hero-content h1,
  .page-home .home-hero-content h2 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    color: var(--primary);
  }
  
  .page-home .home-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.7;
  }
  
  .page-home .home-hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .page-home .home-trust-row {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
  }
  
  .page-home .trust-icon {
    color: var(--accent);
    font-style: normal;
    font-weight: 700;
    margin-right: 0.25rem;
  }
  
  .page-home .home-hero-visual {
    position: relative;
    width: 100%;
  }
  
  .page-home .home-hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 4.5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(15, 44, 89, 0.25), 0 20px 40px -15px rgba(15, 44, 89, 0.15);
    background: var(--border);
  }
  
  .page-home .home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
  }
  
  .page-home .home-slide.active {
    opacity: 1;
    z-index: 2;
  }
  
  .page-home .home-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
  }
  
  .page-home .home-slide.active img {
    transform: scale(1.05);
  }
  
  .page-home .home-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,44,89,0.7) 0%, rgba(0,0,0,0) 50%);
  }
  
  .page-home .home-slide-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 3;
  }
  
  .page-home .home-slider-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 4;
    display: flex;
    gap: 8px;
  }
  
  .page-home .home-slider-dot {
    width: 30px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .page-home .home-slider-dot.active {
    background: white;
  }
  
  /* Home Mission */
  .page-home .home-mission {
    background: #ffffff;
  }
  
  .page-home .home-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  
  .page-home .home-mission-card {
    background: var(--surface);
    border: 1px solid rgba(15, 44, 89, 0.15);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 12px 36px -12px rgba(15, 44, 89, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
  }
  
  .page-home .home-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px -12px rgba(15, 44, 89, 0.1);
    border-color: rgba(15, 44, 89, 0.3);
  }
  
  .page-home .home-mission-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
  }
  
  .page-home .home-mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .page-home .home-mission-card:hover .home-mission-image img {
    transform: scale(1.05);
  }
  
  .page-home .home-mission-card-body {
    padding: 0 0.75rem 0.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .page-home .home-mission-card-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
  }
  
  .page-home .home-mission-card-body p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Home Featured Layout (Now utilizing Home Hero styles for background) */
  .page-home .home-featured-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
  }
  
  .page-home .home-featured-card {
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 36px -12px rgba(15, 44, 89, 0.05);
  }
  
  .page-home .home-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px -12px rgba(15, 44, 89, 0.1);
  }
  
  .page-home .home-featured-card--navy {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
  }
  
  .page-home .home-featured-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
  }
  
  .page-home .home-featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .page-home .home-featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--accent);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .page-home .home-featured-card-body {
    padding: 2.5rem;
  }
  
  .page-home .home-featured-card--navy h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .page-home .home-featured-card--navy p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
  }
  
  .page-home .home-featured-card--navy .home-card-link {
    color: var(--accent);
    font-weight: 600;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
  }
  
  .page-home .home-featured-card--navy .home-card-link:hover {
    color: white;
  }
  
  .page-home .home-featured-card--light {
    background: var(--surface);
    border: 1px solid rgba(15, 44, 89, 0.15);
    padding: 2.5rem;
    justify-content: center;
  }
  
  .page-home .home-featured-card--light h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }
  
  .page-home .home-featured-card--light p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
  }
  
  .page-home .home-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    transition: var(--transition);
  }
  
  .page-home .home-featured-card--light .home-card-link:hover {
    color: var(--accent);
  }
  
  .page-home .home-featured-stacked {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  
  /* Visual Storytelling Section */
  .page-home .home-story-section {
    background: #ffffff;
  }
  
  .page-home .home-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  
  .page-home .home-story-image-wrap {
    position: relative;
  }
  
  .page-home .home-story-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 24px 48px -12px rgba(15, 44, 89, 0.15);
    position: relative;
    z-index: 2;
  }
  
  .page-home .home-story-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--powder-blue);
    border-radius: 24px;
    z-index: 1;
  }
  
  .page-home .home-story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
  }
  
  .page-home .home-story-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
  }
  
  .page-home .home-story-list {
    margin-top: 2rem;
  }
  
  .page-home .home-story-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary);
  }
  
  .page-home .home-story-list span {
    color: var(--accent);
    font-weight: bold;
  }
  
  /* Home Process Timeline */
  .page-home .home-process {
    background: #ffffff;
  }
  
  .page-home .home-process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
  }
  
  .page-home .home-process-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: rgba(15, 44, 89, 0.1);
  }
  
  .page-home .home-process-item {
    position: relative;
    margin-bottom: 3.5rem;
  }
  
  .page-home .home-process-item:last-child {
    margin-bottom: 0;
  }
  
  .page-home .home-process-badge {
    position: absolute;
    left: -59px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    z-index: 2;
    transition: var(--transition);
  }
  
  .page-home .home-process-item:hover .home-process-badge {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
  }
  
  .page-home .home-process-card {
    background: var(--surface);
    border: 1px solid rgba(15, 44, 89, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px -10px rgba(15, 44, 89, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  }
  
  .page-home .home-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px -10px rgba(15, 44, 89, 0.1);
  }
  
  .page-home .home-process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .page-home .home-process-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 0;
  }
  
  /* Home Resources */
  .page-home .home-resources {
    background: #ffffff;
  }
  
  .page-home .home-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  
  .page-home .home-resource-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px -10px rgba(15, 44, 89, 0.05);
    border: 1px solid rgba(15, 44, 89, 0.15);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
  }
  
  .page-home .home-resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px -10px rgba(15, 44, 89, 0.1);
  }
  
  .page-home .home-resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }
  
  .page-home .home-resource-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }
  
  .page-home .home-resource-card:hover h3 {
    color: var(--accent);
  }
  
  .page-home .home-resource-card:hover .home-card-link {
    color: var(--accent);
  }
  
  .page-home .home-flag-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  /* Home CTA */
  .page-home .home-cta {
    background: var(--primary);
    color: white;
  }
  
  .page-home .home-cta h2 {
    color: white;
    font-size: 3.5rem;
    letter-spacing: -1px;
  }
  
  .page-home .home-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
  }
  
  .page-home .home-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .page-home .home-btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .page-home .home-btn-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
  }
  
/* =========================================
     SCOPED STUDENT INITIATIVES STYLES (.page-initiatives)
     ========================================= */
     .page-initiatives .bg-white {
      background-color: #ffffff;
    }
    
    .page-initiatives .initiatives-section-header {
      text-align: center;
      max-width: 650px;
      margin: 0 auto 3.5rem auto;
    }
    
    .page-initiatives .initiatives-section-header h1 {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 1rem;
      color: var(--primary);
    }
  
    .page-initiatives .initiatives-section-header h2 {
      font-size: 2.5rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 1rem;
    }
    
    .page-initiatives .initiatives-section-header p {
      font-size: 1.15rem;
      color: var(--text-light);
    }
  
    .page-initiatives .initiatives-eyebrow {
      display: inline-block;
      font-family: var(--font-heading);
      color: var(--accent);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 1rem;
      font-size: 0.85rem;
    }
    
    /* 1. Hero / Featured Section (New Hero Setup) */
    .page-initiatives .initiatives-hero {
      min-height: 55vh;
      padding: 100px 0;
      background: var(--mist-gradient);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    
    /* 2. Directory Search & Filters */
    .page-initiatives .initiatives-controls {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 3.5rem;
      justify-content: center;
      max-width: 850px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .page-initiatives .search-wrapper {
      flex: 1;
      position: relative;
    }
  
    .page-initiatives .search-icon {
      position: absolute;
      left: 1.25rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-light);
      font-size: 1.1rem;
      z-index: 1;
    }
  
    .page-initiatives .search-wrapper .form-control {
      padding-left: 3.25rem;
      height: 100%;
      box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }
  
    .page-initiatives .filter-wrapper {
      width: 260px;
    }
  
    .page-initiatives .filter-wrapper select.form-control {
      box-shadow: 0 4px 6px rgba(0,0,0,0.02);
      cursor: pointer;
    }
  
    .page-initiatives .no-results-msg {
      text-align: center;
      padding: 4rem 1rem;
      color: var(--text-light);
      background: var(--surface);
      border: 1px dashed var(--border);
      border-radius: 16px;
      display: none;
      grid-column: 1 / -1;
    }
  
    .page-initiatives .no-results-msg h3 {
      margin-bottom: 0.5rem;
      font-size: 1.5rem;
    }
  
    /* Former Hero Section Styles */
    .page-initiatives .initiatives-former-hero {
      overflow: hidden;
    }
  
    .page-initiatives .initiatives-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    
    .page-initiatives .initiatives-hero-content h2 {
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 1.5rem;
    }
    
    .page-initiatives .initiatives-hero-content p {
      font-size: 1.15rem;
      color: var(--text-light);
      margin-bottom: 2.5rem;
      line-height: 1.7;
      max-width: 90%;
    }
    
    .page-initiatives .initiatives-hero-btns {
      display: flex;
      gap: 1rem;
    }
    
    .page-initiatives .initiatives-hero-visual {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      /* Large element shadow hierarchy */
      box-shadow: 0 30px 60px -15px rgba(15, 44, 89, 0.2);
      aspect-ratio: 4 / 3;
    }
    
    .page-initiatives .initiatives-hero-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* Why Join Section */
    .page-initiatives .initiatives-why-section {
      background: var(--pale-green);
    }
    
    .page-initiatives .initiatives-feature-card {
      background: var(--surface);
      border: 1px solid rgba(15, 44, 89, 0.08);
      border-radius: 16px;
      padding: 2.5rem;
      text-align: center;
      /* Light card shadow */
      box-shadow: 0 12px 36px -12px rgba(15, 44, 89, 0.05);
      transition: var(--transition);
    }
    
    .page-initiatives .initiatives-feature-card:hover {
      /* Hover polish */
      transform: translateY(-6px);
      box-shadow: 0 20px 48px -12px rgba(15, 44, 89, 0.1);
    }
    
    .page-initiatives .initiatives-feature-icon {
      font-size: 2.5rem;
      margin-bottom: 1.25rem;
    }
    
    .page-initiatives .initiatives-feature-card h3 {
      font-size: 1.35rem;
      margin-bottom: 0.75rem;
    }
    
    .page-initiatives .initiatives-feature-card p {
      color: var(--text-light);
      font-size: 1rem;
    }
    
    /* Featured & Directory Cards System */
    .page-initiatives .initiatives-featured-layout {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 2.5rem;
    }
    
    .page-initiatives .initiatives-featured-stacked {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }
    
    .page-initiatives .initiatives-card {
      background: var(--surface);
      border-radius: 20px;
      border: 1px solid rgba(15, 44, 89, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      /* Light card shadow */
      box-shadow: 0 12px 36px -12px rgba(15, 44, 89, 0.05);
      transition: var(--transition);
      height: 100%;
    }
    
    .page-initiatives .initiatives-card:hover {
      /* Hover polish */
      transform: translateY(-6px);
      box-shadow: 0 20px 48px -12px rgba(15, 44, 89, 0.1);
    }
    
    .page-initiatives .initiatives-card-image {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: var(--border);
    }
    
    .page-initiatives .initiatives-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    
    .page-initiatives .initiatives-card:hover .initiatives-card-image img {
      /* Image Hover Zoom Polish */
      transform: scale(1.05);
    }
    
    .page-initiatives .initiatives-badge {
      position: absolute;
      top: 1.25rem;
      left: 1.25rem;
      background: var(--accent);
      color: white;
      padding: 0.35rem 0.85rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      z-index: 2;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .page-initiatives .initiatives-card-body {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    
    .page-initiatives .initiatives-card-row {
      flex-direction: row;
    }
    
    .page-initiatives .initiatives-card-row .initiatives-card-image {
      width: 40%;
      aspect-ratio: auto;
    }
    
    .page-initiatives .initiatives-card-row .initiatives-badge {
      position: static;
      display: inline-block;
      background: var(--powder-blue);
      color: var(--primary);
      box-shadow: none;
      margin-bottom: 1rem;
    }
    
    .page-initiatives .initiatives-card h3 {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
      letter-spacing: -0.2px;
    }
    
    .page-initiatives .initiatives-location {
      display: block;
      font-size: 0.85rem;
      color: #6B7280;
      font-weight: 500;
      margin-bottom: 1rem;
    }
    
    .page-initiatives .initiatives-card p {
      color: var(--text-light);
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }
    
    .page-initiatives .initiatives-card-link {
      color: var(--primary);
      font-weight: 600;
      font-size: 0.95rem;
      font-family: var(--font-heading);
      display: inline-flex;
      align-items: center;
      margin-top: auto;
    }
    
    .page-initiatives .initiatives-card-link:hover {
      color: var(--accent);
    }
    
    /* Submission Section Split Layout */
    .page-initiatives .initiatives-submit-section {
      background: #ffffff;
      padding: 6rem 0;
    }
    
    .page-initiatives .initiatives-submit-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    
    .page-initiatives .initiatives-submit-content h2 {
      font-size: 2.5rem;
      margin-bottom: 1.25rem;
      letter-spacing: -0.5px;
    }
    
    .page-initiatives .initiatives-lead-text {
      font-size: 1.15rem;
      color: var(--text-light);
      margin-bottom: 3rem;
    }
    
    .page-initiatives .initiatives-steps {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    
    .page-initiatives .initiatives-step {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }
    
    .page-initiatives .initiatives-step-number {
      background: var(--primary);
      color: white;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      flex-shrink: 0;
      font-family: var(--font-heading);
    }
    
    .page-initiatives .initiatives-step-text h4 {
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
    }
    
    .page-initiatives .initiatives-step-text p {
      font-size: 0.95rem;
      color: var(--text-light);
      margin-bottom: 0;
    }
    
    /* Form Card Styling */
    .page-initiatives .initiatives-form-wrapper {
      background: var(--surface);
      padding: 3rem;
      border-radius: 20px;
      /* Large element shadow hierarchy */
      box-shadow: 0 30px 60px -15px rgba(15, 44, 89, 0.2);
      border: 1px solid rgba(15, 44, 89, 0.05);
    }
    
    .page-initiatives .initiatives-form-title {
      font-size: 1.8rem;
      margin-bottom: 2rem;
      text-align: center;
    }
    
    .page-initiatives .form-group {
      margin-bottom: 1.5rem;
    }
    
    .page-initiatives label {
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--primary);
    }
    
    .page-initiatives .form-control {
      width: 100%;
      padding: 0.9rem 1rem;
      border: 1px solid var(--border);
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--text-main);
      background: var(--bg);
      transition: var(--transition);
    }
  
    .page-initiatives select.form-control {
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' 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 1rem center;
      background-size: 1em;
      padding-right: 2.5rem;
    }
    
    .page-initiatives .form-control:focus {
      outline: none;
      border-color: var(--accent);
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(152, 201, 60, 0.1);
    }
    
    .page-initiatives .w-100 {
      width: 100%;
    }
  
    /* Mobile Overrides Scoped to Page */
    @media (max-width: 1024px) {
      .page-initiatives .initiatives-hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
      .page-initiatives .initiatives-hero-content p { margin: 0 auto 2.5rem auto; }
      .page-initiatives .initiatives-hero-btns { justify-content: center; }
      .page-initiatives .initiatives-featured-layout,
      .page-initiatives .initiatives-submit-layout { grid-template-columns: 1fr; gap: 3rem; }
      .page-initiatives .initiatives-card-row { flex-direction: column; }
      .page-initiatives .initiatives-card-row .initiatives-card-image { width: 100%; aspect-ratio: 16/9; }
    }
  
    @media (max-width: 768px) {
      .page-initiatives .initiatives-hero { padding: 80px 0 60px; }
      .page-initiatives .initiatives-section-header h1 { font-size: 2.8rem; }
      .page-initiatives .initiatives-hero-content h2 { font-size: 2.5rem; }
      .page-initiatives .initiatives-hero-btns { flex-direction: column; }
      .page-initiatives .initiatives-form-wrapper { padding: 2rem 1.5rem; }
      .page-initiatives .initiatives-controls { flex-direction: column; gap: 1rem; }
      .page-initiatives .filter-wrapper { width: 100%; }
    }
  
  /* =========================================
     FOOTER
     ========================================= */
  .footer {
    background-color: #0A1E3F;
    color: #fff;
    padding: 6rem 0 3rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.25fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  
  .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }
  
  .footer-logo span {
    color: var(--accent);
  }
  
  .footer-tagline {
    color: rgba(255,255,255,0.7);
    max-width: 320px;
    margin-top: 1rem;
    line-height: 1.6;
  }
  
  .footer-links h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }

  .footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }

  .footer-col p,
  .footer-col a,
  .footer-brand-col p {
    color: rgba(255,255,255,0.72);
  }

  .footer-col a:hover {
    color: var(--accent);
  }
  
  .footer-links ul li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    color: rgba(255,255,255,0.6);
  }
  
  .footer-links a:hover {
    color: var(--accent);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
  }
  
  /* =========================================
     MOBILE RESPONSIVENESS
     ========================================= */
  @media (max-width: 1024px) {
    .page-home .home-hero-content h1,
    .page-home .home-hero-content h2 { font-size: 3.5rem; }
    .page-home .home-featured-layout { grid-template-columns: 1fr; }
    .page-home .home-story-grid { grid-template-columns: 1fr; gap: 4rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    
    /* Initiatives Overrides */
    .page-initiatives .initiatives-hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .page-initiatives .initiatives-hero-content p { margin: 0 auto 2.5rem auto; }
    .page-initiatives .initiatives-hero-btns { justify-content: center; }
    .page-initiatives .initiatives-featured-layout,
    .page-initiatives .initiatives-submit-layout { grid-template-columns: 1fr; gap: 3rem; }
    .page-initiatives .initiatives-card-row { flex-direction: column; }
    .page-initiatives .initiatives-card-row .initiatives-card-image { width: 100%; aspect-ratio: 16/9; }
  }
  
  @media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-cta-item { display: none; }
    
    .nav-links {
      position: absolute;
      top: 85px;
      left: 0;
      width: 100%;
      background: var(--surface);
      flex-direction: column;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    
    .nav-links.active { max-height: 400px; }
    
    .nav-links li {
      text-align: center;
      padding: 1.25rem 0;
      border-top: 1px solid var(--border);
      width: 100%;
    }
  
    .grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer {
      text-align: center;
    }
    .footer-grid {
      justify-items: center;
      align-items: center;
    }
    .footer-brand-col,
    .footer-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: 360px;
      width: 100%;
    }
    .footer-col ul,
    .footer-brand-col p {
      text-align: center;
    }
    .section, .page-home .home-section-large, .page-home .home-section-standard { padding: 5rem 0; }
  
    /* Home Scoped Overrides */
    .page-home .home-hero { padding: 60px 0 80px; }
    .page-home .home-hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .page-home .home-hero-content h1,
    .page-home .home-hero-content h2 { font-size: 2.8rem; }
    .page-home .home-section-header h1 { font-size: 2.8rem; }
    .page-home .home-hero-content p { margin: 0 auto 2rem auto; }
    .page-home .home-hero-btns { justify-content: center; flex-direction: column; }
    .page-home .home-trust-row { justify-content: center; flex-wrap: wrap; gap: 1rem; }
    .page-home .home-hero-slider { aspect-ratio: 4/3; }
    .page-home .home-slide-caption { bottom: 20px; left: 20px; right: 20px; font-size: 1.2rem; }
    .page-home .home-slider-controls { bottom: 20px; right: 20px; }
    .page-home .home-mission-grid { grid-template-columns: 1fr; gap: 2rem; }
    .page-home .home-resources-grid { grid-template-columns: 1fr; }
    .page-home .home-process-timeline { padding-left: 45px; }
    .page-home .home-process-line { left: 10px; }
    .page-home .home-process-badge { left: -50px; width: 32px; height: 32px; font-size: 0.85rem; }
    .page-home .home-process-card { padding: 1.5rem; }
    .page-home .home-cta h2 { font-size: 2.5rem; }
    .page-home .home-cta-btns { flex-direction: column; }
    
    /* Initiatives Overrides */
    .page-initiatives .initiatives-hero { padding: 80px 0 60px; }
    .page-initiatives .initiatives-hero-content h1 { font-size: 2.8rem; }
    .page-initiatives .initiatives-hero-btns { flex-direction: column; }
    .page-initiatives .initiatives-form-wrapper { padding: 2rem 1.5rem; }
  }

/* =========================================
   SCOPED RESOURCES STYLES (.page-resources)
   ========================================= */

/* Backgrounds & Utilities */
.page-resources .bg-white { background-color: #ffffff; }

.page-resources .resources-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.page-resources .resources-section-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: var(--primary);
}

.page-resources .resources-section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.page-resources .resources-section-header p {
  font-size: 1.15rem;
  color: var(--text-light);
}

.page-resources .resources-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

/* 1. Resources Hero (New) */
.page-resources .resources-hero {
  padding: 100px 0 80px;
  background: var(--mist-gradient);
  overflow: hidden;
}

/* 2. Country Overview Cards (Used inside Hero) */
.page-resources .resources-overview-card {
  background: var(--surface);
  border: 1px solid rgba(15, 44, 89, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 36px -12px rgba(15, 44, 89, 0.05);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
}

.page-resources .resources-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(15, 44, 89, 0.1);
  border-top-color: var(--accent);
}

.page-resources .resources-overview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.page-resources .resources-flag {
  font-size: 2rem;
}

.page-resources .resources-overview-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.page-resources .resources-overview-card p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.page-resources .resources-trait-list {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.page-resources .resources-trait-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 500;
}

.page-resources .resources-trait-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.page-resources .resources-overview-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.page-resources .resources-overview-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.page-resources .resources-overview-link:hover {
  color: var(--accent);
}

.page-resources .resources-overview-link:hover::after {
  transform: translateX(3px);
}

/* 3. Supporting Image Section */
.page-resources .resources-story-section {
  background: var(--bg);
}

.page-resources .resources-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.page-resources .resources-story-visual {
  position: relative;
}

.page-resources .resources-story-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 48px -12px rgba(15, 44, 89, 0.15);
  position: relative;
  z-index: 2;
  aspect-ratio: 4/3;
}

.page-resources .resources-story-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--powder-blue);
  border-radius: 24px;
  z-index: 1;
}

.page-resources .resources-story-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.page-resources .resources-story-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* 4. Guide Accordions Layout */
.page-resources .resources-guides-section {
  padding: 6rem 0;
}

.page-resources .resources-guide-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: flex-start;
  scroll-margin-top: 7rem;
}

.page-resources .resources-guide-row:last-child {
  margin-bottom: 0;
}

.page-resources .resources-guide-intro h2 {
  font-size: 2.2rem;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.page-resources .resources-guide-intro p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Clean Vanilla Accordion Styles */
.page-resources .resources-accordion {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: var(--transition);
}

.page-resources .resources-accordion:hover {
  border-color: rgba(15, 44, 89, 0.3);
}

.page-resources .resources-accordion[open] {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(15, 44, 89, 0.08);
}

.page-resources .resources-accordion summary {
  padding: 1.5rem;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; /* Hide default arrow */
}

.page-resources .resources-accordion summary::-webkit-details-marker {
  display: none; /* Hide default arrow for Safari */
}

.page-resources .accordion-icon {
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.page-resources .resources-accordion[open] summary .accordion-icon {
  transform: rotate(45deg); /* Turns '+' into 'x' */
}

.page-resources .resources-accordion-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  animation: resourcesFadeIn 0.3s ease-in-out;
}

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

/* 5. Quick Comparison Cards */
.page-resources .resources-comparison-section {
  background: var(--pale-green);
  padding: 6rem 0;
}

.page-resources .resources-compare-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 12px 36px -12px rgba(15, 44, 89, 0.05);
  border: 1px solid rgba(15, 44, 89, 0.08);
  transition: var(--transition);
}

.page-resources .resources-compare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(15, 44, 89, 0.1);
}

.page-resources .resources-compare-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
  text-align: center;
}

.page-resources .resources-compare-card ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-resources .resources-compare-card li {
  font-size: 0.95rem;
  color: var(--text-light);
}

.page-resources .resources-compare-card strong {
  color: var(--primary);
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

/* 6. Feature Cards (How These Resources Help) */
.page-resources .resources-features-section {
  background-color: var(--bg);
}

.page-resources .resources-feature-card {
  background: var(--surface);
  border: 1px solid rgba(15, 44, 89, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 12px 36px -12px rgba(15, 44, 89, 0.05);
  transition: var(--transition);
}

.page-resources .resources-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(15, 44, 89, 0.1);
}

.page-resources .resources-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.page-resources .resources-feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.page-resources .resources-feature-card p {
  color: var(--text-light);
  font-size: 1rem;
}

/* 7. Former Hero (Now a standard section layout) */
.page-resources .resources-former-hero {
  overflow: hidden;
  background-color: var(--bg);
}

.page-resources .resources-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-resources .resources-hero-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.page-resources .resources-hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 90%;
}

.page-resources .resources-hero-btns {
  display: flex;
  gap: 1rem;
}

.page-resources .resources-hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(15, 44, 89, 0.2);
  aspect-ratio: 4 / 3;
}

.page-resources .resources-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 8. CTA Section */
.page-resources .resources-cta {
  background: var(--primary);
  color: white;
  padding: 6rem 0;
}

.page-resources .resources-cta-inner {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources .resources-cta h2 {
  color: white;
  font-size: 3rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.page-resources .resources-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.page-resources .resources-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

.page-resources .btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.page-resources .btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .page-resources .resources-hero-grid,
  .page-resources .resources-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .page-resources .resources-hero-content p,
  .page-resources .resources-story-content p {
    margin: 0 auto 2.5rem auto;
  }
  .page-resources .resources-hero-btns {
    justify-content: center;
  }
  .page-resources .resources-story-glow {
    right: 0; left: 0; top: -15px;
  }
  .page-resources .resources-guide-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .page-resources .resources-hero {
    padding: 80px 0 60px;
  }
  .page-resources .resources-section-header h1 {
    font-size: 2.8rem;
  }
  .page-resources .resources-hero-content h2 {
    font-size: 2.8rem;
  }
  .page-resources .resources-hero-btns,
  .page-resources .resources-cta-btns {
    flex-direction: column;
  }
  .page-resources .resources-cta h2 {
    font-size: 2.5rem;
  }
}

/* =========================================
   SCOPED EVENTS STYLES (.page-events)
   ========================================= */

/* Backgrounds & Global Utilities */
.page-events .bg-white { background-color: #ffffff; }

.page-events .events-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.page-events .events-section-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: var(--primary);
}

.page-events .events-section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.page-events .events-section-header p {
  font-size: 1.15rem;
  color: var(--text-light);
}

.page-events .events-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.page-events .events-text-center { text-align: center; }
.page-events .events-mt-auto { margin-top: auto; }

/* 1. Events Hero (New Featured Spotlight) */
.page-events .events-hero {
  min-height: 55vh;
  padding: 100px 0 80px;
  background: var(--mist-gradient);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-events .events-featured-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  background: var(--surface);
  border: 1px solid rgba(15, 44, 89, 0.1);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 16px 48px -12px rgba(15, 44, 89, 0.08);
  align-items: stretch;
}

.page-events .events-featured-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 350px;
}

.page-events .events-featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.page-events .events-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--accent);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-events .events-featured-content {
  padding: 2rem 2rem 2rem 1rem;
  display: flex;
  flex-direction: column;
}

.page-events .events-date-large {
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.page-events .events-featured-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.page-events .events-location {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  background: var(--powder-blue);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
}

.page-events .events-featured-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.page-events .events-highlight-list {
  margin-bottom: 2.5rem;
}

.page-events .events-highlight-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 500;
}

.page-events .events-highlight-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* 2. Events Directory Search & Filters */
.page-events .events-controls {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  justify-content: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.page-events .search-wrapper {
  flex: 1;
  position: relative;
}

.page-events .search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.1rem;
  z-index: 1;
}

.page-events .search-wrapper .form-control {
  padding-left: 3.25rem;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  width: 100%;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.page-events .search-wrapper .form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(152, 201, 60, 0.1);
}

.page-events .filter-wrapper {
  width: 260px;
}

.page-events .filter-wrapper select.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' 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 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
  transition: var(--transition);
}

.page-events .filter-wrapper select.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(152, 201, 60, 0.1);
}

.page-events .no-results-msg {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-light);
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 16px;
  display: none;
  grid-column: 1 / -1;
}

.page-events .no-results-msg h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: var(--primary);
}

/* Events Timeline / Grid Layout */
.page-events .events-card {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(15, 44, 89, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 36px -12px rgba(15, 44, 89, 0.05);
  transition: var(--transition);
  height: 100%;
}

.page-events .events-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(15, 44, 89, 0.1);
}

.page-events .events-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--border);
}

.page-events .events-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.page-events .events-card:hover .events-card-image img {
  transform: scale(1.05);
}

.page-events .events-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.page-events .events-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-events .events-card-date {
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-events .events-card h4 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}

.page-events .events-card-location {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.page-events .events-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.page-events .events-card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  transition: var(--transition);
}

.page-events .events-card-link:hover {
  color: var(--accent);
}

/* 3. "What to Expect" Feature Cards */
.page-events .events-feature-card {
  background: var(--surface);
  border: 1px solid rgba(15, 44, 89, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 12px 36px -12px rgba(15, 44, 89, 0.05);
  transition: var(--transition);
}

.page-events .events-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(15, 44, 89, 0.1);
}

.page-events .events-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.page-events .events-feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.page-events .events-feature-card p {
  color: var(--text-light);
  font-size: 1rem;
}

/* 4. Former Hero Section (Now standard block) */
.page-events .events-former-hero {
  overflow: hidden;
}

.page-events .events-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-events .events-hero-content h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.page-events .events-hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 90%;
}

.page-events .events-hero-btns {
  display: flex;
  gap: 1rem;
}

.page-events .events-hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(15, 44, 89, 0.2);
  aspect-ratio: 4 / 3;
}

.page-events .events-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 5. "Why Attend" Section (Benefits) */
.page-events .events-benefits-section {
  background: var(--pale-green);
}

.page-events .events-why-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px -10px rgba(15, 44, 89, 0.05);
  border: 1px solid rgba(15, 44, 89, 0.08);
  transition: var(--transition);
  text-align: center;
}

.page-events .events-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px -10px rgba(15, 44, 89, 0.1);
}

.page-events .events-why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-events .events-why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.page-events .events-why-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* 6. CTA Section */
.page-events .events-cta {
  background: var(--primary);
  color: white;
  padding: 6rem 0;
}

.page-events .events-cta h2 {
  color: white;
  font-size: 3rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.page-events .events-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.page-events .events-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.page-events .btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.page-events .btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* Mobile & Tablet Overrides */
@media (max-width: 1024px) {
  .page-events .events-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .page-events .events-hero-content p {
    margin: 0 auto 2.5rem auto;
  }
  .page-events .events-hero-btns {
    justify-content: center;
  }
  .page-events .events-featured-layout {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .page-events .events-featured-visual {
    min-height: 250px;
  }
  .page-events .events-featured-content {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .page-events .events-hero {
    padding: 80px 0 60px;
  }
  .page-events .events-section-header h1 {
    font-size: 2.8rem;
  }
  .page-events .events-hero-content h2 {
    font-size: 2.5rem;
  }
  .page-events .events-hero-btns,
  .page-events .events-cta-btns {
    flex-direction: column;
  }
  .page-events .events-cta h2 {
    font-size: 2.5rem;
  }
  .page-events .events-controls { 
    flex-direction: column; 
    gap: 1rem; 
  }
  .page-events .filter-wrapper { 
    width: 100%; 
  }
}

/* =========================================
   SCOPED QUESTIONS STYLES (.page-questions)
   ========================================= */

/* Utilities & Globals */
.page-questions .bg-white { background-color: #ffffff; }

.page-questions .questions-section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
}

.page-questions .questions-section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.page-questions .questions-section-header p {
  font-size: 1.15rem;
  color: var(--text-light);
}

.page-questions .questions-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

/* 1. Hero Section (Now Submit Your Question) */
.page-questions .questions-hero {
  min-height: 55vh;
  padding: 100px 0;
  background: var(--mist-gradient);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-questions .questions-submit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.page-questions .questions-submit-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.page-questions .questions-lead-text {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.page-questions .questions-highlight-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-questions .questions-highlight-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}

.page-questions .questions-highlight-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Form Styles */
.page-questions .questions-form-wrapper {
  background: var(--surface);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 30px 60px -15px rgba(15, 44, 89, 0.2);
  border: 1px solid rgba(15, 44, 89, 0.05);
}

.page-questions .form-group {
  margin-bottom: 1.5rem;
}

.page-questions label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.page-questions .form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  background: var(--bg);
  transition: var(--transition);
}

.page-questions select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' 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 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

.page-questions .form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(152, 201, 60, 0.1);
}

/* 2. Process Vertical Timeline Section */
.page-questions .questions-process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 60px;
}

.page-questions .questions-process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: rgba(15, 44, 89, 0.1);
}

.page-questions .questions-process-item {
  position: relative;
  margin-bottom: 3.5rem;
}

.page-questions .questions-process-item:last-child {
  margin-bottom: 0;
}

.page-questions .questions-process-badge {
  position: absolute;
  left: -59px;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  z-index: 2;
  transition: var(--transition);
}

.page-questions .questions-process-item:hover .questions-process-badge {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.page-questions .questions-process-card {
  background: var(--surface);
  border: 1px solid rgba(15, 44, 89, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px -10px rgba(15, 44, 89, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.page-questions .questions-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px -10px rgba(15, 44, 89, 0.1);
}

.page-questions .questions-process-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.page-questions .questions-process-card p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* 3. Former Hero (Now standard block layout) */
.page-questions .questions-former-hero {
  overflow: hidden;
}

.page-questions .questions-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-questions .questions-hero-content h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.page-questions .questions-hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 90%;
}

.page-questions .questions-hero-btns {
  display: flex;
  gap: 1rem;
}

.page-questions .questions-hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(15, 44, 89, 0.2);
  aspect-ratio: 4 / 3;
}

.page-questions .questions-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 4. FAQ Section */
.page-questions .questions-faq-section {
  background: var(--pale-green);
}

.page-questions .questions-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-questions .questions-accordion {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: var(--transition);
}

.page-questions .questions-accordion:hover {
  border-color: rgba(15, 44, 89, 0.3);
}

.page-questions .questions-accordion[open] {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(15, 44, 89, 0.08);
}

.page-questions .questions-accordion summary {
  padding: 1.5rem;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; /* Hide default arrow */
}

.page-questions .questions-accordion summary::-webkit-details-marker {
  display: none; /* Hide default arrow for Safari */
}

.page-questions .accordion-icon {
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.page-questions .questions-accordion[open] summary .accordion-icon {
  transform: rotate(45deg); /* Turns '+' into 'x' */
}

.page-questions .questions-accordion-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  animation: questionsFadeIn 0.3s ease-in-out;
}

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

/* 5. What Can You Ask Us? Section */
.page-questions .questions-feature-card {
  background: var(--surface);
  border: 1px solid rgba(15, 44, 89, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 12px 36px -12px rgba(15, 44, 89, 0.05);
  transition: var(--transition);
}

.page-questions .questions-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(15, 44, 89, 0.1);
}

.page-questions .questions-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.page-questions .questions-feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.page-questions .questions-feature-card p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0;
}

/* 6. Centered Bottom CTA Section */
.page-questions .questions-cta {
  background: var(--primary);
  color: white;
  padding: 6rem 0;
}

.page-questions .questions-cta-inner {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-questions .questions-cta-inner h2 {
  color: white;
  font-size: 3rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.page-questions .questions-cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.page-questions .questions-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

.page-questions .btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.page-questions .btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* Responsive Overrides for Questions Page */
@media (max-width: 1024px) {
  .page-questions .questions-hero-grid,
  .page-questions .questions-submit-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .page-questions .questions-hero-content p {
    margin: 0 auto 2.5rem auto;
  }
  .page-questions .questions-hero-btns {
    justify-content: center;
  }
  .page-questions .questions-highlight-list {
    align-items: center;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-questions .questions-hero {
    padding: 80px 0 60px;
  }
  .page-questions .questions-submit-content h1 {
    font-size: 2.8rem;
  }
  .page-questions .questions-hero-content h2 {
    font-size: 2.8rem;
  }
  .page-questions .questions-hero-btns,
  .page-questions .questions-cta-btns {
    flex-direction: column;
  }
  .page-questions .questions-cta-inner h2 {
    font-size: 2.5rem;
  }
  .page-questions .questions-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  /* Mobile Timeline Overrides */
  .page-questions .questions-process-timeline {
    padding-left: 45px;
  }
  .page-questions .questions-process-line {
    left: 10px;
  }
  .page-questions .questions-process-badge {
    left: -50px;
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  .page-questions .questions-process-card {
    padding: 1.5rem;
  }
}

/* =========================================
   SCOPED ABOUT STYLES (.page-about)
   ========================================= */

/* Utilities & Globals */
.page-about .about-section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
}

.page-about .about-section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.page-about .about-section-header p {
  font-size: 1.15rem;
  color: var(--text-light);
}

.page-about .about-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

/* 1. Hero Section */
.page-about .about-hero {
  min-height: 55vh;
  padding: 100px 0;
  background: var(--mist-gradient);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-about .about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-about .about-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.page-about .about-hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 90%;
}

.page-about .about-hero-btns {
  display: flex;
  gap: 1rem;
}

.page-about .about-hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(15, 44, 89, 0.2);
  aspect-ratio: 4 / 3;
}

.page-about .about-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 2. Our Story Section */
.page-about .about-story-section {
  background: #ffffff;
}

.page-about .about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.page-about .about-story-visual {
  position: relative;
}

.page-about .about-story-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 48px -12px rgba(15, 44, 89, 0.15);
  position: relative;
  z-index: 2;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.page-about .about-story-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: var(--powder-blue);
  border-radius: 24px;
  z-index: 1;
}

.page-about .about-story-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.page-about .about-story-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.page-about .about-story-content p:last-child {
  margin-bottom: 0;
}

/* 3. Mission & Values Section */
.page-about .about-values-section {
  background: var(--bg);
}

.page-about .about-feature-card {
  background: var(--surface);
  border: 1px solid rgba(15, 44, 89, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 12px 36px -12px rgba(15, 44, 89, 0.05);
  transition: var(--transition);
}

.page-about .about-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(15, 44, 89, 0.1);
}

.page-about .about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.page-about .about-feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.page-about .about-feature-card p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0;
}

/* 4. Who Kiwi Scholars Is For Section */
.page-about .about-community-section {
  background: var(--pale-green);
}

.page-about .about-community-card {
  background: var(--surface);
  border: 1px solid rgba(15, 44, 89, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 36px -12px rgba(15, 44, 89, 0.05);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
}

.page-about .about-community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(15, 44, 89, 0.1);
  border-top-color: var(--accent);
}

.page-about .about-community-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.page-about .about-community-icon {
  font-size: 2rem;
}

.page-about .about-community-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.page-about .about-community-card p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 0;
}

/* 5. Ways to Get Involved Section */
.page-about .about-involvement-section {
  background: #ffffff;
}

.page-about .about-involvement-card {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(15, 44, 89, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 36px -12px rgba(15, 44, 89, 0.05);
  transition: var(--transition);
  height: 100%;
}

.page-about .about-involvement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(15, 44, 89, 0.1);
}

.page-about .about-involvement-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--border);
}

.page-about .about-involvement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.page-about .about-involvement-card:hover .about-involvement-image img {
  transform: scale(1.05);
}

.page-about .about-involvement-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-about .about-involvement-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.2px;
}

.page-about .about-involvement-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.page-about .about-card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  transition: var(--transition);
}

.page-about .about-card-link:hover {
  color: var(--accent);
}

/* 6. Centered Closing CTA Section */
.page-about .about-cta {
  background: var(--primary);
  color: white;
  padding: 6rem 0;
}

.page-about .about-cta-inner {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about .about-cta-inner h2 {
  color: white;
  font-size: 3rem;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.page-about .about-cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.page-about .about-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

.page-about .btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.page-about .btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .page-about .about-hero-grid,
  .page-about .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .page-about .about-hero-content p {
    margin: 0 auto 2.5rem auto;
  }
  
  .page-about .about-hero-btns {
    justify-content: center;
  }
  
  .page-about .about-story-glow {
    right: 0; 
    left: 0; 
    top: -15px;
  }
  
  /* Reverse stacking order for story on mobile to show image first */
  .page-about .about-story-grid {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .page-about .about-hero {
    padding: 80px 0 60px;
  }
  
  .page-about .about-hero-content h1 {
    font-size: 2.8rem;
  }
  
  .page-about .about-hero-btns,
  .page-about .about-cta-btns {
    flex-direction: column;
  }
  
  .page-about .about-cta-inner h2 {
    font-size: 2.5rem;
  }
}

/* =========================================
   SCOPED PRIVACY PAGE STYLES (.page-privacy)
   ========================================= */

   .page-privacy .privacy-hero {
    min-height: 42vh;
    padding: 110px 0 90px;
    background: var(--mist-gradient);
    display: flex;
    align-items: center;
  }
  
  .page-privacy .privacy-hero-inner {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
  }
  
  .page-privacy .privacy-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
  }
  
  .page-privacy .privacy-hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
  }
  
  .page-privacy .privacy-hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto;
  }
  
  .page-privacy .privacy-content-section {
    background: #ffffff;
    padding: 90px 0 110px;
  }
  
  .page-privacy .privacy-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid rgba(15, 44, 89, 0.10);
    border-radius: 24px;
    box-shadow: 0 20px 48px -16px rgba(15, 44, 89, 0.08);
    padding: 3rem;
  }
  
  .page-privacy .privacy-meta {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
  }
  
  .page-privacy .privacy-card h2 {
    font-size: 1.45rem;
    margin-top: 2.2rem;
    margin-bottom: 0.85rem;
    letter-spacing: -0.3px;
  }
  
  .page-privacy .privacy-card h2:first-of-type {
    margin-top: 0;
  }
  
  .page-privacy .privacy-card p,
  .page-privacy .privacy-card li {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.75;
  }
  
  .page-privacy .privacy-card p {
    margin-bottom: 1rem;
  }
  
  .page-privacy .privacy-card ul {
    list-style: disc;
    padding-left: 1.4rem;
    margin: 0 0 1rem 0;
  }
  
  .page-privacy .privacy-card li {
    margin-bottom: 0.55rem;
  }
  
  .page-privacy .privacy-card a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  
  .page-privacy .privacy-card a:hover {
    color: var(--accent);
  }
  
  @media (max-width: 768px) {
    .page-privacy .privacy-hero {
      min-height: auto;
      padding: 80px 0 70px;
    }
  
    .page-privacy .privacy-hero h1 {
      font-size: 2.4rem;
    }
  
    .page-privacy .privacy-hero p {
      font-size: 1.05rem;
    }
  
    .page-privacy .privacy-content-section {
      padding: 70px 0 80px;
    }
  
    .page-privacy .privacy-card {
      padding: 2rem 1.5rem;
      border-radius: 18px;
    }
  
    .page-privacy .privacy-card h2 {
      font-size: 1.25rem;
    }
  }

/* =========================================
   Laptop Hero Height Alignment
   ========================================= */
@media (min-width: 1025px) and (max-width: 1440px) {
  .page-home .home-hero,
  .page-initiatives .initiatives-hero,
  .page-resources .resources-hero,
  .page-events .events-hero,
  .page-questions .questions-hero,
  .page-about .about-hero,
  .page-privacy .privacy-hero {
    min-height: calc(100vh - 85px);
    padding: 60px 0;
    display: flex;
    align-items: center;
  }
}

/* =========================================
   WordPress + Contact Form 7 Compatibility
   ========================================= */
.ksch-content {
  max-width: 860px;
}

.ksch-content h1,
.ksch-content h2,
.ksch-content h3 {
  margin-bottom: 1rem;
}

.ksch-content p,
.ksch-content ul,
.ksch-content ol {
  margin-bottom: 1.25rem;
}

.ksch-single-hero {
  padding-top: 120px;
}

.ksch-form-notice {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  color: var(--text-dark);
}

.ksch-form-notice code {
  display: inline-block;
  margin-top: 0.75rem;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 6px;
  padding: 0.35rem 0.5rem;
}

.questions-form-wrapper,
.initiatives-form-wrapper {
  position: relative;
}

.questions-form-wrapper .wpcf7,
.initiatives-form-wrapper .wpcf7 {
  width: 100%;
}

.questions-form-wrapper .wpcf7 form,
.initiatives-form-wrapper .wpcf7 form {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.questions-form-wrapper .wpcf7 form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.initiatives-form-wrapper .wpcf7 form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
}

.wpcf7 form p {
  margin: 0;
}

.questions-form-wrapper .wpcf7 p:nth-of-type(3),
.questions-form-wrapper .wpcf7 p:nth-of-type(4),
.questions-form-wrapper .wpcf7 p:nth-of-type(5),
.initiatives-form-wrapper .wpcf7 p:nth-of-type(3),
.initiatives-form-wrapper .wpcf7 p:nth-of-type(4),
.initiatives-form-wrapper .wpcf7 p:nth-of-type(5),
.initiatives-form-wrapper .wpcf7 p:nth-of-type(6),
.initiatives-form-wrapper .wpcf7 p:nth-of-type(7) {
  grid-column: 1 / -1;
}

.wpcf7 label {
  display: grid;
  gap: 0.45rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(15, 44, 89, 0.14);
  border-radius: 12px;
  padding: 0.78rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.35;
  color: var(--text-main);
  background: #f9fbfe;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.wpcf7 select {
  appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2c59' 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 0.9rem center;
  background-size: 16px;
}

.wpcf7 textarea {
  min-height: 120px;
  max-height: 180px;
  resize: vertical;
}

.initiatives-form-wrapper .wpcf7 textarea {
  min-height: 104px;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.14);
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(68, 84, 106, 0.58);
}

.wpcf7 input[type="submit"] {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 14px 30px -14px rgba(15, 44, 89, 0.55);
}

.wpcf7 .wpcf7-spinner {
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  margin: 0;
}

.wpcf7-not-valid-tip {
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

.wpcf7 form .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .questions-form-wrapper .wpcf7 form,
  .initiatives-form-wrapper .wpcf7 form {
    grid-template-columns: 1fr;
  }

  .questions-form-wrapper .wpcf7 p,
  .initiatives-form-wrapper .wpcf7 p {
    grid-column: 1 / -1;
  }

  .wpcf7 textarea,
  .initiatives-form-wrapper .wpcf7 textarea {
    min-height: 112px;
  }
}

.questions-form-wrapper .wpcf7 .hidden-fields-container,
.initiatives-form-wrapper .wpcf7 .hidden-fields-container {
  display: none;
}

.questions-form-wrapper .wpcf7 .form-group,
.initiatives-form-wrapper .wpcf7 .form-group {
  margin: 0;
}

.questions-form-wrapper .wpcf7 .form-group:has([data-name="topic"]),
.questions-form-wrapper .wpcf7 .form-group:has([data-name="question"]),
.questions-form-wrapper .wpcf7 form > p:last-of-type,
.initiatives-form-wrapper .wpcf7 .form-group:has([data-name="initiative"]),
.initiatives-form-wrapper .wpcf7 .form-group:has([data-name="desc"]),
.initiatives-form-wrapper .wpcf7 form > p:last-of-type {
  grid-column: 1 / -1;
}

.questions-form-wrapper .wpcf7 input[type="text"],
.questions-form-wrapper .wpcf7 input[type="email"],
.questions-form-wrapper .wpcf7 input[type="tel"],
.questions-form-wrapper .wpcf7 input[type="url"],
.questions-form-wrapper .wpcf7 select,
.questions-form-wrapper .wpcf7 textarea,
.initiatives-form-wrapper .wpcf7 input[type="text"],
.initiatives-form-wrapper .wpcf7 input[type="email"],
.initiatives-form-wrapper .wpcf7 input[type="tel"],
.initiatives-form-wrapper .wpcf7 input[type="url"],
.initiatives-form-wrapper .wpcf7 select,
.initiatives-form-wrapper .wpcf7 textarea {
  min-height: 48px;
  border: 1px solid rgba(15, 44, 89, 0.14);
  border-radius: 12px;
  padding: 0.78rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.35;
  color: var(--text-main);
  background-color: #f9fbfe;
}

.questions-form-wrapper .wpcf7 select,
.initiatives-form-wrapper .wpcf7 select {
  border-radius: 12px;
  background-color: #f9fbfe;
}

.questions-form-wrapper .wpcf7 textarea,
.initiatives-form-wrapper .wpcf7 textarea {
  border-radius: 12px;
  min-height: 112px;
  max-height: 160px;
}

.questions-form-wrapper .wpcf7 label,
.initiatives-form-wrapper .wpcf7 label {
  margin: 0;
}

.questions-form-wrapper .wpcf7 form > p:last-of-type,
.initiatives-form-wrapper .wpcf7 form > p:last-of-type {
  margin-top: 0.15rem;
}

@media (max-width: 640px) {
  .questions-form-wrapper .wpcf7 .form-group,
  .questions-form-wrapper .wpcf7 form > p,
  .initiatives-form-wrapper .wpcf7 .form-group,
  .initiatives-form-wrapper .wpcf7 form > p {
    grid-column: 1 / -1;
  }
}

.ksch-center-actions {
  justify-content: center;
}

.ksch-article-card {
  margin-bottom: 2rem;
}

/* =========================================
   Premium Dynamic Single Pages
   ========================================= */
.ksch-premium-hero {
  padding: 130px 0 80px;
  background:
    radial-gradient(circle at 12% 20%, rgba(74, 144, 226, 0.18), transparent 34%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 46%, #eef6ff 100%);
  overflow: hidden;
}

.ksch-premium-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
  gap: 4rem;
  align-items: center;
}

.ksch-premium-hero-content h1 {
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 1.4rem;
  max-width: 820px;
}

.ksch-premium-hero-content p {
  color: var(--text-light);
  font-size: 1.2rem;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 2rem;
}

.ksch-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.ksch-back-link::before {
  content: "←";
}

.ksch-premium-hero-visual {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 34px 70px -24px rgba(15, 44, 89, 0.32);
  border: 1px solid rgba(15, 44, 89, 0.08);
  background: var(--surface);
}

.ksch-premium-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ksch-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.ksch-single-section {
  padding-top: 5rem;
}

.ksch-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 3rem;
  align-items: start;
}

.ksch-single-article {
  min-width: 0;
}

.ksch-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.ksch-meta-strip div {
  background: var(--surface);
  border: 1px solid rgba(15, 44, 89, 0.1);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 14px 36px -20px rgba(15, 44, 89, 0.28);
}

.ksch-meta-strip span,
.ksch-sidebar-eyebrow,
.ksch-next-step-panel span {
  display: block;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.ksch-meta-strip strong {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.35;
}

.ksch-single-article .ksch-content {
  max-width: none;
  background: var(--surface);
  border: 1px solid rgba(15, 44, 89, 0.1);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 22px 56px -28px rgba(15, 44, 89, 0.22);
}

.ksch-single-article .ksch-content h2 {
  font-size: 1.75rem;
  margin-top: 2.2rem;
  margin-bottom: 0.9rem;
}

.ksch-single-article .ksch-content h2:first-child {
  margin-top: 0;
}

.ksch-single-article .ksch-content p,
.ksch-single-article .ksch-content li {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.ksch-single-article .ksch-content ul {
  padding-left: 1.2rem;
}

.ksch-single-sidebar {
  position: sticky;
  top: 110px;
}

.ksch-sidebar-card,
.ksch-next-step-panel {
  background: #0A1E3F;
  color: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 24px 60px -28px rgba(10, 30, 63, 0.45);
}

.ksch-sidebar-card h3,
.ksch-next-step-panel h2 {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.ksch-related-list {
  display: grid;
  gap: 0.9rem;
}

.ksch-related-item {
  display: block;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.ksch-related-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.ksch-related-item span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.ksch-related-item strong {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.35;
}

.ksch-sidebar-back {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.ksch-next-step-panel {
  margin-top: 2rem;
  background:
    linear-gradient(135deg, rgba(10, 30, 63, 0.96), rgba(15, 44, 89, 0.92)),
    var(--primary);
}

.ksch-next-step-panel h2 {
  font-size: 2rem;
  line-height: 1.18;
  max-width: 720px;
}

@media (max-width: 1024px) {
  .ksch-premium-hero-grid,
  .ksch-single-layout {
    grid-template-columns: 1fr;
  }

  .ksch-premium-hero-content {
    text-align: center;
  }

  .ksch-premium-hero-content p,
  .ksch-single-actions {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .ksch-single-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .ksch-premium-hero {
    padding: 100px 0 60px;
  }

  .ksch-premium-hero-content h1 {
    font-size: 2.55rem;
  }

  .ksch-premium-hero-content p {
    font-size: 1.05rem;
  }

  .ksch-meta-strip {
    grid-template-columns: 1fr;
  }

  .ksch-single-article .ksch-content,
  .ksch-sidebar-card,
  .ksch-next-step-panel {
    border-radius: 18px;
    padding: 1.5rem;
  }

  .ksch-next-step-panel h2 {
    font-size: 1.55rem;
  }

  .ksch-single-actions {
    flex-direction: column;
  }

  .ksch-single-actions .btn {
    width: 100%;
  }
}
