.homepage-intro {
  --intro-bg: var(--primary);
  --intro-text-color: var(--secondary);
  --intro-padding-block: 5rem;
  --intro-padding-inline: 2rem;
  --intro-gap: 4rem;
  --intro-badge-size: clamp(12rem, 30vw, 22rem);
  --intro-btn-bg: var(--secondary);
  --intro-btn-color: var(--bs-white);
  background: var(--intro-bg);
  color: var(--intro-text-color);
  padding-block: var(--intro-padding-block);
  padding-inline: 0;
  position: relative;
  overflow: visible;
}

.homepage-intro__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--intro-gap);
  align-items: center;
}

.homepage-intro__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-inline-size: 42rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.homepage-intro__content>* {
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02rem;
}

.homepage-intro__headline {
  font-weight: 700;
  margin: 0;
  color: var(--intro-text-color);
}

.homepage-intro__headline--emphasis {
  font-style: italic;
}

.homepage-intro__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.homepage-intro__body p {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02rem;
}

.homepage-intro__body> :last-child {
  font-weight: 700;
}

.homepage-intro__statement strong {
  font-weight: 700;
}

.homepage-intro__statement em {
  font-style: italic;
}

.homepage-intro__badge {
  position: relative;
  inline-size: var(--intro-badge-size);
  block-size: var(--intro-badge-size);
  flex-shrink: 0;
  color: #fff;
}

.homepage-intro__circular-text {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  transform-origin: 50% 50%;
  animation: homepage-intro-rotate 40s linear infinite;
}

.homepage-intro__circular-text-path {
  font-family: var(--font-nav, "Manrope", sans-serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  fill: currentColor;
}

@keyframes homepage-intro-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage-intro__circular-text {
    animation: none;
  }
}

.btn-intro {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--intro-btn-bg);
  color: var(--intro-btn-color);
  font-family: var(--font-nav, "Manrope", sans-serif);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1rem 2rem;
  border-radius: 2rem;
  border: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
  align-self: flex-start;
}

.btn-intro:hover {
  background: color-mix(in srgb, var(--intro-btn-bg) 85%, white);
  color: var(--intro-btn-color);
  text-decoration: none;
  transform: translateX(0.25rem);
  box-shadow: 0 4px 12px rgb(25 0 81 / 25%);
}

.btn-intro:focus-visible {
  background: var(--intro-btn-bg);
  color: var(--intro-btn-color);
  outline: 3px solid var(--intro-btn-bg);
  outline-offset: 0.25rem;
  text-decoration: none;
}

.btn-intro__icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn-intro:hover .btn-intro__icon {
  transform: translateX(0.25rem);
}

@media (prefers-reduced-motion: reduce) {

  .btn-intro,
  .btn-intro__icon {
    transition: none;
  }

  .btn-intro:hover {
    transform: none;
  }

  .btn-intro:hover .btn-intro__icon {
    transform: none;
  }
}

@media (width <=992px) {
  .homepage-intro__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .homepage-intro__content {
    margin-block-start: calc(var(--intro-badge-size) * 0.1);
  }

  .homepage-intro__badge {
    position: absolute;
    inset-block-start: 0;
    inset-inline-end: calc(-1 * var(--page-inline-padding, 3rem));
    margin: 0;
    transform: translateY(-40%) translateX(20%);
    pointer-events: none;
  }
}

@media (width <=600px) {
  .homepage-intro {
    padding-block: 3.5rem;
  }

  .homepage-intro__grid {
    gap: 2.5rem;
  }

  .homepage-intro__content {
    gap: 1.5rem;
    margin-block-start: calc(var(--intro-badge-size) * 0.2);
  }

  .homepage-intro__circular-text-path {
    font-size: 0.85rem;
  }
}

/* Homepage Platform Section */
.homepage-platform {
  --platform-bg: var(--light);
  --platform-text-color: var(--secondary);
  --platform-padding-block: 5rem;
  --platform-gap: 3.5rem;
  --platform-pill-bg: #b3f5f0;
  --platform-pill-text: var(--secondary);
  --platform-pill-size: 20rem;
  --platform-pill-shadow: 0 8px 24px rgb(0 0 0 / 8%);
  --platform-btn-bg: var(--secondary);
  --platform-btn-color: var(--bs-white);
  --platform-btn-radius: 2rem;
  background: var(--platform-bg);
  color: var(--platform-text-color);
  padding-block: var(--platform-padding-block);
  padding-inline: 0;
  text-align: center;
}

.homepage-platform .page-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--platform-gap);
}

.homepage-platform__headline {
  margin-left: 1rem;
}

.homepage-block__headline--emphasis {
  font-style: italic;
}

.homepage-platform__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  inline-size: 100%;
  max-inline-size: 68rem;
}

.homepage-platform__pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  inline-size: 100%;
  max-inline-size: var(--platform-pill-size);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--platform-pill-bg);
  color: var(--platform-pill-text);
  text-align: center;
  padding: 2.5rem 2rem;
  box-shadow: var(--platform-pill-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.homepage-platform__pillar:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 12px 32px rgb(0 0 0 / 12%);
}

.homepage-platform__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 3rem;
  block-size: 3rem;
  color: var(--secondary);
}

.homepage-platform__icon svg {
  inline-size: 100%;
  block-size: 100%;
}

