@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.ymca-campaign-root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-light: #f7f7f7;
  --color-dark: #1d1d1e;
  --color-darker: #0d0d0d;
  --color-primary: #ed353a;
  --color-primary-hover: #ee3a43;
  --color-gray-light: #dedede;
  --color-gray: #b1b1b1;
  --color-gray-dark: #434343;
  --font-display: "Mont", sans-serif;
  --font-sans: "Helvetica", sans-serif;

  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }

  a {
    text-decoration: none;
  }

  .container-x {
    width: 100%;
    max-width: 1776px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  @media (min-width: 1024px) {
    .container-x {
      padding-left: 48px;
      padding-right: 48px;
    }
  }

  @media (min-width: 1280px) {
    .container-x {
      padding-left: 80px;
      padding-right: 80px;
    }
  }

  @media (min-width: 1536px) {
    .container-x {
      padding-left: 164px;
      padding-right: 164px;
    }
  }

  /* Typography Utility Classes */
  .text-display-1 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    text-wrap: pretty;
  }
  @media (min-width: 768px) {
    .text-display-1 {
      font-size: 56px;
    }
  }
  @media (min-width: 1024px) {
    .text-display-1 {
      font-size: 64px;
    }
  }

  .text-display-2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-wrap: pretty;
  }
  @media (min-width: 768px) {
    .text-display-2 {
      font-size: 40px;
    }
  }

  .text-display-3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    text-wrap: pretty;
  }
  @media (min-width: 768px) {
    .text-display-3 {
      font-size: 28px;
    }
  }

  .text-stat {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
  }
  @media (min-width: 768px) {
    .text-stat {
      font-size: 48px;
    }
  }

  .text-body-lg {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
  }
  @media (min-width: 768px) {
    .text-body-lg {
      font-size: 18px;
    }
  }

  .text-label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
  }

  .text-label-sm {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  /* Color Classes */
  .color-primary {
    color: var(--color-primary);
  }
  .color-dark {
    color: var(--color-dark);
  }
  .color-gray-dark {
    color: var(--color-gray-dark);
  }
  .color-white {
    color: var(--color-white);
  }
  .bg-light {
    background-color: var(--color-light);
  }
  .bg-dark {
    background-color: var(--color-dark);
  }
  .bg-darker {
    background-color: var(--color-darker);
  }

  /* Button Classes */
  .alt-btn {
    height: 45px !important;
    padding: 0 24px !important;
    border-radius: 0.25rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px !important;
    text-transform: uppercase;
  }
  .alt-btn > img {
    width: 24px !important;
    height: 24px !important;
  }
  .alt-btn > span {
    min-width: 120px !important;
  }

  .alt-btn-sm {
    height: 45px !important;
    padding: 0 8px !important;
    border-radius: 0.25rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
  }
  .alt-btn-sm > img {
    width: 24px;
    height: 24px;
  }
  .alt-btn-sm > span {
    min-width: 48px !important;
  }
  @media (min-width: 1024px) {
    .alt-btn-sm > span {
      min-width: 72px !important;
    }
  }

  .alt-btn-primary {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    font-size: 14px !important;
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .alt-btn-primary > span {
    color: var(--color-white) !important;
    font-size: 14px !important;
    text-align: center !important;
  }
  .alt-btn-primary:hover {
    background-color: var(--color-darker) !important;
  }

  .alt-btn-dark {
    background-color: var(--color-darker) !important;
    color: var(--color-white) !important;
    font-size: 14px !important;
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .alt-btn-dark > span {
    color: var(--color-white) !important;
    font-size: 14px !important;
    text-align: center !important;
  }
  .alt-btn-dark:hover {
    background-color: var(--color-primary) !important;
  }

  .alt-btn-primary-alt {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    font-size: 14px !important;
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .alt-btn-primary-alt > span {
    color: var(--color-white) !important;
    font-size: 14px !important;
    text-align: center !important;
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .alt-btn-primary-alt:hover {
    background-color: var(--color-white) !important;
  }
  .alt-btn-primary-alt:hover > span {
    color: var(--color-primary) !important;
  }

  .alt-btn-outline {
    background-color: transparent !important;
    color: var(--color-white) !important;
    border: 1px solid var(--color-white) !important;
    font-size: 14px !important;
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .alt-btn-outline > span {
    color: var(--color-white) !important;
    font-size: 14px !important;
    text-align: center !important;
  }
  .alt-btn-outline:hover {
    background-color: var(--color-white) !important;
    color: var(--color-darker) !important;
  }
  .alt-btn-outline:hover > span {
    color: var(--color-darker) !important;
  }

  /* Links */
  a {
    color: var(--color-primary);
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  a:hover {
    color: var(--color-dark) !important;
  }

  /* Custom Dropdown */
  .custom-dropdown {
    position: relative;
  }

  .custom-dropdown-toggle:focus {
    outline: none;
    border: 2px solid var(--color-primary);
  }

  .custom-dropdown-menu {
    top: 100%;
    left: 0;
    position: absolute;
  }

  /* --- Hero Section --- */
  .hero-section {
    position: relative;
    width: 100%;
    min-height: 80dvh;
    background-color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 100px 0;
    color: var(--color-dark);
    overflow: hidden;
  }

  .hero-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
  }

  .hero-bg-shape-1 {
    position: absolute;
    right: -30%;
    top: auto;
    bottom: -15%;
    transform: none;
    width: clamp(300px, 40vw, 550px);
    height: clamp(300px, 40vw, 550px);
    background-color: var(--color-primary);
    mask-image: url("data:image/svg+xml,%3Csvg width='154' height='146' viewBox='0 0 154 146' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M151.963 21.7833L101.482 136.176C96.7777 146.837 82.2443 148.297 75.514 138.784L3.75003 37.3479C-2.86724 27.9947 3.02072 14.9758 14.4143 13.7682L136.659 0.810877C148.126 -0.404537 156.619 11.2338 151.963 21.7833Z' fill='%23000'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='154' height='146' viewBox='0 0 154 146' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M151.963 21.7833L101.482 136.176C96.7777 146.837 82.2443 148.297 75.514 138.784L3.75003 37.3479C-2.86724 27.9947 3.02072 14.9758 14.4143 13.7682L136.659 0.810877C148.126 -0.404537 156.619 11.2338 151.963 21.7833Z' fill='%23000'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    opacity: 0.9;
  }

  @media (min-width: 768px) {
    .hero-bg-shape-1 {
      right: 5%;
      top: 50%;
      bottom: auto;
      transform: translateY(-50%);
    }
  }

  .hero-bg-shape-2 {
    position: absolute;
    right: -10%;
    top: -20%;
    width: clamp(400px, 50vw, 800px);
    height: clamp(400px, 50vw, 800px);
    background-color: var(--color-dark);
    opacity: 0.05;
    transform: rotate(45deg);
    mask-image: url("data:image/svg+xml,%3Csvg width='154' height='146' viewBox='0 0 154 146' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M151.963 21.7833L101.482 136.176C96.7777 146.837 82.2443 148.297 75.514 138.784L3.75003 37.3479C-2.86724 27.9947 3.02072 14.9758 14.4143 13.7682L136.659 0.810877C148.126 -0.404537 156.619 11.2338 151.963 21.7833Z' fill='%23000'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='154' height='146' viewBox='0 0 154 146' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M151.963 21.7833L101.482 136.176C96.7777 146.837 82.2443 148.297 75.514 138.784L3.75003 37.3479C-2.86724 27.9947 3.02072 14.9758 14.4143 13.7682L136.659 0.810877C148.126 -0.404537 156.619 11.2338 151.963 21.7833Z' fill='%23000'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
  }

  /*
 * Hero Background Banner
 * ----------------------
 * When the client provides a custom background graphic:
 *   1. Add class "hero-has-banner" to the <section class="hero-section"> element.
 *   2. Set two CSS custom properties via inline style:
 *        --hero-bg-desktop: url('/images/hero-desktop.jpg');
 *        --hero-bg-mobile:  url('/images/hero-mobile.jpg');
 *
 * Desktop Banner (≥768px):
 *   - Recommended size: 1920×800px (retina 2x: 3840×1600px)
 *
 * Mobile Banner (<768px):
 *   - Recommended size: 800×1200px (retina 2x: 1600×2400px)
 */
  .hero-has-banner {
    background-image: var(--hero-bg-mobile);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  @media (min-width: 768px) {
    .hero-has-banner {
      background-image: var(--hero-bg-desktop);
      background-position: center;
    }
  }

  .hero-has-banner .hero-bg-decoration {
    display: none;
  }

  .hero-content {
    position: relative;
    max-width: 800px;
    z-index: 1;
  }

  .hero-label {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--color-gray);
    border-radius: 999px;
    margin-bottom: 32px;
  }

  .hero-heading {
    margin-top: 0;
    margin-bottom: 24px;
    text-wrap: balance;
  }

  .hero-subheading {
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    text-wrap: pretty;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  @media (min-width: 480px) {
    .hero-buttons {
      flex-direction: row;
      gap: 24px;
      align-items: center;
    }
  }

  /* --- Info Section --- */
  .info-section {
    padding: 64px 0;
  }

  .info-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  @media (min-width: 768px) {
    .info-section {
      padding: 100px 0;
    }
    .info-container {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 64px;
    }
  }

  .info-text {
    flex: 1;
    max-width: 581px;
  }

  .info-heading {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .info-paragraph {
    margin: 0;
  }

  .info-stats {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
    max-width: 468px;
  }

  @media (min-width: 768px) {
    .info-stats {
      gap: 48px;
    }
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* --- Info Section Variant: Text + Image --- */
  .info-section--media .info-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  @media (min-width: 768px) {
    .info-section--media .info-container {
      flex-direction: row;
      align-items: center;
      gap: 64px;
    }
  }

  .info-section--media .info-text {
    flex: 1;
    min-width: 0;
  }

  .info-media {
    flex: 1;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .info-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Flip: image on the left, text on the right */
  @media (min-width: 768px) {
    .info-section--media-reverse .info-container {
      flex-direction: row-reverse;
    }
  }

  /* --- Info Section Variant: Text Only --- */
  .info-section--text-only .info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-section--text-only .info-text {
    max-width: 720px;
  }

  /* --- Feature Section --- */
  .feature-section {
    padding: 64px 0;
    position: relative;
  }

  .feature-triangle {
    position: absolute;
    top: -4%;
    right: 5%;
    z-index: 0;
    width: 7rem;
  }

  .feature-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: 70%;
    filter: invert(1);
  }

  .feature-stack {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .feature-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-gray-dark);
    border-radius: 16px;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .feature-triangle {
      position: absolute;
      top: -8%;
      left: 5%;
      z-index: 0;
      width: 12rem;
    }

    .feature-pattern {
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: 0;
      width: 50%;
      filter: invert(1);
    }

    .feature-section {
      padding: 100px 0;
    }
    .feature-card {
      flex-direction: row;
      align-items: stretch;
    }
  }

  @media (min-width: 768px) {
    .feature-card.feature-card-reverse {
      flex-direction: row-reverse;
    }
  }

  .feature-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  @media (min-width: 768px) {
    .feature-image {
      width: 50%;
      height: auto;
      min-height: 400px;
    }
  }

  .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }

  .feature-content {
    width: 100%;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  @media (min-width: 768px) {
    .feature-content {
      width: 50%;
      padding: 64px 48px;
    }
  }

  .feature-label-wrapper {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    margin-bottom: 24px;
  }

  .feature-heading {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--color-white);
  }

  .feature-text {
    margin: 0 0 32px 0;
    color: rgba(255, 255, 255, 0.9);
  }

  .feature-text strong {
    font-weight: 800;
  }

  .feature-text-footer {
    padding-top: 32px;
    margin-bottom: 0 !important;
  }

  .feature-link-alt {
    color: var(--color-white) !important;
    text-decoration: underline;
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .feature-link-alt:hover {
    color: var(--color-primary) !important;
  }

  .feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
  }

  /* --- Promo Section --- */
  .promo-section {
    padding: 64px 0;
  }

  @media (min-width: 768px) {
    .promo-section {
      padding: 80px 0;
    }
  }

  .promo-header {
    margin-bottom: 40px;
  }

  .promo-label {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-primary);
    border-radius: 999px;
    margin-top: 16px;
  }

  .promo-subheading {
    margin-top: 16px;
    margin-bottom: 0;
    text-wrap: pretty;
  }

  .promo-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  .promo-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  @media (min-width: 768px) {
    .promo-cards-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }
  }

  .promo-card {
    cursor: pointer;
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

  .promo-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .promo-card-title {
    margin-top: 0;
    margin-bottom: 16px;
  }

  .promo-card-text {
    margin-top: 0;
    margin-bottom: 24px;
    flex: 1;
  }

  .promo-card-detail {
    margin-top: 0;
    margin-bottom: 24px;
    font-weight: 700;
  }

  .promo-link {
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 2px;
    align-self: flex-start;
  }

  .promo-link:hover {
    border-bottom-color: var(--color-dark);
  }

  /* --- Posts Section --- */
  .posts-section {
    padding: 64px 0;
    background-color: var(--color-white);
  }

  @media (min-width: 768px) {
    .posts-section {
      padding: 80px 0;
    }
  }

  .posts-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .posts-header-text {
    max-width: 600px;
    margin-top: 16px;
    margin-bottom: 0;
  }

  .posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  @media (min-width: 640px) {
    .posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .posts-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .post-card {
    cursor: pointer;
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-gray-light);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

  .post-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    position: relative;
    background-color: var(--color-light);
  }

  .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }

  .post-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .post-title {
    margin-top: 0;
    margin-bottom: 4px;
  }

  .post-subtitle {
    margin-top: 0;
    margin-bottom: 16px;
  }

  .post-blurb {
    margin-top: 0;
    margin-bottom: 24px;
    flex: 1;
  }

  .post-link {
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 2px;
    align-self: flex-start;
  }

  .post-link:hover {
    border-bottom-color: var(--color-dark);
  }

  /* --- Marketing Section --- */
  .marketing-section {
    padding: 64px 0;
    background-color: var(--color-dark);
    color: var(--color-white);
  }

  @media (min-width: 768px) {
    .marketing-section {
      padding: 80px 0;
    }
  }

  .marketing-header {
    margin-bottom: 40px;
  }

  .marketing-header-text {
    margin-top: 16px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    /* max-width: 720px; */
    text-wrap: pretty;
  }

  .marketing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }

  @media (min-width: 640px) {
    .marketing-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .marketing-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .marketing-card {
    background-color: transparent;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .marketing-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.05);
  }

  .marketing-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    margin-bottom: 24px;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.1);
  }

  .marketing-card-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--color-white);
    line-height: 1.5;
  }

  .marketing-card-text {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
  }

  .marketing-card-list {
    font-family: var(--font-sans);
    margin: 0;
    padding-left: 20px;
    list-style: disc;
  }

  .marketing-card-list li {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
  }

  .marketing-subheading {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 16px;
  }

  .marketing-disclaimer {
    font-family: var(--font-sans);
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
  }
}
