@media (max-width: 820px) {
  :root {
    --rail: min(100% - 40px, 1180px);
    --section-x: 20px;
  }

  .concept-header {
    min-height: 68px;
    padding: 8px 14px;
  }

  .header-shell {
    width: 100%;
    min-height: 52px;
    grid-template-columns: auto auto;
    gap: 12px;
    padding: 0 2px;
  }

  .concept-brand {
    font-size: 18px;
  }

  .concept-brand small {
    font-size: 9px;
  }

  .concept-menu-toggle {
    display: grid;
    width: 42px;
    min-width: 0;
    height: 42px;
    place-items: center;
    justify-self: end;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.035);
    color: var(--white);
    padding: 0;
    transition: border-color 160ms ease, background 160ms ease;
  }

  .concept-menu-toggle:hover,
  .concept-menu-toggle:focus,
  .concept-menu-toggle[aria-expanded="true"] {
    border-color: rgba(231, 202, 104, 0.78);
    background: rgba(255, 255, 255, 0.07);
  }

  .concept-menu-toggle .menu-toggle-mark {
    position: relative;
    display: block;
    width: 20px;
    height: 18px;
    margin: 0;
    background: transparent;
  }

  .concept-menu-toggle .menu-toggle-mark::before {
    content: "";
  }

  .concept-menu-toggle .menu-toggle-mark span {
    position: absolute;
    left: 0;
    display: block;
    width: 20px;
    height: 2px;
    margin: 0;
    background: currentColor;
    transform-origin: center;
    transition: top 160ms ease, transform 160ms ease;
  }

  .concept-menu-toggle .menu-toggle-mark span:first-child {
    top: 5px;
  }

  .concept-menu-toggle .menu-toggle-mark span:last-child {
    top: 12px;
  }

  .concept-menu-toggle[aria-expanded="true"] .menu-toggle-mark span:first-child {
    top: 8px;
    transform: rotate(45deg);
  }

  .concept-menu-toggle[aria-expanded="true"] .menu-toggle-mark span:last-child {
    top: 8px;
    transform: rotate(-45deg);
  }

  .concept-menu-toggle[aria-expanded="true"] .menu-toggle-mark span {
    opacity: 0;
  }

  .concept-menu-toggle[aria-expanded="true"] .menu-toggle-mark::before {
    content: "\00d7";
    position: absolute;
    inset: -5px 0 0;
    display: grid;
    place-items: center;
    color: currentColor;
    font-family: Arial, sans-serif;
    font-size: 29px;
    font-weight: 300;
    line-height: 1;
  }

  .concept-nav {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100svh - 82px);
    overflow-y: auto;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-top: 2px solid var(--gold);
    background:
      linear-gradient(180deg, #0a2440 0%, #071b33 42%, #071b33 72%, #0d2949 100%);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
    padding: 14px 18px 18px;
    transform: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
  }

  .concept-nav[data-open] {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
  }

  .concept-nav a,
  .concept-nav .nav-link-disabled {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.085);
    color: rgba(255, 255, 255, 0.83);
    font-size: 11px;
    text-align: center;
  }

  .concept-nav a::after,
  .concept-nav .nav-link-disabled::after {
    display: none;
  }

  .concept-nav a:not(.nav-donate)::before,
  .concept-nav .nav-link-disabled::before {
    display: none;
    content: none;
  }

  .concept-nav a:hover,
  .concept-nav a:focus,
  .concept-nav a[aria-current="page"],
  .concept-nav .nav-link-disabled:hover {
    color: var(--white);
  }

  .concept-nav .nav-donate {
    display: flex;
    min-height: 52px;
    justify-content: center;
    margin-top: 14px;
    border: 1px solid rgba(201, 162, 39, 0.98);
    color: var(--navy);
    background: var(--gold);
    box-shadow: none;
  }

  .concept-nav .nav-donate:hover,
  .concept-nav .nav-donate:focus {
    color: var(--navy);
    background: var(--gold-light);
  }

  .ebt-imported-page[data-page="home"] .concept-hero,
  .concept-hero,
  .ebt-imported-page[data-page="contact"] .concept-hero {
    min-height: clamp(660px, 88svh, 730px);
  }

  .ebt-imported-page[data-page="home"] .hero-image,
  .hero-image,
  .ebt-imported-page[data-page="contact"] .hero-image {
    background-position: 55% center;
  }

  .ebt-imported-page[data-page="home"] .hero-wash,
  .hero-wash,
  .ebt-imported-page[data-page="contact"] .hero-wash {
    background:
      linear-gradient(90deg, rgba(7, 27, 51, 0.99) 0%, rgba(7, 27, 51, 0.95) 48%, rgba(7, 27, 51, 0.58) 78%, rgba(7, 27, 51, 0.24) 100%),
      linear-gradient(180deg, rgba(7, 27, 51, 0.1) 0%, rgba(7, 27, 51, 0.76) 100%);
  }

  .ebt-imported-page[data-page="home"] .hero-rail,
  .hero-rail,
  .ebt-imported-page[data-page="contact"] .hero-rail {
    width: var(--rail);
    min-height: clamp(660px, 88svh, 730px);
    grid-template-columns: 1fr;
    align-items: center;
    padding: 112px 0 54px;
  }

  .ebt-imported-page[data-page="home"] .hero-copy,
  .hero-copy,
  .ebt-imported-page[data-page="contact"] .hero-copy {
    max-width: 326px;
  }

  .ebt-imported-page[data-page="home"] .concept-hero h1,
  .concept-hero h1,
  .ebt-imported-page[data-page="contact"] .concept-hero h1 {
    max-width: 318px;
    margin-top: 20px;
    font-size: clamp(37px, 10.2vw, 42px);
    line-height: 1.02;
    overflow-wrap: normal;
  }

  .ebt-imported-page[data-page="contact"] .concept-hero h1::after {
    width: 58px;
    margin-top: 22px;
  }

  .ebt-imported-page[data-page="home"] .hero-subtitle,
  .hero-subtitle,
  .ebt-imported-page[data-page="contact"] .hero-subtitle {
    max-width: 315px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions,
  .ebt-imported-page[data-page="contact"] .concept-hero .hero-actions {
    display: grid;
    width: min(100%, 318px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
  }

  .hero-actions .button,
  .ebt-imported-page[data-page="home"] .concept-hero .hero-actions .button,
  .ebt-imported-page[data-page="contact"] .concept-hero .button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .ebt-imported-page[data-page="home"] .bench-section,
  .ebt-imported-page[data-page="home"] .court-section,
  .ebt-imported-page[data-page="home"] .support-section,
  .ebt-imported-page[data-page="contact"] #contact-action.campaign-action {
    padding: 74px var(--section-x);
  }

  .ebt-imported-page[data-page="home"] .bench-rail,
  .ebt-imported-page[data-page="home"] .court-rail,
  .ebt-imported-page[data-page="home"] .support-rail,
  .ebt-imported-page[data-page="contact"] .campaign-action-rail {
    width: var(--rail);
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .ebt-imported-page[data-page="home"] .bench-statement,
  .ebt-imported-page[data-page="home"] .court-heading,
  .ebt-imported-page[data-page="home"] .support-content,
  .ebt-imported-page[data-page="contact"] .campaign-action-copy {
    max-width: none;
    min-width: 0;
  }

  .ebt-imported-page[data-page="home"] .bench-statement h2,
  .ebt-imported-page[data-page="home"] .court-heading h2,
  .ebt-imported-page[data-page="home"] .support-section h2,
  .ebt-imported-page[data-page="contact"] .campaign-action-intro h2 {
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(34px, 9.6vw, 42px);
    line-height: 1.09;
  }

  .ebt-imported-page[data-page="home"] .bench-statement > p:not(.eyebrow),
  .ebt-imported-page[data-page="home"] .court-heading > p:not(.eyebrow),
  .ebt-imported-page[data-page="home"] .support-lede,
  .ebt-imported-page[data-page="contact"] .campaign-action-intro > p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.72;
  }

  .ebt-imported-page[data-page="home"] .bench-portrait,
  .ebt-imported-page[data-page="home"] .support-visual {
    width: 100%;
    max-width: none;
    height: auto;
    min-width: 0;
    min-height: 0;
    margin: 2px 0 0;
    overflow: hidden;
  }

  .ebt-imported-page[data-page="home"] .bench-portrait img,
  .ebt-imported-page[data-page="home"] .support-visual img {
    width: 100%;
    height: clamp(300px, 76vw, 390px);
    object-fit: cover;
    object-position: center 22%;
  }

  .ebt-imported-page[data-page="home"] .bench-proof {
    width: 100%;
    min-width: 0;
    grid-column: 1;
    grid-template-columns: 1fr;
    margin-top: 10px;
    border-top: 1px solid rgba(168, 112, 68, 0.22);
  }

  .ebt-imported-page[data-page="home"] .bench-proof article {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(168, 112, 68, 0.18);
  }

  .ebt-imported-page[data-page="home"] .bench-proof article + article {
    border-left: 0;
  }

  .ebt-imported-page[data-page="home"] .bench-proof article:last-child {
    border-bottom: 0;
  }

  .ebt-imported-page[data-page="home"] .bench-proof .proof-icon {
    width: 30px;
    height: 30px;
  }

  .ebt-imported-page[data-page="home"] .bench-proof article > span:not(.proof-icon) {
    min-height: 0;
    font-size: 14px;
  }

  .ebt-imported-page[data-page="home"] .bench-proof p {
    max-width: none;
    min-height: 0;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.58;
  }

  .ebt-imported-page[data-page="home"] .court-section::before {
    width: 64vw;
    opacity: 0.16;
    background-size: 380px auto;
  }

  .ebt-imported-page[data-page="home"] .court-priorities,
  .ebt-imported-page[data-page="home"] .support-paths,
  .ebt-imported-page[data-page="contact"] .campaign-action-grid,
  .ebt-imported-page[data-page="contact"] #contact-action .campaign-action-grid {
    width: 100%;
    max-width: none;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2px;
  }

  .ebt-imported-page[data-page="home"] .court-priorities article,
  .ebt-imported-page[data-page="home"] .support-paths a,
  .ebt-imported-page[data-page="contact"] .campaign-action-grid a,
  .ebt-imported-page[data-page="contact"] .campaign-action-grid a:nth-child(even),
  .ebt-imported-page[data-page="contact"] #contact-action .campaign-action-grid a,
  .ebt-imported-page[data-page="contact"] #contact-action .campaign-action-grid a:nth-child(even) {
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 6px 16px;
    align-content: start;
    padding: 22px 0;
    text-align: left;
    border-bottom: 1px solid rgba(168, 112, 68, 0.2);
  }

  .ebt-imported-page[data-page="home"] .court-priorities article::after,
  .ebt-imported-page[data-page="home"] .support-paths a::before,
  .ebt-imported-page[data-page="home"] .support-paths a:last-child::after,
  .ebt-imported-page[data-page="contact"] .campaign-action-grid::before,
  .ebt-imported-page[data-page="contact"] .campaign-action-grid::after,
  .ebt-imported-page[data-page="contact"] .campaign-action-grid a::before,
  .ebt-imported-page[data-page="contact"] .campaign-action-grid a::after,
  .ebt-imported-page[data-page="contact"] #contact-action .campaign-action-grid::before,
  .ebt-imported-page[data-page="contact"] #contact-action .campaign-action-grid::after,
  .ebt-imported-page[data-page="contact"] #contact-action .campaign-action-grid a::before,
  .ebt-imported-page[data-page="contact"] #contact-action .campaign-action-grid a::after {
    display: none;
  }

  .ebt-imported-page[data-page="home"] .court-priorities span,
  .ebt-imported-page[data-page="home"] .support-paths span,
  .ebt-imported-page[data-page="contact"] .campaign-action-grid span,
  .ebt-imported-page[data-page="contact"] #contact-action .campaign-action-grid span {
    grid-column: 1;
    grid-row: 1 / span 2;
    font-size: 24px;
    line-height: 1.1;
  }

  .ebt-imported-page[data-page="home"] .court-priorities h3,
  .ebt-imported-page[data-page="home"] .support-paths strong,
  .ebt-imported-page[data-page="contact"] .campaign-action-grid strong,
  .ebt-imported-page[data-page="contact"] #contact-action .campaign-action-grid strong {
    grid-column: 2;
    font-size: 17px;
    line-height: 1.28;
  }

  .ebt-imported-page[data-page="home"] .court-priorities p,
  .ebt-imported-page[data-page="home"] .support-paths em,
  .ebt-imported-page[data-page="contact"] .campaign-action-grid em,
  .ebt-imported-page[data-page="contact"] #contact-action .campaign-action-grid em {
    grid-column: 2;
    min-height: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.58;
  }

  .ebt-imported-page[data-page="home"] .support-section {
    background: var(--white);
  }

  .ebt-imported-page[data-page="home"] .support-visual {
    order: 1;
  }

  .ebt-imported-page[data-page="home"] .support-content {
    order: 2;
  }

  .ebt-imported-page[data-page="home"] .support-status {
    margin-top: 28px;
  }

  .ebt-imported-page[data-page="contact"] .campaign-action-intro {
    max-width: none;
  }

  .ebt-imported-page[data-page="contact"] .campaign-action-grid {
    margin-top: 30px;
  }

  .ebt-imported-page[data-page="contact"] .campaign-form {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    padding: 26px 20px 22px;
  }

  .ebt-imported-page[data-page="contact"] .campaign-form > p {
    font-size: 27px;
    line-height: 1.08;
  }

  .ebt-imported-page[data-page="contact"] .campaign-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ebt-imported-page[data-page="contact"] .campaign-form input,
  .ebt-imported-page[data-page="contact"] .campaign-form select,
  .ebt-imported-page[data-page="contact"] .campaign-form textarea {
    min-height: 46px;
  }

  .ebt-imported-page[data-page="contact"] .campaign-form textarea {
    min-height: 118px;
  }

  .footer-callout {
    width: var(--rail);
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    padding: 66px 0 58px;
    text-align: center;
  }

  .footer-callout-copy {
    max-width: 370px;
    margin: 0 auto;
  }

  .footer-callout .eyebrow {
    justify-content: center;
    text-align: center;
  }

  .concept-footer .footer-callout h2 {
    max-width: 360px;
    margin-inline: auto;
    font-size: clamp(30px, 8.2vw, 37px);
    line-height: 1.11;
  }

  .footer-callout-copy > p:not(.eyebrow) {
    max-width: 330px;
    margin-inline: auto;
    font-size: 14px;
    line-height: 1.64;
  }

  .footer-callout-actions {
    width: min(100%, 220px);
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 12px;
    margin: 4px auto 0;
  }

  .footer-callout-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .footer-rail {
    width: var(--rail);
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 42px 0 34px;
  }

  .footer-brand {
    max-width: 340px;
  }

  .footer-office {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 30px 0 0;
  }

  .footer-legal {
    width: var(--rail);
    padding: 18px 0 22px;
  }
}