.homepage-platform__pillar-title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.homepage-platform__pillar-body {
  margin: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.btn-platform {
  display: inline-flex;
  align-items: center;
  background: var(--platform-btn-bg);
  color: var(--platform-btn-color);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1.25rem 2.5rem;
  border-radius: var(--platform-btn-radius);
  border: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-platform:hover {
  background: color-mix(in srgb, var(--platform-btn-bg) 85%, black);
  color: var(--platform-btn-color);
  text-decoration: none;
  transform: translateY(-0.125rem);
  box-shadow: 0 6px 16px rgb(25 0 81 / 30%);
}

.btn-platform:focus-visible {
  background: var(--platform-btn-bg);
  color: var(--platform-btn-color);
  outline: 3px solid var(--platform-btn-bg);
  outline-offset: 0.25rem;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {

  .homepage-platform__pillar,
  .btn-platform {
    transition: none;
  }

  .homepage-platform__pillar:hover,
  .btn-platform:hover {
    transform: none;
  }
}

@media (width <=992px) {
  .homepage-platform__pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .homepage-platform__pillar:last-child {
    grid-column: 1 / -1;
    max-inline-size: 17rem;
    /* 85% of 20rem */
  }
}

@media (width <=768px) {
  .homepage-block__headline {
    width: fit-content;
    margin-inline: auto;
  }

  .homepage-platform {
    padding-block: 4rem;
  }

  .homepage-platform__pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
  }

  .homepage-platform__pillar {
    /* Keep circles comfortably sized on tablet/mobile while centering them.
           Use the existing token-based max size to avoid Sass `min()` errors. */
    max-inline-size: var(--platform-pill-size);
  }

  .homepage-platform__pillar:last-child {
    grid-column: 1;
    max-inline-size: var(--platform-pill-size);
  }
}

@media (width <=480px) {
  .homepage-platform {
    padding-block: 3rem;
  }

  .homepage-platform .page-shell {
    gap: 2.5rem;
  }

  /*
    .homepage-block__headline {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    */
  .homepage-platform__pillar {
    padding: 2rem 1.5rem;
  }

  .btn-platform {
    font-size: 0.75rem;
    padding: 1rem 2rem;
  }
}

/* Homepage Meet Q Section
   ========================================================================== */
.homepage-meet-q {
  --homepage-meet-q-bg: var(--primary);
  --homepage-meet-q-padding-block: 4rem;
  --homepage-meet-q-heading-size: clamp(2.25rem, 3vw, 3rem);
  --homepage-meet-q-body-size: 1.4rem;
  --homepage-meet-q-card-radius: 1.5rem;
  --homepage-meet-q-card-shadow: 0 1.25rem 3rem rgb(0 0 0 / 25%);
  --homepage-meet-q-motif-opacity: 0.05;
  --homepage-meet-q-motif-size: clamp(4rem, 8vw, 10rem);
  background: var(--homepage-meet-q-bg);
  padding-block: var(--homepage-meet-q-padding-block);
  position: relative;
  color: var(--secondary);
  overflow: hidden;
}

/* Background motif */
.homepage-meet-q::before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--homepage-meet-q-motif-size);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  opacity: var(--homepage-meet-q-motif-opacity);
  line-height: 1;
  white-space: nowrap;
  transform: rotate(-12deg) translateX(-10%);
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.homepage-meet-q .page-shell {
  position: relative;
  z-index: 1;
}

.homepage-meet-q__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.homepage-meet-q__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  column-gap: 4rem;
  row-gap: 2.5rem;
  align-items: center;
}

.homepage-meet-q__headline {
  margin: 0;
  font-size: var(--homepage-meet-q-heading-size);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--secondary);
}

.homepage-meet-q__body {
  margin: 0;
  font-size: var(--homepage-meet-q-body-size);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.02em;
  max-inline-size: 35ch;
}

.homepage-meet-q__content>.homepage-block__headline {
  grid-column: 1;
  grid-row: 1;
}

.homepage-meet-q__body {
  grid-column: 1;
  grid-row: 2;
  text-align: left;
}

.homepage-meet-q .btn-meet-q {
  grid-column: 1;
  grid-row: 3;
}

.btn-meet-q {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-nav, "Manrope", sans-serif);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1.25rem 2.5rem;
  border-radius: 2rem;
  border: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-meet-q:hover {
  background: color-mix(in srgb, var(--secondary) 85%, black);
  color: #fff;
  text-decoration: none;
  transform: translateY(-0.125rem);
  box-shadow: 0 6px 16px rgb(25 0 81 / 30%);
}

.btn-meet-q:focus-visible {
  background: var(--secondary);
  color: #fff;
  outline: 3px solid var(--secondary);
  outline-offset: 0.25rem;
  text-decoration: none;
}

.homepage-meet-q__media {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 4;
}

.homepage-meet-q__video-card {
  border-radius: var(--homepage-meet-q-card-radius);
  box-shadow: var(--homepage-meet-q-card-shadow);
  overflow: hidden;
  background: #000;
}

.homepage-meet-q__video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 16/9) {
  .homepage-meet-q__video-shell {
    position: relative;
    padding-top: 56.25%;
    height: 0;
  }

  .homepage-meet-q__video-shell>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.homepage-meet-q__video-thumb {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.homepage-meet-q__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.homepage-meet-q__play svg {
  filter: drop-shadow(0 4px 12px rgb(0 0 0 / 30%));
  transition: transform 0.2s ease;
}

.homepage-meet-q__play:hover svg {
  transform: scale(1.1);
}

.homepage-meet-q__play:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: -3px;
}

/* YouTube iframe when loaded */
.homepage-meet-q__video-shell iframe {
  inline-size: 100%;
  block-size: 100%;
  border: 0;
}

/* Tablet responsive */
@media (width <=992px) {
  .homepage-meet-q__grid {
    gap: 3rem;
  }
}

/* Mobile responsive */
@media (width <=768px) {
  .homepage-meet-q {
    padding-block: 3rem;
  }

  .homepage-meet-q::before {
    font-size: calc(var(--homepage-meet-q-motif-size, 8rem) * 0.6);
    transform: rotate(-12deg) translateY(-20%);
  }

  .homepage-meet-q__grid {
    gap: 2.5rem;
  }

  .homepage-meet-q__content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .homepage-meet-q__content>.homepage-block__headline,
  .homepage-meet-q__media,
  .homepage-meet-q__body,
  .homepage-meet-q .btn-meet-q {
    grid-column: 1;
    grid-row: auto;
  }

  /* Ensure the video stays full-width when the iframe replaces the thumbnail */
  .homepage-meet-q__media,
  .homepage-meet-q__video-card,
  .homepage-meet-q__video-shell {
    inline-size: 100%;
  }

  .homepage-meet-q__body {
    max-inline-size: 100%;
  }

  .homepage-meet-q__headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }

  .btn-meet-q {
    font-size: 0.75rem;
    padding: 1rem 2rem;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

  .homepage-meet-q__play,
  .homepage-meet-q__play svg,
  .btn-meet-q {
    transition: none;
  }

  .homepage-meet-q__play:hover svg,
  .btn-meet-q:hover {
    transform: none;
  }
}

/* ==========================================
   Homepage About The Opportunity Party
   ========================================== */
.homepage-about {
  --homepage-about-bg: var(--secondary);
  --homepage-about-text-color: var(--bs-white);
  --homepage-about-padding-block: 7rem;
  --homepage-about-gap: 4rem;
  --homepage-about-circle-size: clamp(18rem, 32vw, 24rem);
  --homepage-about-body-size: 1.125rem;
  --homepage-about-heading-color: var(--primary);
  --homepage-about-cta-bg: var(--primary);
  --homepage-about-cta-color: var(--secondary);
  background: var(--homepage-about-bg);
  color: var(--homepage-about-text-color);
  padding-block: var(--homepage-about-padding-block);
  padding-inline: 0;
  position: relative;
  overflow: hidden;
}

.homepage-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--homepage-about-gap);
  align-items: center;
}

