/**
 * Jaithmathang public landing sections
 * Uses design tokens from public-typography.css (:root)
 * Title → var(--font-title) | Body → var(--font-body)
 */

/* ── Shared typography patterns ── */

/* Eyebrow / overline (accent) */
.cms-section-explore .cms-section__eyebrow,
.cms-research-section .cms-section__eyebrow,
.cms-calendar-section .cms-section__eyebrow,
.cms-living-doc-section .doc-eyebrow,
.cms-ar-experience-section .ar-eyebrow,
.cms-split-stats-section .stats-eyebrow,
.cms-section-explore .item-location {
    font-family: var(--font-body);
    letter-spacing: var(--jm-tracking-eyebrow);
    text-transform: uppercase;
    color: var(--jm-color-accent);
    font-weight: 500;
}

.cms-section-welcome .cms-section__eyebrow {
    font-family: var(--font-body);
    letter-spacing: var(--jm-tracking-eyebrow-wide);
    text-transform: uppercase;
    color: var(--jm-color-accent);
    font-weight: 500;
    display: block;
}

.cms-oral-history-section .cms-section__eyebrow {
    font-family: var(--font-body);
    letter-spacing: var(--jm-tracking-eyebrow);
    text-transform: uppercase;
    color: var(--jm-color-olive-eyebrow);
    font-weight: 500;
}

.cms-connect-banner .banner-eyebrow {
    font-family: var(--font-body);
    letter-spacing: var(--jm-tracking-eyebrow);
    text-transform: uppercase;
    color: var(--jm-color-connect-muted);
    font-weight: 500;
    display: block;
}

/* Small labels */
.cms-research-section .research-label,
.cms-ar-experience-section .ar-sub-bottom,
.cms-section-explore .item-subtitle,
.cms-calendar-section .calendar-season-card__month,
.cms-living-doc-section .feature-doc-item__eyebrow {
    font-family: var(--font-body);
    letter-spacing: var(--jm-tracking-eyebrow-tight);
    text-transform: uppercase;
    color: var(--jm-color-accent);
    font-weight: 600;
}

.cms-section-explore .item-subtitle {
    color: var(--jm-color-text-subtle);
}

.cms-living-doc-section .feature-doc-item__eyebrow {
    font-weight: 700;
}

/* Section headings */
.cms-section-explore h1,
.cms-research-section h1,
.cms-calendar-section h1,
.cms-living-doc-section h1,
.cms-section-welcome h1,
.cms-split-stats-section h1,
.cms-ar-experience-section h1 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--jm-color-earth);
}

.cms-connect-banner h1 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--jm-color-connect-text);
    margin-top: 15px;
}

.cms-oral-history-section h1 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--jm-color-white);
}

.cms-section-explore h2 {
    font-family: var(--font-title);
    color: var(--jm-color-earth);
}

/* Lead / body copy */
.cms-section-welcome .cms-section__lead {
    color: var(--jm-color-text-warm);
    max-width: 820px;
}

.cms-living-doc-section .doc-main-desc,
.cms-ar-experience-section .ar-description,
.cms-split-stats-section .stats-desc {
    color: var(--jm-color-text);
}

.cms-split-stats-section .stats-desc {
    font-size: 0.98rem;
}

.cms-connect-banner .banner-desc {
    color: var(--jm-color-connect-desc);
    max-width: 600px;
}

/* Orange CTA buttons */
.cms-section-welcome .btn-jaith-audio,
.cms-research-section .btn-research-orange,
.cms-ar-experience-section .btn-ar-primary {
    background-color: var(--jm-color-orange);
    color: var(--jm-color-white) !important;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: var(--jm-tracking-btn-wider);
    padding: 0.9rem 2.2rem;
    border-radius: 0;
    text-transform: uppercase;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s ease;
}

.cms-research-section .btn-research-orange,
.cms-ar-experience-section .btn-ar-primary {
    letter-spacing: var(--jm-tracking-tight);
    padding: 0.85rem 1.8rem;
    text-transform: none;
    gap: 8px;
}