@media (max-width: 430px) {
  :root {
    --rail: min(100% - 32px, 1180px);
    --section-x: 16px;
  }

  .ebt-imported-page[data-page="home"] .concept-hero,
  .concept-hero,
  .ebt-imported-page[data-page="contact"] .concept-hero,
  .ebt-imported-page[data-page="home"] .hero-rail,
  .hero-rail,
  .ebt-imported-page[data-page="contact"] .hero-rail {
    min-height: clamp(650px, 88svh, 720px);
  }

  .ebt-imported-page[data-page="home"] .hero-copy,
  .hero-copy,
  .ebt-imported-page[data-page="contact"] .hero-copy,
  .ebt-imported-page[data-page="home"] .concept-hero h1,
  .concept-hero h1,
  .ebt-imported-page[data-page="contact"] .concept-hero h1 {
    max-width: 305px;
  }

  .ebt-imported-page[data-page="home"] .concept-hero h1,
  .concept-hero h1,
  .ebt-imported-page[data-page="contact"] .concept-hero h1 {
    font-size: clamp(36px, 10vw, 39px);
  }

  .ebt-imported-page[data-page="home"] .hero-subtitle,
  .hero-subtitle,
  .ebt-imported-page[data-page="contact"] .hero-subtitle {
    max-width: 292px;
  }

  .concept-footer .footer-callout h2 {
    max-width: 326px;
    font-size: 31px;
  }

  .footer-callout-copy > p:not(.eyebrow) {
    max-width: 310px;
  }
}

