:root {
  --purple: #5b08b7;
  --violet: #7f2ddb;
  --blue: #145ec8;
  --teal: #24a9bd;
  --ink: #17171d;
  --gradient: linear-gradient(
    90deg,
    #5b08b7 0%,
    #7f2ddb 35%,
    #145ec8 72%,
    #24a9bd 100%
  );
  --gradient-dark: linear-gradient(
    90deg,
    #320080 0%,
    #5c0eb0 45%,
    #1647bd 100%
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* =========================================================
   ANIMATED TOP MARQUEE
   ========================================================= */

.topbar {
  position: relative;
  z-index: 80;

  width: 100%;

  overflow: hidden;

  color: #ffffff;

  background: linear-gradient(90deg, #320080 0%, #5c0eb0 45%, #1647bd 100%);
}

.topbar-marquee {
  width: 100%;

  overflow: hidden;

  white-space: nowrap;
}

.topbar-track {
  display: flex;

  width: max-content;

  animation: sca-marquee 48s linear infinite;
  animation-delay: 1s;
}

.marquee-group {
  display: flex;
  align-items: center;

  flex-shrink: 0;

  gap: 48px;
  padding-left: 70px;
  padding-right: 48px;

  min-height: 34px;
}

.marquee-message,
.marquee-pillars,
.marquee-mission {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  font-size: 13px;

  letter-spacing: 0.035em;
}

.marquee-message strong {
  font-weight: 900;
}

.marquee-heart {
  font-size: 20px;
  line-height: 1;
}

.marquee-pillars {
  font-weight: 900;

  letter-spacing: 0.07em;
}

.marquee-pillars b {
  opacity: 0.7;
}

.marquee-mission em {
  font-family: Georgia, "Times New Roman", serif;

  font-size: 15px;
  font-weight: 700;
  font-style: italic;
}

.marquee-separator {
  font-size: 11px;

  opacity: 0.65;
}

/* Continuous leftward movement */

@keyframes sca-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Pause while someone points at it */

.topbar-marquee:hover .topbar-track {
  animation-play-state: paused;
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  .topbar-track {
    animation: none;
  }
}

.top-heart {
  font-size: 22px;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: -webkit-sticky;
  position: sticky;

  top: 0;

  z-index: 100;

  width: 100%;

  overflow: visible;

  background: rgba(255, 255, 255, 0.98);

  border-bottom: 1px solid #ece8f5;

  box-shadow: 0 4px 14px rgba(40, 15, 80, 0.08);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  position: relative;
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.brand-emblem {
  position: relative;
  z-index: 80;
  width: 126px;
  height: 126px;
  object-fit: contain;
  flex: 0 0 126px;
  margin-bottom: -45px;
  filter: drop-shadow(0 8px 12px rgba(58, 25, 105, 0.12));
}

.brand-copy {
  display: grid;
  grid-template-columns: max-content;
  min-width: 0;
  width: max-content;
  line-height: 1;
}

.brand-copy > * {
  grid-column: 1;
}

.brand-small {
  width: 100%;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #17171d;
  white-space: nowrap;
  text-align: left;
}

.brand-large {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
}

.brand-large b:first-child {
  color: #6521be;
}

.brand-large b:last-child {
  color: #347bc3;
}

.brand-divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #6521be;
}

.brand-divider i {
  height: 1px;
  flex: 1;
  background: var(--gradient);
}

.brand-divider span {
  font-size: 16px;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;

  gap: 19px;

  font-size: 13px;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a:not(.donate)::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 2px;

  width: 100%;
  height: 2px;

  background: var(--gradient);

  transform: translateX(-50%) scaleX(0);
  transform-origin: center;

  transition: transform 0.28s ease;
}

.nav a:not(.donate).active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav .donate {
  padding: 10px 17px;
  color: #fff;
  border-radius: 8px;
  background: var(--gradient-dark);
  box-shadow: 0 6px 15px rgba(70, 23, 150, 0.18);
}

.nav .donate::after {
  display: none;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--purple);
  font-size: 29px;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  z-index: 10;
  width: 100%;
  overflow: hidden;
  background: #f3e7fa;
}

/*
   IMPORTANT:
   hero-beach.png itself already contains the light-purple mist
   on the left and the beach scene on the right. We display it
   as an actual responsive image rather than cropping it as a
   CSS background.
*/
.hero-background {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* Live type stays separate from the campaign artwork. */
.hero-fund-name {
  position: absolute;
  left: 12.4%;
  top: 61%;
  width: 30%;
  text-align: center;
  font-weight: 900;
  color: #5b08b7;
  line-height: 1.02;
}

.hero-fund-name span,
.hero-fund-name strong {
  display: block;
}

.hero-fund-name span {
  font-size: clamp(14px, 1.2vw, 24px);
}

.hero-fund-name strong {
  margin-top: 2px;
  font-size: clamp(18px, 1.65vw, 32px);
  color: #174fae;
}

.hero-pillars {
  position: absolute;
  left: 8%;
  top: 73%;
  width: 39%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7vw;
  font-weight: 900;
  font-size: clamp(11px, 0.92vw, 18px);
}

.hero-pillars span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-pillars b {
  color: #5b08b7;
}

.hero-button {
  position: absolute;
  left: 13.2%;
  top: 81%;
  min-width: 250px;
  padding: 13px 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--gradient);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(75, 24, 150, 0.14);
}

.hero-button span {
  font-size: 25px;
  line-height: 0.7;
}

/* =========================================================
   PRIMARY HERO MESSAGE
   ========================================================= */

.hero-message-art {
  position: absolute;

  left: 13%;
  top: 6%;

  width: 26%;
  height: 49%;

  object-fit: contain;
  object-position: center top;

  z-index: 6;
}

/* =========================================================
   TEMPORARY NEXT SECTION
   ========================================================= */

.temporary-next {
  padding: 48px 0;
  background: #fff;
}

.temporary-next h2 {
  margin: 0 0 8px;
  color: var(--purple);
}

/* =========================================================
   FOUR PILLARS
   ========================================================= */

.pillars-section {
  position: relative;
  z-index: 20;

  background: linear-gradient(180deg, rgba(244, 237, 255, 0.95), #ffffff 78%);

  border-bottom: 1px solid #e8e1f3;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pillar-card {
  min-height: 112px;

  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;

  gap: 16px;

  padding: 22px 24px;

  border-right: 1px solid #ded7ed;
}

.pillar-card:last-child {
  border-right: 0;
}

.pillar-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  color: var(--purple);
}

.pillar-icon svg {
  width: 52px;
  height: 52px;
}

.pillar-research {
  color: #6131c7;
}

.pillar-support {
  color: #1769c7;
}

.pillar-hope {
  color: var(--teal);
}

.pillar-copy h3 {
  margin: 0 0 5px;

  font-size: 16px;
  font-weight: 900;

  text-transform: uppercase;

  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pillar-copy p {
  margin: 0;

  max-width: 220px;

  color: #363b46;

  font-size: 13px;
  line-height: 1.4;
}

/* =========================================================
   WHAT IS SPINOCEREBELLAR ATAXIA
   ========================================================= */

.sca-intro {
  padding: 56px 0 62px;
  background: linear-gradient(135deg, #ffffff 0%, #fbf8ff 55%, #f3f8ff 100%);
}

.sca-intro-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 58px;
  align-items: center;
}

/* LEFT EMBLEM */

.sca-intro-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sca-emblem-panel {
  width: min(330px, 100%);

  padding: 24px;

  border-radius: 26px;

  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(126, 45, 211, 0.14),
      transparent 38%
    ),
    radial-gradient(
      circle at 80% 75%,
      rgba(20, 94, 200, 0.12),
      transparent 38%
    ),
    #ffffff;

  border: 1px solid #e4dcf2;

  box-shadow: 0 18px 45px rgba(70, 34, 120, 0.1);
}

.sca-emblem-panel img {
  width: 100%;
  height: auto;
}

/* RIGHT CONTENT */

.section-eyebrow {
  display: block;

  margin-bottom: 9px;

  color: var(--purple);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.sca-intro-copy h2 {
  margin: 0 0 18px;

  color: var(--purple);

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.04;
}

.sca-intro-copy > p {
  margin: 0 0 15px;

  color: #353943;

  font-size: 16px;
  line-height: 1.65;
}

/* MISSION BOX */

.sca-mission {
  margin-top: 24px;

  display: flex;
  align-items: flex-start;

  gap: 17px;

  padding: 19px 22px;

  border-radius: 16px;

  background: linear-gradient(
    100deg,
    rgba(111, 31, 190, 0.1),
    rgba(20, 94, 200, 0.08)
  );

  border: 1px solid #dfd3f1;
}

.mission-heart {
  flex: 0 0 auto;

  color: var(--purple);

  font-size: 40px;
  line-height: 1;
}

.sca-mission strong {
  display: block;

  margin-bottom: 5px;

  color: var(--purple);

  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;

  font-size: 21px;
}

.sca-mission p {
  margin: 0;

  color: #353943;

  font-size: 14px;
  line-height: 1.5;
}

/* =========================================================
   FOUR ACTION CARDS
   ========================================================= */

.action-cards-section {
  padding: 10px 0 54px;

  background: linear-gradient(180deg, #f8f5ff 0%, #ffffff 100%);
}

.action-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

/* CARD */

.action-card {
  position: relative;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid #dcd4ee;
  border-radius: 16px;

  box-shadow: 0 10px 28px rgba(69, 31, 119, 0.08);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.action-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 16px 34px rgba(69, 31, 119, 0.13);
}

/* IMAGE */

.action-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: #eeeeee;
}

.action-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.35s ease;
}

.action-card:hover .action-card-image img {
  transform: scale(1.035);
}

/* CONTENT */

.action-card-content {
  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 20px 20px 21px;
}

.action-card-content h3 {
  margin: 0 0 9px;

  color: var(--purple);

  font-size: 20px;
  font-weight: 900;

  line-height: 1.1;
}

.action-card-content p {
  margin: 0 0 20px;

  color: #3d414b;

  font-size: 14px;
  line-height: 1.5;
}

/* BUTTON */

.action-card-button {
  margin-top: auto;

  width: fit-content;

  display: inline-flex;
  align-items: center;

  gap: 14px;

  padding: 9px 17px;

  border-radius: 999px;

  color: #ffffff;

  background: var(--gradient);

  font-size: 12px;
  font-weight: 900;

  text-transform: uppercase;

  box-shadow: 0 5px 14px rgba(83, 25, 161, 0.15);
}

.action-card-button span {
  font-size: 20px;
  line-height: 0.7;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  color: #ffffff;

  background: linear-gradient(90deg, #310078 0%, #5404a8 47%, #173db5 100%);
}

.footer-grid {
  min-height: 66px;

  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;

  align-items: center;

  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;

  gap: 11px;

  font-size: 21px;
}

.footer-heart {
  font-size: 31px;
  line-height: 1;
}

.footer-brand strong {
  font-weight: 800;
}

.footer-pillars {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 10px;

  font-size: 14px;
  font-weight: 700;
}

.footer-pillars b {
  font-weight: 400;
}

.footer-copyright {
  text-align: right;

  font-size: 12px;
  font-weight: 500;

  opacity: 0.92;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1080px) {
  .header-inner {
    min-height: 86px;
  }

  .action-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-emblem {
    width: 108px;
    height: 108px;
    flex-basis: 108px;
    margin-bottom: -37px;
  }

  .brand-small {
    font-size: 13px;
  }

  .brand-large {
    font-size: 23px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    padding: 18px 22px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 16px 35px rgba(55, 30, 90, 0.14);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 13px 8px;
    border-bottom: 1px solid #eee;
  }

  .nav .donate {
    margin-top: 10px;
    text-align: center;
    border-bottom: 0;
  }

  .hero-message-art {
    left: 12%;
    top: 6%;
    width: 30%;
    height: 49%;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;

    gap: 10px;

    padding: 18px 0;

    text-align: center;
  }

  .footer-brand,
  .footer-pillars {
    justify-content: center;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-pillars {
    flex-wrap: wrap;
  }
  .action-cards-section {
    padding: 8px 0 38px;
  }

  .action-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .action-card {
    max-width: 520px;
    width: 100%;

    margin: 0 auto;
  }

  .action-card-content {
    padding: 18px;
  }
  .wrap {
    width: min(100% - 20px, 1180px);
  }

  .topbar-inner {
    min-height: 30px;
    font-size: 10px;
  }

  .header-inner {
    min-height: 74px;
    gap: 9px;
  }

  .brand {
    gap: 9px;
  }

  .brand-emblem {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
    margin-bottom: -25px;
  }

  .brand-copy {
    min-width: 0;
    width: max-content;
  }

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

  .brand-large {
    font-size: 16px;
    gap: 4px;
  }

  .brand-divider {
    width: 100%;
    margin-top: 5px;
  }

  .nav {
    top: 74px;
  }

  /*
       On phones the full hero image still remains a single image,
       but a taller viewport gives the overlay artwork room to breathe.
    */
  .hero {
    min-height: 660px;
  }

  .hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      180deg,
      rgba(244, 228, 251, 0.88) 0%,
      rgba(244, 228, 251, 0.8) 42%,
      rgba(255, 255, 255, 0.18) 58%,
      rgba(255, 255, 255, 0.04) 100%
    );
    pointer-events: none;
  }

  .hero-overlay {
    z-index: 5;
  }

  .hero-fund-name {
    left: 8%;
    top: 37%;
    width: 84%;
  }

  .hero-fund-name span {
    font-size: 16px;
  }

  .hero-fund-name strong {
    font-size: 23px;
  }

  .hero-pillars {
    left: 4%;
    top: 47%;
    width: 92%;
    gap: 7px;
    font-size: 11px;
  }

  .hero-button {
    left: 50%;
    top: 54%;
    transform: translateX(-50%);
    min-width: 230px;
    padding: 12px 19px;
  }
  .hero-message-art {
    left: 5%;
    top: 5%;

    width: 90%;
    height: 34%;

    object-fit: contain;
    object-position: center top;
  }
}

/* =========================================================
   FINAL MOBILE OVERRIDE
   ========================================================= */

@media screen and (max-width: 700px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    margin: 0;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .wrap {
    width: calc(100% - 24px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* ================= HEADER ================= */

  .topbar-inner {
    padding: 6px 10px;
    font-size: 10px;
    text-align: center;
    flex-wrap: wrap;
  }

  .header-inner {
    min-height: 76px;
    width: 100%;
    gap: 8px;
  }

  .brand {
    min-width: 0 !important;
    max-width: calc(100% - 55px);
    gap: 8px;
  }

  .brand-emblem {
    width: 76px !important;
    height: 76px !important;
    flex: 0 0 76px !important;
    margin-bottom: -22px !important;
  }

  .brand-copy {
    display: grid !important;
    grid-template-columns: max-content !important;
    min-width: 0 !important;
    width: max-content !important;
  }

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

  .brand-large {
    font-size: 16px !important;
    flex-wrap: wrap;
    gap: 3px;
  }

  .brand-divider {
    width: 100% !important;
    max-width: none !important;
  }

  .menu-toggle {
    display: block !important;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav {
    display: none !important;

    position: absolute;
    top: 76px;
    left: 0;
    right: 0;

    width: 100%;

    padding: 14px 18px;

    background: #fff;

    flex-direction: column;
    align-items: stretch;

    z-index: 100;
  }

  .nav.open {
    display: flex !important;
  }

  .nav a {
    width: 100%;
    padding: 12px 8px;
    text-align: center;
  }

  /* ================= HERO ================= */

  .hero {
    position: relative;
    width: 100% !important;
    min-height: 650px !important;
    overflow: hidden !important;
  }

  .hero-background {
    position: absolute !important;
    inset: 0;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: 67% center !important;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
      180deg,
      rgba(245, 230, 252, 0.94) 0%,
      rgba(245, 230, 252, 0.88) 46%,
      rgba(255, 255, 255, 0.2) 65%,
      rgba(255, 255, 255, 0.04) 100%
    );

    z-index: 2;
    pointer-events: none;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
  }

  .hero-message-art {
    position: absolute !important;

    top: 5% !important;
    left: 50% !important;

    width: 72% !important;
    height: 32% !important;

    transform: translateX(-50%);

    object-fit: contain !important;
    object-position: center top !important;
  }

  .hero-fund-name {
    top: 38% !important;
    left: 5% !important;

    width: 90% !important;

    text-align: center;
  }

  .hero-fund-name span {
    font-size: 15px !important;
  }

  .hero-fund-name strong {
    font-size: 22px !important;
  }

  .hero-pillars {
    top: 48% !important;
    left: 3% !important;

    width: 94% !important;

    justify-content: center;
    flex-wrap: wrap;

    gap: 5px 8px;

    font-size: 10px !important;
  }

  .hero-button {
    top: 57% !important;
    left: 50% !important;

    transform: translateX(-50%);

    width: auto !important;
    min-width: 220px !important;

    padding: 11px 18px !important;

    white-space: nowrap;
  }

  /* ================= FOUR PILLARS ================= */

  .pillars-grid {
    width: 100% !important;

    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .pillar-card {
    width: 100% !important;

    min-height: 0 !important;

    grid-template-columns: 58px 1fr !important;

    padding: 18px 16px !important;

    text-align: left !important;

    border-right: 0 !important;
    border-bottom: 1px solid #ded7ed !important;
  }

  .pillar-card:last-child {
    border-bottom: 0 !important;
  }

  .pillar-icon {
    margin: 0 !important;
  }

  /* ================= WHAT IS SCA ================= */

  .sca-intro {
    padding: 38px 0 !important;
  }

  .sca-intro-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;

    width: 100% !important;

    gap: 28px !important;
  }

  .sca-intro-visual {
    width: 100%;
  }

  .sca-emblem-panel {
    width: 240px !important;
    max-width: 78% !important;

    margin: 0 auto;
  }

  .sca-intro-copy {
    width: 100% !important;
    text-align: center;
  }

  .sca-intro-copy h2 {
    font-size: 30px !important;
    line-height: 1.08;
  }

  .sca-intro-copy > p {
    font-size: 15px !important;
    line-height: 1.55;
    text-align: left;
  }

  .sca-mission {
    width: 100%;
    text-align: left;
  }

  /* ================= FOUR ACTION CARDS ================= */

  .action-cards-grid {
    width: 100% !important;

    display: grid !important;
    grid-template-columns: 1fr !important;

    gap: 18px !important;
  }

  .action-card {
    width: 100% !important;
    max-width: 500px !important;

    margin: 0 auto !important;
  }

  .action-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .action-card-content {
    padding: 18px !important;
  }

  /* ================= FOOTER ================= */

  .footer-grid {
    width: 100% !important;

    display: grid !important;
    grid-template-columns: 1fr !important;

    gap: 10px;

    padding: 18px 0;

    text-align: center;
  }

  .footer-brand,
  .footer-pillars {
    justify-content: center !important;
    flex-wrap: wrap;
  }

  .footer-copyright {
    text-align: center !important;
  }
  .sca-intro-copy {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .sca-mission {
    width: calc(100% - 20px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .marquee-group {
    gap: 34px;
    padding-right: 34px;
    min-height: 31px;
  }

  .marquee-message,
  .marquee-pillars,
  .marquee-mission {
    font-size: 10px;
  }

  .marquee-mission em {
    font-size: 12px;
  }

  .topbar-track {
    animation-duration: 58s;
  }
}