.cms-ar-experience-section .btn-ar-primary {
    padding: 1rem 2rem;
    letter-spacing: var(--jm-tracking-btn-wide);
    text-transform: uppercase;
}

.cms-section-welcome .btn-jaith-audio:hover,
.cms-research-section .btn-research-orange:hover,
.cms-ar-experience-section .btn-ar-primary:hover {
    background-color: var(--jm-color-orange-hover);
}

.cms-section-welcome .btn-jaith-audio svg {
    fill: currentColor;
}

/* ── Home hero ── */
.cms-hero-custom {
    min-height: 100vh;
    background-color: var(--jm-color-accent);
    font-family: var(--font-body);
    color: var(--jm-color-on-dark);
}

.cms-hero__overlay-gradient {
    background: var(--jm-gradient-hero);
}

.cms-hero__eyebrow-custom {
    font-family: var(--font-body);
    letter-spacing: var(--jm-tracking-eyebrow-hero);
    text-transform: uppercase;
    color: var(--jm-color-on-dark-muted);
    font-weight: 500;
}

.cms-hero__title-custom {
    font-family: var(--font-title);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--jm-color-on-dark);
}

.cms-hero-custom .hero-description {
    font-size: calc(0.95rem + 0.15vw);
    color: var(--jm-color-on-dark-soft);
    max-width: 580px;
}

.btn-custom-solid {
    background-color: var(--jm-color-sand);
    color: var(--jm-color-earth) !important;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: var(--jm-tracking-btn-wide);
    padding: 0.9rem 2.2rem;
    border-radius: 0;
    text-transform: uppercase;
    border: none;
    transition: background-color 0.25s ease;
}

.btn-custom-solid:hover {
    background-color: var(--jm-color-sand-hover);
}

.btn-custom-outline {
    background-color: transparent;
    color: var(--jm-color-on-dark) !important;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: var(--jm-tracking-btn-wide);
    padding: 0.9rem 2.2rem;
    border-radius: 0;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.btn-custom-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--jm-color-on-dark);
}

.cms-hero-custom .hero-content-wrapper {
    padding-top: 140px;
    padding-bottom: 80px;
    z-index: 2;
}

/* ── Country / explore map ── */
.cms-section-explore {
    background: linear-gradient(to bottom, var(--jm-color-cream) 0%, var(--jm-color-white) 100%);
    padding: var(--jm-section-padding) 0;
    font-family: var(--font-body);
    color: var(--jm-color-earth);
}

