* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --sky: #2795C9;
    --navy: #0F1C2E;
    --white: #FFFFFF;
    --light-blue-tint: #EFF6FF;
    --page-bg: #E2E8F0;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  }

  /* Base: full viewport height, no scrolling on desktop */
  html, body {
    height: 100%;
  }

  body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.4;
    color: var(--navy);
    background: var(--page-bg);
    display: flex;
    flex-direction: column;
  }

  /* Desktop only: prevent any scrolling */
  @media (min-width: 1024px) and (min-height: 680px) {
    body {
      overflow: hidden;
      height: 100vh;
    }
  }

  /* For slightly shorter desktops, allow minimal scroll but keep bottom visible */
  @media (min-width: 1024px) and (max-height: 679px) {
    body {
      overflow-y: auto;
    }
  }

  .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
  }

  a {
    text-decoration: none;
    color: var(--sky);
    transition: 0.2s ease;
  }

  /* ----- HEADER (only logo + button) ----- */
  .site-header {
    background: var(--white);
    border-bottom: 3px solid var(--sky);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    flex-shrink: 0;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6px 24px;
  }

  .site-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .site-header__logo-icon {
    width: 38px;
    height: 38px;
    background: var(--sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__logo-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
  }

  .site-header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .site-header__logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    white-space: nowrap;
  }

  .site-header__logo-tagline {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sky);
  }

  .site-header__cta {
    background: var(--sky);
    color: white !important;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 40px;
    white-space: nowrap;
  }

  .site-header__cta:hover {
    background: var(--navy);
  }

  /* ----- BACK BAR ----- */
  .lm-back-bar {
    background: var(--sky);
    padding: 4px 24px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
  }

  .lm-back-btn {
    background: white;
    border: none;
    padding: 3px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
  }

  /* ----- HERO (tight) ----- */
  .lm-hero {
    background: var(--sky);
    padding: 8px 24px 10px;
    text-align: center;
    flex-shrink: 0;
  }

  .lm-hero__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 5px;
  }

  .lm-hero__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
  }

  .lm-hero__dot.is-active {
    background: white;
  }

  .lm-hero__title {
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    margin-bottom: 4px;
  }

  .lm-hero__subtitle {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
  }

  /* ----- MAIN CONTENT (flex column that fills remaining space) ----- */
  .lm-page {
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;  /* important for flex children to shrink */
  }

  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6px 24px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .lm-section-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sky);
    margin: 8px 0 6px 0;
  }

  /* Grids with tighter gaps */
  .lm-grid {
    display: grid;
    gap: 10px;
    margin-bottom: 10px;
  }

  .lm-grid--involve {
    grid-template-columns: repeat(4, 1fr);
  }
  .lm-grid--media {
    grid-template-columns: repeat(3, 1fr);
  }
  .lm-grid--work {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Cards */
  .lm-card {
    background: white;
    border: 1px solid #e2edf5;
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }

  .lm-card__icon {
    font-size: 1.3rem;
  }
  .lm-card__label {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--sky);
  }
  .lm-card__title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
  }
  .lm-card__desc {
    font-size: 0.65rem;
    color: #4b5565;
    line-height: 1.3;
  }

  /* Media cards - left aligned, no extra spacing */
  .lm-card--media {
    text-align: left;
    align-items: flex-start;
    border-left: 4px solid var(--sky);
    gap: 3px;
    padding: 10px 12px;
  }
  .lm-card--media .lm-card__icon {
    font-size: 1.2rem;
  }
  .lm-card--media .lm-card__title {
    font-size: 0.85rem;
  }
  .lm-card--media .lm-card__desc {
    font-size: 0.68rem;
  }

  /* Bottom CTA - guaranteed visible */
  .lm-bottom-cta {
    text-align: center;
    margin-top: 6px;
    padding: 4px 0 2px;
  }
  .lm-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--sky);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 20px;
    border: 2px solid var(--sky);
    border-radius: 40px;
  }
  .lm-cta-note {
    margin-top: 5px;
    font-size: 0.65rem;
    color: #5a687c;
    display: block;
  }

  /* ----- MOBILE / TABLET (scrolling allowed) ----- */
  @media (max-width: 1023px) {
    body {
      overflow-y: auto;
    }
    .lm-grid--involve {
      grid-template-columns: repeat(2, 1fr);
    }
    .lm-grid--media {
      grid-template-columns: repeat(2, 1fr);
    }
    .lm-grid--work {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 640px) {
    .lm-grid--involve,
    .lm-grid--media,
    .lm-grid--work {
      grid-template-columns: 1fr;
    }
    .lm-card--media {
      padding: 12px;
    }
    .site-header__logo-name {
      font-size: 0.8rem;
      white-space: nowrap;
    }
    .site-header__cta {
      font-size: 0.65rem;
      padding: 4px 12px;
    }
    .lm-hero__title {
      font-size: 1.4rem;
    }
  }

  @media (max-width: 480px) {
    .site-header__logo-tagline {
      display: none;
    }
  }



   /*========================= donate page container  ================== */
   .wrapper { display: flex; max-width: 1305px; width: 100%; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.12); }

   /* LEFT */
   .left-panel { background: #2196c4; color: #fff; padding: 32px 28px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
   .learn-btn { background: transparent; border: 1.5px solid #fff; color: #fff; padding: 6px 14px; border-radius: 4px; cursor: pointer; font-size: 13px; width: fit-content; }
   .left-panel h1 { font-size: 24px; font-weight: bold; line-height: 1.3; }
   .left-panel h1 em { font-style: italic; font-weight: bold; }
   .left-panel p { font-size: 14px; line-height: 1.6; }
   .latin { font-style: italic; font-size: 13px; opacity: 0.85; }
   .stats-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.75; margin-top: 8px; }
   .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
   .stat-box { background: rgba(255,255,255,0.15); border-radius: 4px; padding: 12px 14px; }
   .stat-num { font-size: 22px; font-weight: bold; display: block; }
   .stat-num sup { font-size: 13px; }
   .stat-desc { font-size: 12px; opacity: 0.85; }

   /* RIGHT */
   .right-panel { padding: 28px 28px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
   .right-panel h2 { text-align: center; font-size: 20px; font-weight: bold; }
   .tax-info { text-align: center; font-size: 12px; color: #666; }
   .tab-group { display: flex; border: 1.5px solid #1a1a1a; border-radius: 4px; overflow: hidden; }
   .tab { flex: 1; padding: 10px; border: none; background: #fff; cursor: pointer; font-size: 14px; transition: background 0.2s, color 0.2s; }
   .tab.active { background: #1a1a1a; color: #fff; }
   .amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
   .amount-btn { border: 1.5px solid #ccc; border-radius: 4px; padding: 12px 6px; text-align: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
   .amount-btn:hover { border-color: #2196c4; }
   .amount-btn.selected { border-color: #2196c4; background: #e8f4fb; }
   .amount-val { display: block; font-weight: bold; font-size: 16px; }
   .amount-sub { font-size: 11px; color: #888; margin-top: 2px; }
   .other-row { display: flex; align-items: center; gap: 10px; }
   .other-row label { font-size: 14px; white-space: nowrap; }
   .custom-input-wrap { display: flex; align-items: center; border: 1.5px solid #ccc; border-radius: 4px; overflow: hidden; flex: 1; }
   .dollar-sign { padding: 0 8px; background: #f0f0f0; color: #555; font-size: 14px; border-right: 1px solid #ccc; line-height: 36px; }
   .custom-input-wrap input { border: none; outline: none; padding: 8px 10px; font-size: 14px; width: 100%; }
   .info-box { background: #1a1a1a; color: #fff; border-radius: 4px; padding: 12px 14px; font-size: 13px; line-height: 1.5; }
   .highlight-link { color: #5bc8f5; font-weight: bold; text-decoration: none; }
   .email-label { font-size: 14px; font-weight: bold; }
   .required { color: red; }
   .email-input-wrap { display: flex; align-items: center; border: 1.5px solid #ccc; border-radius: 4px; overflow: hidden; }
   .email-icon { padding: 0 10px; background: #f0f0f0; color: #888; border-right: 1px solid #ccc; font-size: 14px; line-height: 38px; }
   .email-input-wrap input { border: none; outline: none; padding: 9px 12px; font-size: 14px; flex: 1; }
   .email-note { font-size: 11px; color: #888; }
   .donate-btn { background: #2196c4; color: #fff; border: none; padding: 14px; border-radius: 4px; font-size: 15px; font-weight: bold; cursor: pointer; transition: background 0.2s; }
   .donate-btn:hover { background: #1878a0; }
   .secure-note, .foundation-note { text-align: center; font-size: 12px; color: #888; }



    /*========================= volunteer page ================== */
    .wrapper { display: flex; max-width: 1305px; width: 100%; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.12); min-height: 580px; }

    /* LEFT */
    .left-panel { background: #2196c4; color: #fff; padding: 32px 28px; width: 280px; min-width: 280px; display: flex; flex-direction: column; gap: 16px; }
    .learn-btn { background: transparent; border: 1.5px solid #fff; color: #fff; padding: 6px 14px; border-radius: 4px; cursor: pointer; font-size: 13px; width: fit-content; }
    .left-panel h1 { font-size: 24px; font-weight: bold; line-height: 1.3; }
    .left-panel h1 em { font-style: italic; }
    .left-panel p { font-size: 13.5px; line-height: 1.65; }
    .latin { font-style: italic; font-size: 13px; opacity: 0.8; }
    .spacer { flex: 1; }
    .what-label { font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; opacity: 0.7; }
    .perks { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
    .perk { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; line-height: 1.5; }
    .perk-icon { color: #7fd6f5; font-size: 15px; margin-top: 1px; flex-shrink: 0; }
    .perk strong { font-weight: bold; }

    /* RIGHT */
    .right-panel { flex: 1; padding: 28px 24px; display: flex; flex-direction: column; gap: 6px; overflow-y: auto; max-height: 580px; }
    .right-panel h2 { text-align: center; font-size: 19px; font-weight: bold; color: #1a1a1a; }
    .sub-tags { text-align: center; font-size: 12px; color: #666; margin-bottom: 10px; }
    .sub-tags span { margin: 0 4px; }

    .role-card { border: 1.5px solid #ddd; border-radius: 6px; padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; }
    .role-header { display: flex; align-items: center; gap: 10px; }
    .role-icon { font-size: 20px; }
    .role-title { font-size: 16px; font-weight: bold; color: #1a1a1a; }
    .role-ideal { font-size: 12.5px; color: #2196c4; font-style: italic; }
    .role-bullets { list-style: none; display: flex; flex-direction: column; gap: 5px; padding-left: 2px; }
    .role-bullets li { font-size: 13px; color: #333; padding-left: 16px; position: relative; line-height: 1.5; }
    .role-bullets li::before { content: "—"; position: absolute; left: 0; color: #888; }
    .apply-btn { background: #2196c4; color: #fff; border: none; padding: 11px; border-radius: 4px; font-size: 14px; font-weight: bold; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
    .apply-btn:hover { background: #1878a0; }

    /*========================= Internships page container  ================== */
   .wrapper { display: flex; max-width: 1305px; width: 100%; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.12); }


    /* LEFT */
    .left-panel { background: #2196c4; color: #fff; padding: 32px 28px; width: 280px; min-width: 280px; display: flex; flex-direction: column; gap: 16px; }
    .learn-btn { background: transparent; border: 1.5px solid #fff; color: #fff; padding: 6px 14px; border-radius: 4px; cursor: pointer; font-size: 13px; width: fit-content; }
    .left-panel h1 { font-size: 23px; font-weight: bold; line-height: 1.35; }
    .left-panel h1 em { font-style: italic; }
    .left-panel p { font-size: 13.5px; line-height: 1.65; }
    .latin { font-style: italic; font-size: 13px; opacity: 0.8; }
    .spacer { flex: 1; }
    .what-label { font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; opacity: 0.7; }
    .perks { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
    .perk { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; line-height: 1.5; }
    .perk-icon { color: #7fd6f5; font-size: 15px; margin-top: 1px; flex-shrink: 0; }
    .perk strong { font-weight: bold; }

    /* RIGHT */
    .right-panel { flex: 1; padding: 24px 22px; display: flex; flex-direction: column; gap: 6px; overflow-y: auto; max-height: 580px; }
    .right-panel h2 { text-align: center; font-size: 19px; font-weight: bold; color: #1a1a1a; }
    .sub-tags { text-align: center; font-size: 12px; color: #666; margin-bottom: 10px; }
    .sub-tags span { margin: 0 3px; }

    /* Role card */
    .role-card { border: 1.5px solid #ddd; border-radius: 6px; padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; }
    .role-card.featured { border-color: #e8b800; }

    /* Featured badge */
    .featured-badge { background: #e8b800; color: #fff; font-size: 11px; font-weight: bold; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 3px; width: fit-content; display: flex; align-items: center; gap: 5px; }

    .role-header { display: flex; align-items: center; gap: 10px; }
    .role-icon { font-size: 20px; }
    .role-title { font-size: 16px; font-weight: bold; color: #1a1a1a; }
    .role-ideal { font-size: 12.5px; color: #2196c4; font-style: italic; }
    .role-bullets { list-style: none; display: flex; flex-direction: column; gap: 5px; padding-left: 2px; }
    .role-bullets li { font-size: 13px; color: #333; padding-left: 16px; position: relative; line-height: 1.5; }
    .role-bullets li::before { content: "—"; position: absolute; left: 0; color: #888; }
    .apply-btn { background: #2196c4; color: #fff; border: none; padding: 11px; border-radius: 4px; font-size: 14px; font-weight: bold; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
    .apply-btn:hover { background: #1878a0; }

     /*========================= Stay Informed page ================== */
     .wrapper { display: flex; max-width: 1305px; width: 100%; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.12); min-height: 580px; }

      /* LEFT */
    .left-panel { background: #2196c4; color: #fff; padding: 32px 28px; width: 280px; min-width: 280px; display: flex; flex-direction: column; gap: 16px; }
    .learn-btn { background: transparent; border: 1.5px solid #fff; color: #fff; padding: 6px 14px; border-radius: 4px; cursor: pointer; font-size: 13px; width: fit-content; }
    .left-panel h1 { font-size: 24px; font-weight: bold; line-height: 1.3; }
    .left-panel h1 em { font-style: italic; }
    .left-panel p { font-size: 13.5px; line-height: 1.65; }
    .latin { font-style: italic; font-size: 13px; opacity: 0.8; }
    .spacer { flex: 1; }
    .what-label { font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; opacity: 0.7; }

    /* Content items */
    .content-list { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
    .content-item { display: flex; align-items: flex-start; gap: 10px; }
    .content-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; margin-top: 2px; }
    .content-text .ct-title { font-size: 13.5px; font-weight: bold; display: block; }
    .content-text .ct-sub { font-size: 12px; opacity: 0.8; display: block; margin-top: 2px; }

    /* Stats row */
    .stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
    .stat-box { background: rgba(255,255,255,0.15); border-radius: 4px; padding: 12px 14px; }
    .stat-num { font-size: 22px; font-weight: bold; display: block; }
    .stat-num sup { font-size: 12px; }
    .stat-desc { font-size: 12px; opacity: 0.85; display: block; margin-top: 2px; }

    /* RIGHT */
    .right-panel { flex: 1; padding: 28px 28px; display: flex; flex-direction: column; gap: 14px; overflow-y: auto; max-height: 560px; }
    .right-panel h2 { text-align: center; font-size: 19px; font-weight: bold; color: #1a1a1a; }
    .right-panel .subtitle { text-align: center; font-size: 13px; color: #555; }

    /* Form rows */
    .form-row { display: flex; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 5px; flex: 1; }
    .form-group.full { flex: unset; width: 100%; }
    label { font-size: 13.5px; font-weight: bold; color: #1a1a1a; }
    label .req { color: red; }
    input[type="text"], input[type="email"] {
      border: 1.5px solid #ccc; border-radius: 4px; padding: 9px 12px;
      font-size: 14px; font-family: Georgia, serif; outline: none;
      transition: border-color 0.2s;
    }
    input[type="text"]:focus, input[type="email"]:focus { border-color: #2196c4; }

    /* Checkboxes */
    .checkbox-group { display: flex; flex-direction: column; gap: 9px; }
    .checkbox-item { display: flex; align-items: flex-start; gap: 9px; cursor: pointer; }
    .checkbox-item input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 15px; height: 15px; cursor: pointer; accent-color: #2196c4; }
    .checkbox-item span { font-size: 13.5px; color: #333; line-height: 1.5; }

    .submit-btn { background: #2196c4; color: #fff; border: none; padding: 13px; border-radius: 4px; font-size: 15px; font-weight: bold; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
    .submit-btn:hover { background: #1878a0; }

    .error-msg { font-size: 12px; color: red; display: none; }


     /*========================= DoD Times  page ================== */
     .wrapper { display: flex; max-width: 1305px; width: 100%; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.12); min-height: 580px; }

     .page-wrapper {
      display: flex;
      max-width: 900px;
      width: 100%;
      gap: 20px;
      align-items: flex-start;
    }

    /* ── LEFT PANEL ── */
    .left-panel {
      background: #2196c4;
      color: #fff;
      border-radius: 6px;
      padding: 28px 24px;
      width: 300px;
      min-width: 300px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.14);
    }

    .learn-btn {
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.7);
      color: #fff;
      padding: 6px 14px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 13px;
      font-family: Georgia, serif;
      width: fit-content;
    }

    .left-panel .brand-title {
      font-size: 26px;
      font-weight: bold;
      line-height: 1.25;
    }
    .left-panel .brand-title em { font-style: italic; }

    .left-panel .tagline {
      font-size: 13px;
      line-height: 1.65;
      opacity: 0.9;
    }

    .latin {
      font-style: italic;
      font-size: 12.5px;
      opacity: 0.75;
    }

    .meta-label {
      font-size: 10px;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      opacity: 0.7;
    }

    /* Stats grid */
    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .stat-box {
      background: rgba(255,255,255,0.18);
      border-radius: 4px;
      padding: 12px 14px;
    }
    .stat-num {
      font-size: 24px;
      font-weight: bold;
      display: block;
      line-height: 1;
    }
    .stat-num sup { font-size: 13px; }
    .stat-label {
      font-size: 11.5px;
      opacity: 0.85;
      display: block;
      margin-top: 4px;
    }

    /* Subscribe form */
    .subscribe-section {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 4px;
    }
    .sub-label {
      font-size: 10px;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      opacity: 0.7;
    }
    .sub-input {
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 4px;
      padding: 9px 12px;
      font-size: 13.5px;
      font-family: Georgia, serif;
      color: #fff;
      outline: none;
      width: 100%;
    }
    .sub-input::placeholder { color: rgba(255,255,255,0.6); }
    .sub-input:focus { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.2); }

    .sub-btn {
      background: #fff;
      color: #2196c4;
      border: none;
      padding: 10px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: bold;
      font-family: Georgia, serif;
      cursor: pointer;
      transition: background 0.2s;
      text-align: center;
    }
    .sub-btn:hover { background: #e8f4fd; }

    .or-line {
      font-size: 12px;
      opacity: 0.65;
      text-align: center;
    }

    .linkedin-btn {
      background: rgba(255,255,255,0.15);
      border: 1.5px solid rgba(255,255,255,0.5);
      color: #fff;
      padding: 9px 14px;
      border-radius: 4px;
      font-size: 13px;
      font-family: Georgia, serif;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .linkedin-btn:hover { background: rgba(255,255,255,0.25); }
    .linkedin-icon {
      width: 16px; height: 16px;
      background: #0077b5;
      border-radius: 3px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: bold;
      color: #fff;
      flex-shrink: 0;
    }

    .footer-note {
      font-size: 11.5px;
      opacity: 0.7;
      text-align: center;
      line-height: 1.55;
    }

    /* ── RIGHT PANEL ── */
    .right-panel {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-height: 640px;
      overflow-y: auto;
    }

    .issue-card {
      background: #fff;
      border-radius: 6px;
      padding: 16px 18px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      cursor: pointer;
      transition: box-shadow 0.15s;
      text-decoration: none;
      color: inherit;
    }
    .issue-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.13); }
    .issue-card.featured { border-left: 4px solid #2196c4; }

    .issue-meta { font-size: 11px; color: #2196c4; font-weight: bold; letter-spacing: 0.5px; margin-bottom: 6px; }
    .issue-title { font-size: 15px; font-weight: bold; color: #1a1a1a; line-height: 1.4; margin-bottom: 6px; }
    .issue-desc { font-size: 13px; color: #555; line-height: 1.55; }

    .arrow-icon {
      flex-shrink: 0;
      width: 20px; height: 20px;
      color: #aaa;
      font-size: 16px;
      margin-top: 2px;
    }

     /*========================= Star Chamber page ================== */
     .wrapper { display: flex; max-width: 1305px; width: 100%; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.12); min-height: 580px; }

    /* LEFT */
    .left-panel { background: #2196c4; color: #fff; padding: 32px 28px; width: 280px; min-width: 280px; display: flex; flex-direction: column; gap: 14px; }
    .learn-btn { background: transparent; border: 1.5px solid #fff; color: #fff; padding: 6px 14px; border-radius: 4px; cursor: pointer; font-size: 13px; font-family: Georgia, serif; width: fit-content; }
    .left-panel h1 { font-size: 26px; font-weight: bold; line-height: 1.25; }
    .left-panel h1 em { font-style: italic; font-weight: normal; }
    .left-panel p { font-size: 13px; line-height: 1.65; }
    .latin { font-style: italic; font-size: 12.5px; opacity: 0.8; }
    .meta-label { font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; opacity: 0.7; }

    .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-box { background: rgba(255,255,255,0.18); border-radius: 4px; padding: 12px 14px; }
    .stat-box.gold { background: rgba(255,200,50,0.18); }
    .stat-num { font-size: 22px; font-weight: bold; display: block; line-height: 1; }
    .stat-num sup { font-size: 12px; }
    .stat-stars { font-size: 18px; color: #f5c518; display: block; line-height: 1; }
    .stat-label { font-size: 11.5px; opacity: 0.85; display: block; margin-top: 4px; }

    .platform-label { font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; opacity: 0.7; margin-top: 4px; }
    .platform-list { display: flex; flex-direction: column; gap: 8px; }
    .platform-btn { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 4px; padding: 10px 14px; cursor: pointer; display: flex; align-items: center; gap: 10px; text-align: left; font-family: Georgia, serif; color: #fff; }
    .platform-btn:hover { background: rgba(255,255,255,0.25); }
    .platform-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
    .platform-icon.apple { background: #fc3c44; }
    .platform-icon.spotify { background: #1db954; }
    .platform-icon.youtube { background: #ff0000; }
    .platform-name { font-size: 12.5px; font-weight: bold; display: block; letter-spacing: 0.3px; }
    .platform-sub { font-size: 11px; opacity: 0.8; display: block; margin-top: 1px; }

    /* RIGHT */
    .right-panel { flex: 1; padding: 28px 28px; display: flex; flex-direction: column; gap: 4px; overflow-y: auto; max-height: 560px; }
    .right-panel h2 { text-align: center; font-size: 20px; font-weight: bold; color: #1a1a1a; margin-bottom: 4px; }
    .right-panel .subtitle { text-align: center; font-size: 12.5px; color: #666; margin-bottom: 10px; }
    .episodes-label { font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase; color: #888; font-weight: bold; margin-bottom: 6px; }

    .episode-card { border: 1.5px solid #e0e0e0; border-radius: 6px; padding: 16px 18px; margin-bottom: 12px; }
    .ep-meta { font-size: 11px; color: #2196c4; font-weight: bold; letter-spacing: 0.5px; margin-bottom: 6px; }
    .ep-title { font-size: 15.5px; font-weight: bold; color: #1a1a1a; line-height: 1.35; margin-bottom: 4px; }
    .ep-date-dur { font-size: 13px; color: #555; margin-bottom: 8px; }
    .ep-date-dur span { font-weight: bold; color: #1a1a1a; }
    .ep-desc { font-size: 13px; color: #444; line-height: 1.6; margin-bottom: 12px; }
    .ep-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .btn-apple { background: #2196c4; color: #fff; border: none; padding: 8px 16px; border-radius: 4px; font-size: 13px; font-family: Georgia, serif; cursor: pointer; display: flex; align-items: center; gap: 6px; }
    .btn-apple:hover { background: #1878a0; }
    .btn-platform { background: transparent; border: 1.5px solid #ccc; color: #333; padding: 7px 14px; border-radius: 4px; font-size: 13px; font-family: Georgia, serif; cursor: pointer; }
    .btn-platform:hover { border-color: #999; }

    /*========================= Media Appearances page ================== */

    
/* ── RESET scoped to wrapper ── */
.wrapper-media *, .wrapper-media *::before, .wrapper-media *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

.wrapper-media {
  --blue: #2196c4;
  --blue-dark: #1878a0;
  --gold: #e8a020;
  --text: #1a1a1a;
  --muted: #555;
  --border: #e0e0e0;
  --red: #c0392b;
  --green: #1a7a3c;
  --orange: #d4680a;

  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--text);
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
  width: 100%;
}

/* ── HERO ── */
.wrapper-media .wm-hero {
  background: var(--blue);
  color: #fff;
  padding: 36px 48px 40px;
  position: relative;
  overflow: hidden;
}
.wrapper-media .wm-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.wrapper-media .wm-learn-btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: transparent; color: #fff;
  padding: 6px 16px; border-radius: 4px;
  font-family: 'Source Serif 4', serif;
  font-size: 13px; cursor: pointer;
  margin-bottom: 18px;
  transition: background .2s;
}
.wrapper-media .wm-learn-btn:hover { background: rgba(255,255,255,0.15); }
.wrapper-media .wm-eyebrow {
  font-size: 10.5px; letter-spacing: 2.5px;
  text-transform: uppercase; opacity: 0.75;
  margin-bottom: 8px;
}
.wrapper-media .wm-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px; font-weight: 700;
  line-height: 1.15; margin-bottom: 16px;
  max-width: 480px;
}
.wrapper-media .wm-hero h1 em { font-style: italic; font-weight: 400; }
.wrapper-media .wm-hero p { font-size: 14px; line-height: 1.7; opacity: 0.9; max-width: 520px; margin-bottom: 14px; }
.wrapper-media .wm-hero .wm-latin { font-style: italic; font-size: 12.5px; opacity: 0.65; }

/* ── FEATURED IN BAR ── */
.wrapper-media .wm-featured-bar {
  background: #f0f2f5;
  border-bottom: 1px solid #ddd;
  padding: 12px 48px;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.wrapper-media .wm-featured-label {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: #888;
  white-space: nowrap;
}
.wrapper-media .wm-featured-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.wrapper-media .wm-featured-tag {
  background: #fff; border: 1.5px solid #d0d4da;
  border-radius: 4px; padding: 5px 14px;
  font-size: 12.5px; font-weight: 600; color: #333;
  font-family: 'Source Serif 4', serif;
}

/* ── MAIN ── */
.wrapper-media .wm-main {
  max-width: 1100px; margin: 0 auto; padding: 0 48px 60px;
}

/* ── SECTION BLOCK ── */
.wrapper-media .wm-section { padding-top: 44px; }
.wrapper-media .wm-section-eyebrow {
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--blue);
  font-weight: 600; margin-bottom: 6px;
}
.wrapper-media .wm-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px; font-weight: 700; margin-bottom: 6px;
}
.wrapper-media .wm-section-sub {
  font-size: 13.5px; color: var(--muted); margin-bottom: 28px;
}

/* ── NEWS GRID ── */
.wrapper-media .wm-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wrapper-media .wm-news-card {
  border: 1.5px solid var(--border);
  border-radius: 6px; padding: 18px 18px 16px;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, border-color .2s;
}
.wrapper-media .wm-news-card:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 14px rgba(33,150,196,0.12);
}
.wrapper-media .wm-card-top {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px;
}
.wrapper-media .wm-card-source { font-size: 12.5px; font-weight: 700; color: var(--text); }
.wrapper-media .wm-card-source.wm-red { color: var(--red); }
.wrapper-media .wm-card-source.wm-orange { color: var(--orange); }
.wrapper-media .wm-card-source.wm-amber { color: #c26a00; }
.wrapper-media .wm-badge {
  font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 2px 7px; border-radius: 3px; font-weight: 700;
}
.wrapper-media .wm-badge-consulted { background: #e8f4fb; color: var(--blue); }
.wrapper-media .wm-badge-news      { background: #eaf6ee; color: var(--green); }
.wrapper-media .wm-badge-tv        { background: #fff3e0; color: #c26a00; }
.wrapper-media .wm-badge-oped      { background: #fdf3e3; color: var(--orange); }
.wrapper-media .wm-card-title {
  font-size: 14px; font-weight: 600; line-height: 1.4;
  color: var(--text); margin-bottom: 6px; font-style: italic;
}
.wrapper-media .wm-card-date { font-size: 12px; color: #888; margin-bottom: 12px; flex: 1; }
.wrapper-media .wm-card-link {
  display: inline-block;
  border: 1.5px solid var(--blue);
  color: var(--blue); background: transparent;
  padding: 6px 14px; border-radius: 4px;
  font-size: 12.5px; font-family: 'Source Serif 4', serif;
  cursor: pointer; text-decoration: none;
  transition: background .2s, color .2s;
  width: fit-content;
}
.wrapper-media .wm-card-link:hover { background: var(--blue); color: #fff; }

/* ── DIVIDER ── */
.wrapper-media .wm-divider { border: none; border-top: 1px solid var(--border); margin: 44px 0 0; }

/* ── PODCAST FILTER ── */
.wrapper-media .wm-filter-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 22px; flex-wrap: wrap;
}
.wrapper-media .wm-filter-label { font-size: 13px; color: var(--muted); }
.wrapper-media .wm-filter-btn {
  padding: 7px 18px; border-radius: 20px;
  font-family: 'Source Serif 4', serif; font-size: 13px;
  cursor: pointer; border: 1.5px solid var(--border);
  background: #fff; color: var(--text);
  transition: all .2s;
}
.wrapper-media .wm-filter-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.wrapper-media .wm-filter-btn:hover:not(.active) { border-color: var(--blue); color: var(--blue); }

/* ── PODCAST GRID ── */
.wrapper-media .wm-pod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.wrapper-media .wm-pod-card {
  border: 1.5px solid var(--border);
  border-radius: 6px; padding: 16px;
  display: none; flex-direction: column;
  transition: box-shadow .2s, border-color .2s;
}
.wrapper-media .wm-pod-card.visible { display: flex; }
.wrapper-media .wm-pod-card:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 14px rgba(33,150,196,0.1);
}
.wrapper-media .wm-pod-top {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px;
}
.wrapper-media .wm-pod-show {
  font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue); font-weight: 600; line-height: 1.3; max-width: 75%;
}
.wrapper-media .wm-pod-speaker {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 2px 8px; border-radius: 3px; font-weight: 700;
  background: #e8f4fb; color: var(--blue-dark);
  white-space: nowrap;
}
.wrapper-media .wm-pod-speaker.ryan { background: #f0faf4; color: var(--green); }
.wrapper-media .wm-pod-title {
  font-size: 14px; font-weight: 600; color: var(--text);
  line-height: 1.4; font-style: italic; margin-bottom: 4px;
}
.wrapper-media .wm-pod-date { font-size: 12px; color: #888; margin-bottom: 12px; flex: 1; }
.wrapper-media .wm-pod-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: #fff;
  border: none; border-radius: 4px;
  padding: 8px 14px; font-size: 12.5px;
  font-family: 'Source Serif 4', serif;
  cursor: pointer; transition: background .2s;
}
.wrapper-media .wm-pod-btn:hover       { background: var(--blue-dark); }
.wrapper-media .wm-pod-btn.wm-spotify  { background: #1db954; }
.wrapper-media .wm-pod-btn.wm-spotify:hover { background: #17a349; }
.wrapper-media .wm-pod-btn.wm-apple    { background: #fc3c44; }
.wrapper-media .wm-pod-btn.wm-apple:hover   { background: #e0333a; }
.wrapper-media .wm-pod-btn.wm-iheart   { background: #c6002b; }

/* ── TEAM NOTE ── */
.wrapper-media .wm-team-note {
  margin-top: 28px;
  border-left: 3px solid var(--red);
  background: #fef9f9;
  padding: 12px 16px;
  font-size: 13px; color: #555;
  border-radius: 0 4px 4px 0;
}

/* ── INQUIRY BLOCK ── */
.wrapper-media .wm-inquiry {
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  padding: 36px 40px;
  margin-top: 52px;
  display: flex; gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.wrapper-media .wm-inquiry-left { max-width: 580px; }
.wrapper-media .wm-inquiry-left h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; margin-bottom: 10px;
}
.wrapper-media .wm-inquiry-left p {
  font-size: 13.5px; opacity: 0.9; line-height: 1.65; margin-bottom: 16px;
}
.wrapper-media .wm-inquiry-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.wrapper-media .wm-inquiry-tag {
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 20px; padding: 4px 12px;
  font-size: 11.5px; opacity: 0.9;
}
.wrapper-media .wm-inquiry-right { text-align: right; min-width: 200px; }
.wrapper-media .wm-person-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; margin-bottom: 2px;
}
.wrapper-media .wm-person-title { font-size: 12px; opacity: 0.8; line-height: 1.5; margin-bottom: 12px; }
.wrapper-media .wm-person-email { color: var(--gold); font-size: 13px; word-break: break-all; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .wrapper-media .wm-news-grid,
  .wrapper-media .wm-pod-grid { grid-template-columns: 1fr 1fr; }
  .wrapper-media .wm-hero,
  .wrapper-media .wm-main { padding-left: 24px; padding-right: 24px; }
  .wrapper-media .wm-featured-bar { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .wrapper-media .wm-news-grid,
  .wrapper-media .wm-pod-grid { grid-template-columns: 1fr; }
  .wrapper-media .wm-inquiry { flex-direction: column; }
  .wrapper-media .wm-inquiry-right { text-align: left; }
}

/*========================= Congress & Policy ================== */

* ── RESET scoped to wrapper ── */
.wrapper-congress *, .wrapper-congress *::before, .wrapper-congress *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

.wrapper-congress {
  --blue: #2196c4;
  --blue-dark: #1878a0;
  --blue-light: #e8f4fb;
  --gold: #e8a020;
  --text: #1a1a1a;
  --muted: #555;
  --border: #e0e0e0;
  --red: #c0392b;
  --green: #1a7a3c;
  --orange: #d4680a;
  --amber: #c26a00;
  --bg-light: #f7f9fc;

  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--text);
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
  width: 100%;
}

/* ── HERO ── */
.wrapper-congress .wc-hero {
  background: var(--blue);
  color: #fff;
  padding: 36px 48px 40px;
  position: relative;
  overflow: hidden;
}
.wrapper-congress .wc-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.wrapper-congress .wc-learn-btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: transparent; color: #fff;
  padding: 6px 16px; border-radius: 4px;
  font-family: 'Source Serif 4', serif;
  font-size: 13px; cursor: pointer;
  margin-bottom: 18px;
  transition: background .2s;
  text-decoration: none;
}
.wrapper-congress .wc-learn-btn:hover { background: rgba(255,255,255,0.15); }
.wrapper-congress .wc-eyebrow {
  font-size: 10.5px; letter-spacing: 2.5px;
  text-transform: uppercase; opacity: 0.75;
  margin-bottom: 8px;
}
.wrapper-congress .wc-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px; font-weight: 700;
  line-height: 1.15; margin-bottom: 16px;
  max-width: 480px;
}
.wrapper-congress .wc-hero h1 em { font-style: italic; font-weight: 400; }
.wrapper-congress .wc-hero p { font-size: 14px; line-height: 1.7; opacity: 0.9; max-width: 560px; margin-bottom: 14px; }
.wrapper-congress .wc-hero .wc-latin { font-style: italic; font-size: 12.5px; opacity: 0.65; }

/* ── STATS BAR ── */
.wrapper-congress .wc-stats-bar {
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 0 48px 32px;
  display: flex; gap: 0; flex-wrap: wrap;
}
.wrapper-congress .wc-stat {
  padding: 16px 36px 16px 0;
  display: flex; flex-direction: column;
}
.wrapper-congress .wc-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: #fff;
  line-height: 1;
}
.wrapper-congress .wc-stat-num sup { font-size: 13px; vertical-align: super; }
.wrapper-congress .wc-stat-label {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-top: 4px;
}
.wrapper-congress .wc-stat-divider {
  width: 1px; background: rgba(255,255,255,0.2);
  margin: 16px 36px 16px 0; align-self: stretch; min-height: 40px;
}

/* ── MAIN ── */
.wrapper-congress .wc-main {
  max-width: 1100px; margin: 0 auto; padding: 0 48px 60px;
}

/* ── SECTION BLOCK ── */
.wrapper-congress .wc-section { padding-top: 48px; }
.wrapper-congress .wc-section-eyebrow {
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--blue);
  font-weight: 600; margin-bottom: 6px;
}
.wrapper-congress .wc-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px; font-weight: 700; margin-bottom: 6px;
}
.wrapper-congress .wc-section-sub {
  font-size: 13.5px; color: var(--muted); margin-bottom: 28px;
}

/* ── LAW CARD ── */
.wrapper-congress .wc-law-card {
  border: 2px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.wrapper-congress .wc-law-badge-bar {
  background: var(--gold);
  color: #fff;
  padding: 7px 18px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.wrapper-congress .wc-law-badge-bar::before { content: '✓'; }
.wrapper-congress .wc-law-body { padding: 24px 28px 28px; }
.wrapper-congress .wc-law-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; margin-bottom: 4px;
}
.wrapper-congress .wc-law-passed {
  font-size: 12.5px; color: var(--blue); font-weight: 600; margin-bottom: 14px;
}
.wrapper-congress .wc-law-body p {
  font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 20px;
  max-width: 700px;
}
/* provisions grid */
.wrapper-congress .wc-provisions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px;
}
.wrapper-congress .wc-provision {
  border: 1.5px solid var(--border);
  border-radius: 5px; padding: 14px 16px;
  background: var(--bg-light);
}
.wrapper-congress .wc-provision-label {
  font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); font-weight: 700; margin-bottom: 6px;
}
.wrapper-congress .wc-provision p { font-size: 12.5px; color: var(--text); line-height: 1.5; }
.wrapper-congress .wc-law-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.wrapper-congress .wc-btn-primary {
  background: var(--text); color: #fff;
  border: none; border-radius: 4px;
  padding: 9px 20px; font-size: 13px;
  font-family: 'Source Serif 4', serif;
  cursor: pointer; text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.wrapper-congress .wc-btn-primary:hover { background: #333; }
.wrapper-congress .wc-btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 4px; padding: 8px 18px;
  font-size: 13px; font-family: 'Source Serif 4', serif;
  cursor: pointer; text-decoration: none;
  display: inline-block; transition: border-color .2s;
}
.wrapper-congress .wc-btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.wrapper-congress .wc-spearheaded {
  font-size: 12px; color: #888; font-style: italic;
}

/* ── DIVIDER ── */
.wrapper-congress .wc-divider { border: none; border-top: 1px solid var(--border); margin: 44px 0 0; }

/* ── REFORM PROPOSALS ── */
.wrapper-congress .wc-reform-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.wrapper-congress .wc-reform-card {
  border: 1.5px solid var(--border);
  border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, border-color .2s;
}
.wrapper-congress .wc-reform-card:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 18px rgba(33,150,196,0.1);
}
.wrapper-congress .wc-reform-tag-bar {
  padding: 8px 16px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; display: flex; align-items: center; gap: 8px;
}
.wrapper-congress .wc-reform-tag-bar.eo {
  background: #fff8e1; color: var(--amber);
  border-bottom: 1px solid #f5e4b0;
}
.wrapper-congress .wc-reform-tag-bar.ndaa {
  background: #e8f4fb; color: var(--blue-dark);
  border-bottom: 1px solid #c5def0;
}
.wrapper-congress .wc-reform-tag-bar .wc-doc-icon {
  width: 14px; height: 14px; opacity: 0.7;
}
.wrapper-congress .wc-reform-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.wrapper-congress .wc-reform-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; margin-bottom: 12px; line-height: 1.3;
}
.wrapper-congress .wc-reform-body p {
  font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px;
}
.wrapper-congress .wc-reform-bullets {
  list-style: none; margin-bottom: 20px; flex: 1;
}
.wrapper-congress .wc-reform-bullets li {
  font-size: 12.5px; color: var(--text);
  padding: 3px 0 3px 16px;
  position: relative; line-height: 1.5;
}
.wrapper-congress .wc-reform-bullets li::before {
  content: '○';
  position: absolute; left: 0;
  color: var(--blue); font-size: 9px; top: 5px;
}
.wrapper-congress .wc-reform-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.wrapper-congress .wc-btn-blue {
  background: var(--blue); color: #fff;
  border: none; border-radius: 4px;
  padding: 8px 16px; font-size: 12.5px;
  font-family: 'Source Serif 4', serif;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .2s;
}
.wrapper-congress .wc-btn-blue:hover { background: var(--blue-dark); }
.wrapper-congress .wc-reform-meta {
  font-size: 11px; color: #999; margin-top: 14px; font-style: italic;
}

/* ── ON THE HILL ── */
.wrapper-congress .wc-hill-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 8px; overflow: hidden;
  margin-bottom: 28px;
}
.wrapper-congress .wc-hill-stat {
  background: #fff;
  padding: 22px 20px;
  text-align: center;
}
.wrapper-congress .wc-hill-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--blue);
  line-height: 1; margin-bottom: 6px;
}
.wrapper-congress .wc-hill-stat-num sup { font-size: 14px; }
.wrapper-congress .wc-hill-stat-label {
  font-size: 11px; color: var(--muted); line-height: 1.4;
}

/* ── ENGAGEMENT GRID ── */
.wrapper-congress .wc-engage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wrapper-congress .wc-engage-card {
  border: 1.5px solid var(--border);
  border-radius: 6px; padding: 18px 18px 16px;
  transition: box-shadow .2s, border-color .2s;
}
.wrapper-congress .wc-engage-card:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(33,150,196,0.1);
}
.wrapper-congress .wc-engage-icon {
  font-size: 20px; margin-bottom: 10px; display: block;
}
.wrapper-congress .wc-engage-title {
  font-size: 14px; font-weight: 700; margin-bottom: 6px;
}
.wrapper-congress .wc-engage-desc {
  font-size: 12.5px; color: var(--muted); line-height: 1.55;
}

/* ── TRANSPARENCY NOTE ── */
.wrapper-congress .wc-transparency {
  margin-top: 28px;
  border: 1.5px solid var(--border);
  border-radius: 6px; padding: 16px 20px;
  background: var(--bg-light);
  font-size: 13px; color: var(--muted); line-height: 1.65;
}
.wrapper-congress .wc-transparency strong { color: var(--text); }

/* ── INQUIRY BLOCK ── */
.wrapper-congress .wc-inquiry {
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  padding: 36px 40px;
  margin-top: 52px;
  display: flex; gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.wrapper-congress .wc-inquiry-left { max-width: 560px; }
.wrapper-congress .wc-inquiry-left h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; margin-bottom: 10px;
}
.wrapper-congress .wc-inquiry-left p {
  font-size: 13.5px; opacity: 0.9; line-height: 1.65; margin-bottom: 16px;
}
.wrapper-congress .wc-inquiry-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.wrapper-congress .wc-inquiry-tag {
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 20px; padding: 4px 12px;
  font-size: 11.5px; opacity: 0.9;
}
.wrapper-congress .wc-inquiry-right {
  display: flex; flex-direction: column; gap: 20px; min-width: 220px;
}
.wrapper-congress .wc-person-block { text-align: right; }
.wrapper-congress .wc-person-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700; margin-bottom: 2px;
}
.wrapper-congress .wc-person-title { font-size: 11.5px; opacity: 0.8; line-height: 1.5; margin-bottom: 6px; }
.wrapper-congress .wc-person-email { color: var(--gold); font-size: 12.5px; word-break: break-all; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .wrapper-congress .wc-reform-grid { grid-template-columns: 1fr; }
  .wrapper-congress .wc-hill-stats { grid-template-columns: 1fr 1fr; }
  .wrapper-congress .wc-engage-grid { grid-template-columns: 1fr 1fr; }
  .wrapper-congress .wc-provisions { grid-template-columns: 1fr; }
  .wrapper-congress .wc-hero,
  .wrapper-congress .wc-main,
  .wrapper-congress .wc-stats-bar { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .wrapper-congress .wc-engage-grid { grid-template-columns: 1fr; }
  .wrapper-congress .wc-hill-stats { grid-template-columns: 1fr 1fr; }
  .wrapper-congress .wc-inquiry { flex-direction: column; }
  .wrapper-congress .wc-inquiry-right { width: 100%; }
  .wrapper-congress .wc-person-block { text-align: left; }
  .wrapper-congress .wc-stats-bar { flex-wrap: wrap; padding-bottom: 20px; }
  .wrapper-congress .wc-stat-divider { display: none; }
}