/* Media/Image styles */
.homepage-about__media {
  display: flex;
  justify-content: center;
}

.homepage-about__media-inner {
  inline-size: var(--homepage-about-circle-size);
  block-size: var(--homepage-about-circle-size);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.homepage-about__image {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  display: block;
}

/* Content column */
.homepage-about__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-inline-size: 36rem;
}

.homepage-about__headline {
  color: var(--homepage-about-heading-color);
}

.homepage-about__body {
  margin: 0;
  font-size: var(--homepage-about-body-size);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* CTA Button */
.btn-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--homepage-about-cta-bg);
  color: var(--homepage-about-cta-color);
  padding: 1.125rem 2.5rem;
  border: 2px solid transparent;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  align-self: flex-start;
  position: relative;
}

.btn-about:hover {
  background: var(--homepage-about-cta-bg);
  color: var(--homepage-about-cta-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
  text-decoration: none;
  filter: brightness(0.9);
}

.btn-about:focus-visible {
  outline: 3px solid var(--homepage-about-heading-color);
  outline-offset: 2px;
}

/* Tablet responsive */
@media (width <=992px) {
  .homepage-about__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 3rem;
  }

  .homepage-about__media-inner {
    inline-size: clamp(14rem, 40vw, 20rem);
    block-size: clamp(14rem, 40vw, 20rem);
  }
}