.cms-section-explore .text-link-map {
    color: var(--jm-color-orange);
    font-family: var(--font-body);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: var(--jm-tracking-label);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.cms-section-explore .text-link-map:hover {
    color: var(--jm-color-orange-dark);
    text-decoration: underline;
}

/* Interactive landmark map (hardcoded prototype) */
.map-landmark-wrap {
    position: relative;
    line-height: 0;
}

.map-landmark-dot {
    position: absolute;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    margin: -10px;
    border: 0;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.map-landmark-dot__marker {
    display: block;
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 4px rgba(var(--jm-color-accent-rgb), 0);
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.map-landmark-dot__label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: var(--jm-tracking-label);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    transition: color 0.25s ease;
}

.map-landmark-dot:hover .map-landmark-dot__marker,
.map-landmark-dot:focus-visible .map-landmark-dot__marker {
    background: var(--jm-color-orange);
    border-color: var(--jm-color-orange);
    box-shadow: 0 0 0 4px rgba(var(--jm-color-accent-rgb), 0.25);
}

.map-landmark-dot.is-active .map-landmark-dot__marker {
    background: var(--jm-color-orange);
    border-color: var(--jm-color-orange);
    box-shadow: 0 0 0 5px rgba(var(--jm-color-accent-rgb), 0.3);
    transform: scale(1.15);
}

.map-landmark-dot.is-active .map-landmark-dot__label {
    color: #fff;
}

.map-landmark-panel {
    transition: opacity 0.2s ease;
}

.map-landmark-panel.is-updating {
    opacity: 0;
}

@media (max-width: 575.98px) {
    .map-landmark-dot {
        gap: 5px;
        padding: 8px;
        margin: -8px;
    }

    .map-landmark-dot__marker {
        width: 8px;
        height: 8px;
    }

    .map-landmark-dot__label {
        font-size: 0.55rem;
        letter-spacing: 0.02em;
    }
}

/* ── Research ── */
.cms-research-section {
    background: var(--jm-gradient-light);
    padding: var(--jm-section-padding) 0;
    font-family: var(--font-body);
    color: var(--jm-color-earth);
}

.cms-research-section h1 {
    max-width: 800px;
}

.cms-research-section .research-nav-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.cms-research-section .research-nav-list__item {
    font-family: var(--font-body);
    color: var(--jm-color-earth);
    padding: 12px 0;
    border-bottom: 1px solid var(--jm-color-border);
}

.cms-research-section .research-link-download {
    color: var(--jm-color-accent);
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cms-research-section .research-link-download:hover {
    text-decoration: underline;
}

.cms-research-section .research-history-timeline {
    position: relative;
    padding-left: 32px;
    border-left: 1px solid var(--jm-color-orange);
}

.cms-research-section .research-history-item {
    position: relative;
    margin-bottom: 35px;
}

.cms-research-section .research-history-item::before {
    content: '';
    position: absolute;
    left: -36.5px;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: var(--jm-color-orange);
    border-radius: 50%;
}

.cms-research-section .research-history-item__year {
    font-family: var(--font-body);
    letter-spacing: var(--jm-tracking-tight);
    color: var(--jm-color-accent);
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
}

.cms-research-section .research-history-item__title {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--jm-color-earth);
}

.cms-research-section .research-history-item__body {
    font-family: var(--font-body);
    color: var(--jm-color-text-soft);
}

/* ── Oral history ── */
.cms-oral-history-section {
    background-color: var(--jm-color-olive);
    color: var(--jm-color-olive-text);
    padding: var(--jm-section-padding) 0;
    font-family: var(--font-body);
}

.cms-oral-history-section .voice-audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.cms-oral-history-section .voice-audio-card {
    background-color: var(--jm-color-sand-card);
    color: var(--jm-color-earth);
    padding: 40px 30px;
    border-radius: var(--jm-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--jm-shadow-soft);
}

.cms-oral-history-section .voice-audio-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.cms-oral-history-section .voice-audio-card__btn-listen {
    font-family: var(--font-body);
    letter-spacing: var(--jm-tracking-eyebrow-tight);
    text-transform: uppercase;
    color: var(--jm-color-accent);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.cms-oral-history-section .voice-audio-card__quote {
    font-family: var(--font-title);
    font-weight: 700;
    margin-bottom: 0;
}

.cms-oral-history-section .glossary-section-title {
    font-family: var(--font-title);
    color: var(--jm-color-white);
    margin-bottom: 35px;
}

.cms-oral-history-section .glossary-table-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0 40px;
}

.cms-oral-history-section .glossary-table-item {
    display: flex;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cms-oral-history-section .glossary-table-item__term {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--jm-color-glossary-term);
    width: 200px;
    flex-shrink: 0;
    margin-bottom: 0;
    font-size: 1rem;
}

.cms-oral-history-section .glossary-table-item__desc {
    font-family: var(--font-body);
    color: var(--jm-color-glossary-desc);
    margin-bottom: 0;
}

/* ── Bogong season / calendar ── */
.cms-calendar-section {
    background-color: var(--jm-color-white);
    padding: var(--jm-section-padding) 0;
    font-family: var(--font-body);
    color: var(--jm-color-earth);
}

.cms-calendar-section .calendar-feature-card {
    background: var(--jm-color-white);
    border: 1px solid var(--jm-color-border-light);
    border-radius: var(--jm-radius-lg);
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
/*    box-shadow: var(--jm-shadow-card);*/
}

.cms-calendar-section .calendar-feature-card__img {
    width: 140px;
    height: 95px;
    object-fit: cover;
    border-radius: var(--jm-radius-md);
    flex-shrink: 0;
}

.cms-calendar-section .calendar-feature-card h2 {
    font-family: var(--font-title);
    color: var(--jm-color-earth);
    margin-bottom: 6px;
}

.cms-calendar-section .calendar-feature-card p {
    font-family: var(--font-body);
    color: var(--jm-color-text-subtle);
    margin-bottom: 2px;
}

.cms-calendar-section .calendar-season-card {
    background: var(--jm-color-white);
    border: 1px solid var(--jm-color-border-light);
    border-radius: var(--jm-radius-md);
    padding: 20px;
    height: 100%;
    transition: border-color 0.3s ease;
}

.cms-calendar-section .calendar-season-card--highlight,
.cms-calendar-section .calendar-quote-trigger.is-active {
    border-color: var(--jm-color-orange) !important;
}

.cms-calendar-section .calendar-quote-trigger {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cms-calendar-section .calendar-quote-trigger:hover,
.cms-calendar-section .calendar-quote-trigger:focus-visible {
    border-color: var(--jm-color-orange);
}

/* All quote variants are stacked in the same grid cell so the box height
   always matches the tallest one, instead of jumping as a shorter/longer
   quote is shown when switching cards. */
.cms-calendar-section .calendar-quote-box__stack {
    display: grid;
}

.cms-calendar-section .calendar-quote-box__stack > .js-calendar-quote {
    grid-area: 1 / 1;
    align-self: start;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

.cms-calendar-section .calendar-quote-box__stack > .js-calendar-quote.is-shown {
    opacity: 1;
    visibility: visible;
}

.text-orange{
    color: var(--jm-color-orange) !important;
}

.cms-calendar-section .calendar-season-card h3 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--jm-color-earth);
}

.cms-calendar-section .calendar-season-card p {
    font-family: var(--font-body);
    color: var(--jm-color-text-subtle);
}

.cms-calendar-section .calendar-quote-box {
    border-left: 3px solid var(--jm-color-orange-quote);
    padding-left: 24px;
    margin-top: 50px;
    max-width: 850px;
}

.cms-calendar-section .calendar-quote-box blockquote {
    font-family: var(--font-body);
    color: var(--jm-color-earth);
    margin-bottom: 0;
}

/* ── About / living document ── */
.cms-living-doc-section {
    background: var(--jm-gradient-warm);
    padding: var(--jm-section-padding-lg) 0;
    font-family: var(--font-body);
    color: var(--jm-color-earth);
}

.cms-living-doc-section .feature-doc-item {
    padding-top: 25px;
    position: relative;
}

.cms-living-doc-section .feature-doc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    height: 1px;
    background-color: var(--jm-color-earth);
    opacity: 0.25;
}

.cms-living-doc-section .feature-doc-item__title {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--jm-color-earth);
}