@media (max-width: 820px) {
  .ebt-imported-page[data-page="meet"] .hero-rail,
  .ebt-imported-page[data-page="experience"] .hero-rail,
  .ebt-imported-page[data-page="priorities"] .hero-rail,
  .ebt-imported-page[data-page="endorsements"] .hero-rail,
  .ebt-imported-page[data-page="donate"] .hero-rail,
  .ebt-imported-page[data-page="involved"] .hero-rail {
    width: var(--rail);
    min-height: clamp(660px, 88svh, 730px);
    grid-template-columns: 1fr;
    align-items: center;
    padding: 112px 0 54px;
  }

  .ebt-imported-page[data-page="meet"] .hero-copy,
  .ebt-imported-page[data-page="experience"] .hero-copy,
  .ebt-imported-page[data-page="priorities"] .hero-copy,
  .ebt-imported-page[data-page="endorsements"] .hero-copy,
  .ebt-imported-page[data-page="donate"] .hero-copy,
  .ebt-imported-page[data-page="involved"] .hero-copy {
    max-width: 326px;
  }

  .ebt-imported-page[data-page="meet"] .concept-hero h1,
  .ebt-imported-page[data-page="experience"] .concept-hero h1,
  .ebt-imported-page[data-page="priorities"] .concept-hero h1,
  .ebt-imported-page[data-page="endorsements"] .concept-hero h1,
  .ebt-imported-page[data-page="donate"] .concept-hero h1,
  .ebt-imported-page[data-page="involved"] .concept-hero h1 {
    max-width: 318px;
    font-size: clamp(37px, 10.2vw, 42px);
    line-height: 1.02;
  }

  .ebt-imported-page[data-page="meet"] .hero-subtitle,
  .ebt-imported-page[data-page="experience"] .hero-subtitle,
  .ebt-imported-page[data-page="priorities"] .hero-subtitle,
  .ebt-imported-page[data-page="endorsements"] .hero-subtitle,
  .ebt-imported-page[data-page="donate"] .hero-subtitle,
  .ebt-imported-page[data-page="involved"] .hero-subtitle {
    max-width: 315px;
    font-size: 15px;
    line-height: 1.58;
  }

  .ebt-imported-page[data-page="meet"] .concept-hero .hero-actions,
  .ebt-imported-page[data-page="experience"] .concept-hero .hero-actions,
  .ebt-imported-page[data-page="priorities"] .concept-hero .hero-actions,
  .ebt-imported-page[data-page="endorsements"] .concept-hero .hero-actions,
  .ebt-imported-page[data-page="donate"] .concept-hero .hero-actions,
  .ebt-imported-page[data-page="involved"] .concept-hero .hero-actions {
    display: grid;
    width: min(100%, 318px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
  }

  .ebt-imported-page[data-page="meet"] .concept-hero .button,
  .ebt-imported-page[data-page="experience"] .concept-hero .button,
  .ebt-imported-page[data-page="priorities"] .concept-hero .button,
  .ebt-imported-page[data-page="endorsements"] .concept-hero .button,
  .ebt-imported-page[data-page="donate"] .concept-hero .button,
  .ebt-imported-page[data-page="involved"] .concept-hero .button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 430px) {
  .ebt-imported-page[data-page="meet"] .hero-rail,
  .ebt-imported-page[data-page="experience"] .hero-rail,
  .ebt-imported-page[data-page="priorities"] .hero-rail,
  .ebt-imported-page[data-page="endorsements"] .hero-rail,
  .ebt-imported-page[data-page="donate"] .hero-rail,
  .ebt-imported-page[data-page="involved"] .hero-rail {
    min-height: clamp(650px, 88svh, 720px);
  }

  .ebt-imported-page[data-page="meet"] .hero-copy,
  .ebt-imported-page[data-page="experience"] .hero-copy,
  .ebt-imported-page[data-page="priorities"] .hero-copy,
  .ebt-imported-page[data-page="endorsements"] .hero-copy,
  .ebt-imported-page[data-page="donate"] .hero-copy,
  .ebt-imported-page[data-page="involved"] .hero-copy,
  .ebt-imported-page[data-page="meet"] .concept-hero h1,
  .ebt-imported-page[data-page="experience"] .concept-hero h1,
  .ebt-imported-page[data-page="priorities"] .concept-hero h1,
  .ebt-imported-page[data-page="endorsements"] .concept-hero h1,
  .ebt-imported-page[data-page="donate"] .concept-hero h1,
  .ebt-imported-page[data-page="involved"] .concept-hero h1 {
    max-width: 305px;
  }

  .ebt-imported-page[data-page="meet"] .concept-hero h1,
  .ebt-imported-page[data-page="experience"] .concept-hero h1,
  .ebt-imported-page[data-page="priorities"] .concept-hero h1,
  .ebt-imported-page[data-page="endorsements"] .concept-hero h1,
  .ebt-imported-page[data-page="donate"] .concept-hero h1,
  .ebt-imported-page[data-page="involved"] .concept-hero h1 {
    font-size: clamp(36px, 10vw, 39px);
  }

  .ebt-imported-page[data-page="meet"] .hero-subtitle,
  .ebt-imported-page[data-page="experience"] .hero-subtitle,
  .ebt-imported-page[data-page="priorities"] .hero-subtitle,
  .ebt-imported-page[data-page="endorsements"] .hero-subtitle,
  .ebt-imported-page[data-page="donate"] .hero-subtitle,
  .ebt-imported-page[data-page="involved"] .hero-subtitle {
    max-width: 292px;
  }
}

@media (max-width: 820px) {
  button.concept-menu-toggle[aria-expanded="true"] .menu-toggle-mark span:first-child {
    top: 8px;
    transform: rotate(45deg);
  }

  button.concept-menu-toggle[aria-expanded="true"] .menu-toggle-mark span:last-child {
    top: 8px;
    transform: rotate(-45deg);
  }
}