/* Mobile responsive */
@media (width <=768px) {
  .homepage-about {
    padding-block: 3rem;
  }

  .homepage-about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .homepage-about__media {
    order: -1;
    /* Image first on mobile */
  }

  .homepage-about__media-inner {
    inline-size: clamp(12rem, 70vw, 18rem);
    block-size: clamp(12rem, 70vw, 18rem);
    margin: 0 auto;
  }

  .homepage-about__content {
    text-align: left;
    align-items: flex-start;
    max-inline-size: 100%;
    padding-inline: 0;
  }

  .homepage-about__headline {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .homepage-about__body {
    font-size: 1rem;
  }

  .btn-about {
    font-size: 0.75rem;
    padding: 1rem 2rem;
  }
}

/* Small mobile */
@media (width <=480px) {
  .homepage-about__media-inner {
    inline-size: clamp(10rem, 65vw, 14rem);
    block-size: clamp(10rem, 65vw, 14rem);
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .btn-about {
    transition: none;
  }

  .btn-about:hover {
    transform: none;
  }
}

/* =================================================================
   Homepage Get Involved Section
   ================================================================= */
.homepage-get-involved {
  --homepage-get-involved-bg: var(--bs-white);
  --homepage-get-involved-text-color: var(--secondary);
  --homepage-get-involved-padding-block: 5rem;
  --homepage-get-involved-gap: 2.5rem;
  --homepage-get-involved-card-bg: var(--primary);
  --homepage-get-involved-card-radius: 1.75rem;
  --homepage-get-involved-card-shadow: 0 8px 24px rgb(0 0 0 / 8%);
  background: var(--homepage-get-involved-bg);
  color: var(--homepage-get-involved-text-color);
  padding-block: var(--homepage-get-involved-padding-block);
  padding-inline: 0;
  position: relative;
}

/* Section heading - reuses shared homepage block headline styles */
.homepage-get-involved .homepage-block__headline {
  text-align: left;
  margin-block-end: 3rem;
}

/* Cards container */
.homepage-get-involved__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--homepage-get-involved-gap);
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Target large screens */
@media (width >=2000px) {
  .page-shell {
    max-width: 1440px;
    /* Optional: Reduce padding if it's still subtracting */
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Individual card */
.homepage-get-involved__card {
  background: var(--homepage-get-involved-card-bg);
  border-radius: var(--homepage-get-involved-card-radius);
  box-shadow: var(--homepage-get-involved-card-shadow);
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  inline-size: 100%;
  align-items: flex-start;
}

.homepage-get-involved__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Card icon */
.homepage-get-involved__icon {
  inline-size: 3rem;
  block-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.homepage-get-involved__icon svg {
  inline-size: 100%;
  block-size: 100%;
}

/* Card title */
.homepage-get-involved__card-title {
  color: var(--secondary);
  margin: 0;
  line-height: 1.2;
}

.party-information .homepage-get-involved__card-title {
  font-size: 1.5rem;
}

/* Card body text */
.homepage-get-involved__card-body {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--secondary);
  margin: 0;
  flex-grow: 1;
  max-inline-size: 20rem;
}

/* Tablet responsive */
@media (width <=1400px) {
  .homepage-get-involved__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .homepage-get-involved__card {
    padding: 2rem 1.75rem;
  }

  .homepage-get-involved__card-title {
    font-size: 1.5rem;
  }

  .homepage-get-involved__card-body {
    font-size: 1rem;
  }
}

/* Mobile responsive */
@media (width <=768px) {
  .homepage-get-involved {
    padding-block: 3rem;
  }

  .homepage-get-involved__cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
  }

  .homepage-get-involved__card {
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    /* Constrain single-column cards so they don't feel edge-to-edge wide */
    inline-size: 100%;
    max-inline-size: 24rem;
  }

  .homepage-get-involved__icon {
    inline-size: 3rem;
    block-size: 3rem;
  }

  .homepage-get-involved__card-title {
    font-size: 1.375rem;
  }

  .homepage-get-involved__card-body {
    font-size: 1rem;
    max-inline-size: 100%;
  }
}

/* Small mobile */
@media (width <=480px) {
  .homepage-get-involved__card {
    padding: 1.75rem 1.25rem;
  }

  .homepage-get-involved__card-body {
    font-size: 0.9375rem;
  }
}

/* Shared CTA spacing for homepage block buttons */
.homepage-intro .btn-intro,
.homepage-platform .btn-platform,
.homepage-meet-q .btn-meet-q,
.homepage-about .btn-about {
  padding: 1rem 2rem;
  letter-spacing: 0.35em;
}

/* Modern homepage sections */
.homepage-hero-new {
  position: relative;
  display: block;
  isolation: isolate;
  overflow: hidden;
  block-size: 80vh;
  block-size: 80svh;
  min-block-size: 500px;
  max-block-size: 700px;
  color: #fff;
  background-color: #000;
}

.homepage-hero-new .hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.homepage-hero-new .hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.homepage-hero-new .hero__foreground {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: 135%;
  max-width: none;
  transform: translate(-43%, 5%);
  pointer-events: none;
}

.homepage-hero-new .hero__foreground img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.homepage-hero-new .hero__shell {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  pointer-events: none;
}

.homepage-hero-new .hero__content {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  max-inline-size: none;
  margin: 0;
  margin-inline: 0;
  padding: 2rem 1.25rem;
  text-align: center;
  pointer-events: auto;
}

.homepage-hero-new .hero__headline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: clamp(1.9rem, 10vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.homepage-hero-new .hero__headline-main,
.homepage-hero-new .hero__headline-emphasis {
  display: block;
  flex: 0 0 auto;
}

.homepage-hero-new .hero__headline-main {
  padding-right: 0.2em;
}

.homepage-hero-new .hero__headline-emphasis {
  padding: 0.1em 0.15em;
  background-color: var(--brand-teal);
}

.homepage-hero-new .hero__subline {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

@media (width >=576px) {
  .homepage-hero-new {
    block-size: 100vh;
    block-size: 100svh;
    max-block-size: 800px;
  }

  .homepage-hero-new .hero__foreground {
    width: 125%;
    transform: translateX(-45%);
  }

  .homepage-hero-new .hero__content {
    padding-bottom: 3.5rem;
  }

  .homepage-hero-new .hero__subline {
    font-size: 1.5rem;
  }
}

@media (width >=768px) {
  .homepage-hero-new .hero__foreground {
    width: 115%;
  }

  .homepage-hero-new .hero__content {
    padding-bottom: 6rem;
  }

  .homepage-hero-new .hero__headline {
    font-size: 5rem;
  }

  .homepage-hero-new .hero__subline {
    font-size: 1.75rem;
  }
}

@media (width >=993px) {
  .homepage-hero-new {
    block-size: 100vh;
    block-size: 100svh;
    max-block-size: 900px;
  }


  .homepage-hero-new .hero__foreground {
    right: 0;
    left: auto;
    width: 72%;
    transform: none;
  }

  .homepage-hero-new .hero__content {
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 50% 4rem 0;
    text-align: left;
  }

  .homepage-hero-new .hero__headline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08em;
    font-size: 6.5rem;
  }

  .homepage-hero-new .hero__headline-main {
    padding-right: 0;
  }

  .homepage-hero-new .hero__headline-emphasis {
    padding: 0.06em 0.1em 0.08em;
  }

  .homepage-hero-new .hero__subline {
    font-size: 2.25rem;
    text-align: left;
    white-space: nowrap;
  }
}

@media (width >=993px) {
  .homepage-hero-new .hero__foreground {
    bottom: auto;
    left: auto;
    right: max(0px, calc((100vw - 1098px) / 2));
    width: auto;
    height: 180%;
    max-height: 1600px;
    aspect-ratio: 1001 / 1501;
    transform: translateX(33%);
  }

  .homepage-hero-new .hero__foreground img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }

  .homepage-hero-new .hero__headline {
    font-size: 8rem;
  }

  .homepage-hero-new .hero__content {
    transform: translateX(max(0px, calc((100% - 1098px) / 2)));
  }

  .homepage-hero-new .hero__subline {
    font-size: 2.75rem;
  }
}

@media (width >=1675px) {
  .homepage-hero-new {
    max-block-size: 1100px;
  }

  .homepage-hero-new .hero__headline {
    font-size: 9rem;
  }

  .homepage-hero-new .hero__subline {
    font-size: 3.375rem;
  }
}

@media (width >=993px) and (height <800px) {
  .homepage-hero-new .hero__foreground {
    height: 1440px;
  }
}

.homepage-hero-signup {
  display: none;
  background-color: var(--brand-pale);
  padding-block: 4rem;
}

@media (width >=768px) {
  .homepage-hero-signup {
    display: block;
  }
}

@media (width >=992px) {
  .homepage-hero-new .page-shell.hero__shell,
  .homepage-hero-signup .page-shell {
    max-width: 1440px;
    margin-inline: auto;
  }
}

.homepage-hero-signup__panel {
  position: relative;
  max-width: 1098px;
  margin: -5rem auto 0;
}

@media (width >=992px) {
  .homepage-hero-signup__panel {
    margin-top: -8rem;
  }
}

@media (width >=1675px) {
  .homepage-hero-signup__panel {
    margin-top: -12rem;
  }
}

.homepage-hero-signup__form {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0;
}

/* ======================================
   HOMEPAGE CENTERED TEXT
====================================== */
.homepage-text-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  background-color: var(--brand-pale);
  text-align: center;
}

.homepage-text-centered__heading,
.homepage-text-centered__highlight {
  margin: 0;
  font-family: "Reddit Sans Condensed", sans-serif;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.homepage-text-centered__heading {
  color: var(--brand-purple);
  font-size: 2.5rem;
  line-height: 1;
}

.homepage-text-centered__highlight {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0.6rem 0.8rem;
  background-color: var(--brand-teal);
  color: #fff;
  font-size: 2.8125rem;
  line-height: 0.82;
}

@media (width >=576px) {
  .homepage-text-centered {
    padding: 3rem 1.5rem;
  }

  .homepage-text-centered__heading {
    font-size: 3.4375rem;
  }

  .homepage-text-centered__highlight {
    font-size: 4.0625rem;
  }
}

@media (width >=768px) {
  .homepage-text-centered {
    padding: 4rem 2rem;
  }

  .homepage-text-centered__heading {
    font-size: 3.75rem;
  }

  .homepage-text-centered__highlight {
    font-size: 5rem;
  }
}

/* ======================================
   HOMEPAGE VIDEO
====================================== */
.homepage-video-new {
  padding-top: 2.5rem;
  background-color: var(--brand-pale);
  /* Home hero layout variation */
}

.homepage-video-new .homepage-video__media {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}

.homepage-video-new .homepage-video__shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 0.75rem;
}

.homepage-video-new .homepage-video__shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

.homepage-video-new .homepage-video__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.homepage-video-new .homepage-video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  z-index: 2;
}