.cms-living-doc-section .feature-doc-item__desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--jm-color-text-muted);
}

/* ── Welcome ── */
.cms-section-welcome {
    background: var(--jm-gradient-light);
    padding: var(--jm-section-padding-hero) 0;
    font-family: var(--font-body);
}

.cms-section-welcome h1 {
    max-width: 920px;
}

/* ── Connect banner ── */
.cms-connect-banner {
    background-color: var(--jm-color-connect-bg);
    padding: var(--jm-section-padding-xl) 0;
    font-family: var(--font-body);
    color: var(--jm-color-connect-text);
}

.cms-connect-banner .banner-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.cms-connect-banner .btn-connect-primary {
    background-color: var(--jm-color-connect-gold);
    color: var(--jm-color-connect-btn-text) !important;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: var(--jm-tracking-btn);
    padding: 18px 24px;
    text-transform: uppercase;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: background-color 0.2s ease;
}

.cms-connect-banner .btn-connect-primary:hover {
    background-color: var(--jm-color-connect-gold-hover);
}

.cms-connect-banner .btn-connect-outline {
    background-color: transparent;
    color: var(--jm-color-connect-text) !important;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: var(--jm-tracking-btn);
    padding: 18px 28px;
    text-transform: uppercase;
    border: 1px solid var(--jm-color-connect-border);
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.cms-connect-banner .btn-connect-outline:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--jm-color-connect-muted);
}