.homepage-video-new .homepage-video__play svg {
  width: 4rem;
  height: 4rem;
  filter: drop-shadow(0 0.25rem 0.75rem rgb(0 0 0 / 30%));
  transition: transform 0.2s ease;
}

.homepage-video-new .homepage-video__play:hover,
.homepage-video-new .homepage-video__play:focus {
  color: inherit;
  text-decoration: none;
}

.homepage-video-new .homepage-video__play:hover svg {
  transform: scale(1.1);
}

.homepage-video-new .homepage-video__play:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: -3px;
}

@media (width >=768px) {
  .homepage-video-new .homepage-video__shell {
    border-radius: 1rem;
  }

  .homepage-video-new .homepage-video__play svg {
    width: 5rem;
    height: 5rem;
  }
}

.homepage-video-new--home-hero {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  background: linear-gradient(to bottom, var(--brand-pale) 0%, var(--brand-pale) 33%, #fff 33%, #fff 100%);
}

@media (width >=992px) {
  .homepage-video-new--home-hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage-video-new .homepage-video__play svg {
    transition: none;
  }

  .homepage-video-new .homepage-video__play:hover svg {
    transform: none;
  }
}

/* ======================================
   ASPECT-RATIO FALLBACK
====================================== */
@supports not (aspect-ratio: 16/9) {
  .homepage-video-new .homepage-video__shell {
    height: 0;
    padding-top: 56.25%;
  }

  .homepage-video-new .homepage-video__shell>* {
    position: absolute;
    inset: 0;
  }
}

/* ======================================
   SECTION
====================================== */
section.homepage-what-we-stand-for {
  background: transparent;
  padding-block: 2.5rem;
  /* ======================================
    HEADING
  ====================================== */
  /* ======================================
    GRID
  ====================================== */
  /* ======================================
    TILE
  ====================================== */
  /* ======================================
    TITLE
  ====================================== */
  /* ======================================
    SUBTITLE
  ====================================== */
  /* ======================================
    BODY TEXT
  ====================================== */
}

@media (width >=992px) {
  section.homepage-what-we-stand-for {
    padding-block: 5rem;
  }
}

section.homepage-what-we-stand-for .heading {
  color: var(--Purple, var(--brand-purple));
  font-family: "Reddit Sans Condensed";
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 82%;
  /* 49.2px */
  text-transform: uppercase;
}

section.homepage-what-we-stand-for .heading--emphasis {
  color: var(--Teal, var(--brand-teal));
}

section.homepage-what-we-stand-for .stand-for-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (width >=768px) {
  section.homepage-what-we-stand-for .stand-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (768px <=width <=991px) {
  section.homepage-what-we-stand-for .stand-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  section.homepage-what-we-stand-for .stand-for-grid> :nth-child(3) {
    grid-column: 1 / -1;
    max-width: calc(50% - 14px);
    margin-inline: auto;
  }
}

@media (width >=992px) {
  section.homepage-what-we-stand-for .stand-for-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

section.homepage-what-we-stand-for .stand-for-tile {
  padding: 0;
  border: 4px solid #06BCC1;
  border-radius: 0px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  /* body grows */
  align-items: start;
  text-align: center;
}

section.homepage-what-we-stand-for .stand-for-tile__title {
  color: var(--White, #FFF);
  font-family: "Reddit Sans Condensed";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background: #06BCC1;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  padding: 1.7rem 2rem 1.5rem;
}

section.homepage-what-we-stand-for .stand-for-tile__title .italic {
  font-style: italic;
}

@media (width >=551px) {
  section.homepage-what-we-stand-for .stand-for-tile__title {
    font-size: 50px;
  }
}

@media (width >=768px) {
  section.homepage-what-we-stand-for .stand-for-tile__title {
    font-size: 60px;
  }
}

@media (width >=992px) {
  section.homepage-what-we-stand-for .stand-for-tile__title {
    font-size: 38px;
  }
}

@media (width >=1200px) {
  section.homepage-what-we-stand-for .stand-for-tile__title {
    font-size: 45px;
  }
}

@media (width >=1500px) {
  section.homepage-what-we-stand-for .stand-for-tile__title {
    font-size: 70px;
  }
}

section.homepage-what-we-stand-for .stand-for-tile__subtitle {
  min-height: 2.4em;
  color: var(--Purple, var(--brand-purple));
  text-align: center;
  font-family: Manrope;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 31.2px */
  letter-spacing: -1.04px;
  padding: 1.5rem 1.5rem 1rem;
  margin: 0 auto;
}

section.homepage-what-we-stand-for .stand-for-tile__text {
  color: var(--Purple, var(--brand-purple));
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 21.6px */
  letter-spacing: -0.18px;
  margin: 0 auto;
  padding: 0 2rem 1.5rem;
}

/* ======================================
   SECTION
====================================== */
section.homepage-meet-the-people {
  background: transparent;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  /* ======================================
    HEADING
  ====================================== */
  /* ======================================
    GRID
  ====================================== */
  /* ======================================
    TILE
  ====================================== */
}

@media (width >=992px) {
  section.homepage-meet-the-people {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }
}

section.homepage-meet-the-people .heading {
  font-size: 35px;
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.035em;
  color: var(--secondary);
  color: var(--Purple, var(--brand-purple));
  font-family: "Reddit Sans Condensed";
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 82%;
  /* 49.2px */
  text-transform: uppercase;
}

section.homepage-meet-the-people .heading--emphasis {
  color: var(--Teal, var(--brand-teal));
}

section.homepage-meet-the-people .candidate-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (width >=768px) {
  section.homepage-meet-the-people .candidate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (768px <=width <=1199px) {
  section.homepage-meet-the-people .candidate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  section.homepage-meet-the-people .candidate-grid> :nth-child(3) {
    grid-column: 1 / -1;
    max-width: calc(50% - 14px);
    margin-inline: auto;
  }
}

@media (width >=1200px) {
  section.homepage-meet-the-people .candidate-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

section.homepage-meet-the-people .candidate-tile {
  background: var(--Light-Blue, var(--brand-pale));
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  /* body grows */
  align-items: start;
}

section.homepage-meet-the-people .candidate-tile .candidate-tile__image-wrapper {
  position: relative;
}

section.homepage-meet-the-people .candidate-tile .candidate-tile__image-wrapper img {
  width: 100%;
}

section.homepage-meet-the-people .candidate-tile .candidate-tile__image-wrapper .candidate-tile__tags-wrapper {
  position: absolute;
  inset: auto 0 0.5rem 0.75rem;
}

section.homepage-meet-the-people .candidate-tile .candidate-tile__image-wrapper .candidate-tile__tags-wrapper .candidate-tile__role,
section.homepage-meet-the-people .candidate-tile .candidate-tile__image-wrapper .candidate-tile__tags-wrapper .candidate-tile__region {
  background: var(--Teal, var(--brand-teal));
  color: #FFF;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 19.6px */
  padding: 0.45rem 0.5rem;
  width: fit-content;
  margin-bottom: 0.5rem;
}

section.homepage-meet-the-people .candidate-tile .candidate-tile__name {
  background: var(--Light-Blue, var(--brand-pale));
  color: var(--brand-teal);
  font-family: "Reddit Sans Condensed";
  font-size: 34px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  /* 35px */
  text-transform: uppercase;
  margin: 1.5rem 0.25rem 1rem 0.75rem;
}

.homepage-quote-carousel {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5rem, 140px) 0 clamp(3rem, 5rem, 140px);
  background: var(--Light-Blue, var(--brand-pale));
}

.quote-carousel {
  position: relative;
}

.quote-carousel__swiper {
  overflow: visible;
  width: 100%;
  padding: 24px 0 28px;
}

.quote-carousel__wrapper {
  align-items: center;
}

.quote-carousel__slide {
  width: clamp(320px, 40vw, 550px) !important;
  height: auto;
  opacity: 0.12;
  cursor: pointer;
  backface-visibility: hidden;
  transition: opacity 350ms ease;
}

.quote-carousel__slide.swiper-slide-visible {
  opacity: 0.2;
}

.quote-carousel__slide.swiper-slide-prev,
.quote-carousel__slide.swiper-slide-next {
  opacity: 0.52;
}

.quote-carousel__slide.swiper-slide-active {
  opacity: 1;
  cursor: default;
}

.quote-carousel__card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 10;
  overflow: hidden;
  background: #fff;
  border: 10px solid #fff;
  transition: border 350ms ease;
  box-shadow: none !important;
}

.quote-carousel__slide.swiper-slide-active .quote-carousel__card {
  border: 15px solid #fff;
}

.quote-carousel__image,
.quote-carousel__image-placeholder {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.quote-carousel__image {
  object-fit: cover;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.quote-carousel__image-placeholder {
  background: linear-gradient(135deg, rgb(68 58 132 / 12%), rgb(0 140 149 / 18%));
}

.quote-carousel__quote {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1rem;
  overflow: hidden;
  color: var(--Purple, var(--brand-purple));
  background: rgb(255 255 255 / 85%);
  border: 3px solid var(--Teal, var(--brand-teal));
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 220ms ease, visibility 0s linear 220ms, transform 220ms ease;
  pointer-events: none;
  touch-action: pan-y;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.quote-carousel__quote::before {
  content: "\201C";
  position: absolute;
  top: -25px;
  left: 50%;
  color: var(--Purple, var(--brand-purple));
  font: 900 56px Georgia, serif;
  line-height: 1;
  transform: translateX(-50%);
  -webkit-text-stroke: 4px #fff;
  paint-order: stroke fill;
}

.quote-carousel__slide.swiper-slide-active .quote-carousel__quote {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.quote-carousel__quote-text {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.quote-carousel__quote-footer {
  display: block;
  margin-top: clamp(12px, 1vw, 16px);
}

.quote-carousel__author {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 0.82em;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
}

.quote-carousel__pagination.swiper-pagination {
  --swiper-pagination-color:
    var(--Purple,
      var(--brand-purple));
  --swiper-pagination-bullet-inactive-color:
    var(--Purple,
      var(--brand-purple));
  --swiper-pagination-bullet-inactive-opacity:
    0.24;
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
  height: 12px;
  margin: 22px auto 0;
}

.quote-carousel__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.quote-carousel__controls {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: clamp(24px, 3vw, 40px);
}

.quote-carousel__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-width: 158px;
  min-height: 60px;
  padding: 3px;
  color: #fff;
  background: var(--Purple, var(--brand-purple));
  border: solid 2px var(--Purple, var(--brand-purple));
  border-radius: 999px;
  font-size: 18px;
  font-weight: 500;
  line-height: 0.8;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.quote-carousel__button-label {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0;
}

.quote-carousel__button-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  color: var(--Purple, var(--brand-purple));
  background: #fff;
  border-radius: 50%;
}

.quote-carousel__button-icon svg {
  display: block;
}

.quote-carousel__button:focus-visible {
  border: solid 2px var(--Purple, var(--brand-purple));
  outline: none;
}

.quote-carousel__button:hover,
.quote-carousel__button:focus,
.quote-carousel__button:focus-visible,
.quote-carousel__button:focus-within {
  transform: translateY(-2px);
  background: none;
  color: var(--Purple, var(--brand-purple));
  border: solid 2px var(--Purple, var(--brand-purple));
  outline: none;
}

.quote-carousel__button:hover .quote-carousel__button-icon,
.quote-carousel__button:focus .quote-carousel__button-icon,
.quote-carousel__button:focus-visible .quote-carousel__button-icon,
.quote-carousel__button:focus-within .quote-carousel__button-icon {
  background: var(--Purple, var(--brand-purple));
}

.quote-carousel__button:hover .quote-carousel__button-icon path,
.quote-carousel__button:focus .quote-carousel__button-icon path,
.quote-carousel__button:focus-visible .quote-carousel__button-icon path,
.quote-carousel__button:focus-within .quote-carousel__button-icon path {
  fill: #fff;
}

@media (width <=1366px) {
  .quote-carousel__quote-text {
    font-size: clamp(18px, 1.25rem, 1.25rem);
  }
}

@media (width <=920px) {
  .quote-carousel__slide {
    width: clamp(300px, 58vw, 390px);
  }

  .quote-carousel__quote-text {
    font-size: clamp(14px, 1.8vw, 18px);
  }
}

@media (width <=520px) {
  .quote-carousel__swiper {
    padding: 14px 0 20px;
  }

  .quote-carousel__slide {
    width: clamp(280px, 82vw, 340px);
  }

  .quote-carousel__quote {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-height: calc(100% - 20px);
    padding: 10px;
  }

  .quote-carousel__quote-text {
    font-size: 14px;
  }

  .quote-carousel__quote::before {
    top: -22px;
    font-size: 48px;
  }

  .quote-carousel__pagination.swiper-pagination {
    margin-top: 18px;
  }

  .quote-carousel__controls {
    gap: 12px;
    margin-top: 24px;
  }

  .quote-carousel__button {
    min-width: 140px;
    min-height: 52px;
    padding: 5px;
    font-size: 13px;
  }

  .quote-carousel__button-icon {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .quote-carousel__slide,
  .quote-carousel__card,
  .quote-carousel__quote,
  .quote-carousel__button {
    transition-duration: 0.01ms !important;
  }
}

/* ======================================
   HOMEPAGE MEDIA VARIABLES
====================================== */
/* ======================================
   HOMEPAGE MEDIA SECTION
====================================== */
.homepage-media-mentions {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  background: var(--brand-pale);
}

.homepage-media-mentions .page-shell {
  position: relative;
  z-index: 2;
}

/* ======================================
   HEADER
====================================== */
.homepage-media-mentions__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  text-align: center;
}

.homepage-media-mentions .heading {
  margin: 0 0 2rem;
  color: var(--brand-purple);
  font-family: "Reddit Sans Condensed", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.homepage-media-mentions .heading--emphasis {
  color: var(--brand-teal);
}

/* ======================================
   DECORATIVE BACKGROUND
====================================== */
.homepage-media-mentions__bg {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: block;
  width: max-content;
  transform: rotate(-90deg) translateY(20%) translateX(-100%);
  transform-origin: center;
  pointer-events: none;
}

.homepage-media-mentions__bg svg {
  display: block;
  width: 500px;
  height: auto;
}

@media (width >=992px) {
  .homepage-media-mentions {
    padding-top: 5rem;
    padding-bottom: 8rem;
  }

  .homepage-media-mentions__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }

  .homepage-media-mentions .heading {
    margin: 0 2rem 0 0;
    font-size: 60px;
    line-height: 0.82;
  }

  .homepage-media-mentions__bg svg {
    width: 600px;
  }
}

/* ======================================
   HOMEPAGE UPCOMING EVENTS SECTION
====================================== */
.homepage-upcoming-events {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 10rem;
  background: var(--brand-pale);
  /* ======================================
     HEADER
  ====================================== */
  /* ======================================
    FEATURED CARD PLACEMENT
  ====================================== */
  /* ======================================
     UPCOMING EVENTS LIST
  ====================================== */
  /* ======================================
     VIEW ALL EVENTS BUTTON
  ====================================== */
}

@media (width >=992px) {
  .homepage-upcoming-events {
    padding-top: 3rem;
    padding-bottom: 14rem;
  }
}

.homepage-upcoming-events__header {
  width: 100%;
}

.homepage-upcoming-events__headline {
  justify-content: center;
  margin-right: auto;
  margin-bottom: 1rem;
  margin-left: auto;
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
}

@media (width >=576px) {
  .homepage-upcoming-events__headline {
    font-size: 4rem;
  }
}

@media (width >=992px) {
  .homepage-upcoming-events__headline {
    margin-bottom: 3rem;
    font-size: 5rem;
  }
}

.homepage-upcoming-events__headline-main {
  display: flex;
  align-items: center;
  margin: 0 auto;
  text-transform: uppercase;
  color: var(--brand-teal);
}

@media (width >=576px) {
  .homepage-upcoming-events__headline-main {
    margin: 0;
    padding-right: 0.8rem;
  }
}

.homepage-upcoming-events__headline-emphasis {
  display: block;
  width: fit-content;
  margin: 0.5rem auto 0;
  padding: 0.6rem 0.8rem;
  text-transform: uppercase;
  background-color: var(--brand-teal);
  color: #FFFFFF;
}

@media (width >=576px) {
  .homepage-upcoming-events__headline-emphasis {
    margin: 0;
  }
}

.homepage-upcoming-events__featured {
  /*
    * Mobile:
    * Hide the featured event description.
    */
  /*
    * Tablet and larger:
    * Restore the two-line clamped description.
    */
    margin-bottom: 2rem;
}

.homepage-upcoming-events__featured .event-card {
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
}

.homepage-upcoming-events__featured .event-card__excerpt {
  display: none;
}

@media (width >=768px) {
  .homepage-upcoming-events__featured .event-card__excerpt {
    display: -webkit-box;
  }
}

@media (width >=992px) {
  .homepage-upcoming-events__featured {
    /* Stack the featured card so it can stretch to the row height.
       (The base margin-bottom below is for mobile stacking only.) */
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }

  .homepage-upcoming-events__featured .event-card {
    /* Fill the stretched column so its bottom aligns with the
       "See more upcoming events" button in the adjacent list. */
    flex: 1 1 0%;
    min-height: 0;
    height: auto;
    max-width: 72.5%;
    margin-bottom: 0;

  }
}

.homepage-upcoming-events__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.homepage-upcoming-events__link-btn {
  margin-top: auto;
  padding: 2.4rem 1.5rem;
  border: none;
  background-color: #FFFFFF;
  color: var(--brand-purple);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.homepage-upcoming-events__link-btn--arrow {
  margin-bottom: 0;
  margin-left: 1.5rem;
}

.homepage-upcoming-events__link-btn:hover,
.homepage-upcoming-events__link-btn:focus {
  background-color: var(--brand-purple);
  color: #FFFFFF;
}

.homepage-upcoming-events__link-btn:hover path,
.homepage-upcoming-events__link-btn:focus path {
  fill: #FFFFFF;
}

@media (width >=768px) {
  .homepage-upcoming-events__link-btn {
    font-size: 28px;
    line-height: 1;
  }
}

/* ======================================
   HOMEPAGE NEWS VARIABLES
====================================== */
/* ======================================
   HOMEPAGE NEWS SECTION
====================================== */
.homepage-news-new {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  overflow: visible;
  background: #ffffff;
}

/* ======================================
   TOP DETAIL SVG
====================================== */
.homepage-news-new__top-detail {
  position: absolute;
  top: -50px;
  height: 50px;
  overflow: hidden;
}

.homepage-news-new__top-detail svg {
  display: block;
  width: 100%;
  height: 50px;
}

/* ======================================
   HEADER
====================================== */
.homepage-news-new__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  text-align: center;
}

.homepage-news-new .heading {
  margin: 0 0 2rem;
  color: var(--brand-purple);
  font-family: "Reddit Sans Condensed", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.homepage-news-new .heading--emphasis {
  color: var(--brand-teal);
}

/* ======================================
   HOMEPAGE GRID
====================================== */
.homepage-news-new__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

@media (width >=768px) {
  .homepage-news-new__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width >=992px) {
  .homepage-news-new {
    padding-top: 5rem;
    padding-bottom: 8rem;
  }

  .homepage-news-new__top-detail {
    top: -80px;
    height: 80px;
  }

  .homepage-news-new__top-detail svg {
    height: 80px;
  }

  .homepage-news-new__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }

  .homepage-news-new .heading {
    margin: 0 2rem 0 0;
    font-size: 60px;
    line-height: 0.82;
  }

  .homepage-news-new__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ======================================
   CANDIDATE SWIPER VARIABLES
====================================== */
/* ======================================
   CANDIDATE SWIPER

   Swiper owns all slide widths through slidesPerView.
   No CSS width calculations are required here.
====================================== */
.candidate-swiper {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.candidate-swiper .swiper-wrapper {
  align-items: stretch;
}

.candidate-swiper .candidate-swiper__slide {
  display: flex;
  align-items: stretch;
  height: auto;
  min-width: 0;
}

.candidate-swiper .candidate-tile.card {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
}

.candidate-swiper .candidate-tile__link {
  width: 100%;
  height: 100%;
}

.candidate-swiper .candidate-tile__name {
  min-height: 2em;
}

/* ======================================
   SWIPER NAVIGATION
====================================== */
.candidate-swiper-shell {
  width: 100%;
  min-width: 0;
}

.candidate-swiper__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  margin-top: 2rem;
}

.candidate-swiper__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  background: transparent;
  color: var(--brand-purple);
  border: 0;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.candidate-swiper__button:hover {
  color: var(--brand-teal);
}

.candidate-swiper__button:focus-visible {
  outline: 3px solid var(--brand-teal);
  outline-offset: 4px;
}

.candidate-swiper__button:disabled,
.candidate-swiper__button.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.candidate-swiper__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.candidate-swiper__button-icon svg {
  display: block;
}

@media (width >=576px) {
  .candidate-swiper .candidate-tile__name {
    min-height: 3em;
  }
}

/* ======================================
   REDUCED MOTION
====================================== */
@media (prefers-reduced-motion: reduce) {
  .candidate-swiper__button {
    transition: none;
  }
}