/* ── People / split stats ── */
.cms-split-stats-section {
    background-color: var(--jm-color-white);
    padding: var(--jm-section-padding-xl) 0;
    font-family: var(--font-body);
    color: var(--jm-color-earth);
}

.cms-split-stats-section .people-stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.cms-split-stats-section .people-stat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cms-split-stats-section .people-stat-block__value {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--jm-color-accent);
    line-height: 1;
}

.cms-split-stats-section .people-stat-block__value sup {
    font-size: 55%;
    top: -0.4em;
}

.cms-split-stats-section .people-stat-block__label {
    font-family: var(--font-body);
    letter-spacing: var(--jm-tracking-eyebrow-tight);
    text-transform: uppercase;
    color: var(--jm-color-stat-label);
    font-weight: 600;
    margin-top: 8px;
}

.cms-split-stats-section .link-stats-cta {
    color: var(--jm-color-earth) !important;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: var(--jm-tracking-btn);
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}

.cms-split-stats-section .link-stats-cta:hover {
    opacity: 0.8;
}

.cms-split-stats-section .image-wrapper img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    box-shadow: var(--jm-shadow-card);
}

/* ── AR experience ── */
.cms-ar-experience-section {
    background-color: var(--jm-color-white);
    padding: var(--jm-section-padding-lg) 0;
    font-family: var(--font-body);
    color: var(--jm-color-earth);
}

.cms-ar-experience-section .ar-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cms-ar-experience-section .ar-feature-badge {
    background-color: var(--jm-color-white);
    border: 1px solid var(--jm-color-border-neutral);
    border-radius: var(--jm-radius-sm);
    padding: 8px 16px;
    font-family: var(--font-body);
    color: var(--jm-color-earth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--jm-shadow-badge);
}

.cms-ar-experience-section .ar-feature-badge__icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    opacity: 0.7;
}

.cms-ar-experience-section .ar-status-label {
    font-family: var(--font-body);
    letter-spacing: var(--jm-tracking-label);
    text-transform: uppercase;
    color: var(--jm-color-accent);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cms-ar-experience-section .ar-status-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--jm-color-accent);
    border-radius: 50%;
}

.cms-ar-experience-section .ar-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cms-ar-experience-section .btn-ar-outline {
    background-color: transparent;
    color: var(--jm-color-earth) !important;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: var(--jm-tracking-btn-wide);
    padding: 1rem 2rem;
    border-radius: 0;
    text-transform: uppercase;
    border: 1px solid var(--jm-color-border-gray);
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.cms-ar-experience-section .btn-ar-outline:hover {
    background-color: var(--jm-color-surface-muted);
    border-color: var(--jm-color-border-dark);
}

.cms-ar-experience-section .split-block__image img {
    max-height: 550px;
    object-fit: contain;
}

/* ── Responsive ── */
@media (min-width: 768px) {
    .cms-oral-history-section .glossary-table-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cms-oral-history-section .glossary-table-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .cms-ar-experience-section .split-block__image {
        text-align: center;
        margin-top: 40px;
    }

    .cms-ar-experience-section .split-block__image img {
        max-width: 100%;
        height: auto;
    }

    .cms-living-doc-section .feature-doc-item {
        margin-bottom: 30px;
    }

    .cms-living-doc-section .feature-doc-item::before {
        left: 0;
        right: 0;
    }

    .cms-split-stats-section .image-wrapper {
        margin-bottom: 30px;
    }

    .cms-split-stats-section .people-stats-container {
        gap: 25px;
    }
}

@media (max-width: 575.98px) {
    .cms-connect-banner .banner-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .cms-connect-banner .banner-cta-group a {
        text-align: center;
        justify-content: center;
    }
}
