/**
 * responsive.css — loaded after style.css
 * Breakpoints: 575.98 (sm), 767.98 (md), 991.98 (lg), 1199.98 (xl)
 */

/* ─── Fluid root: slightly smaller rem base on narrow viewports ─── */
@media (max-width: 575.98px) {
    html {
        font-size: 93.75%;
    }
}

@media (max-width: 991.98px) {
    /* .heading_section .sec_heading {
        font-size: clamp(1.65rem, 4.2vw, 2.35rem);
    } */

    .cta_heading {
        font-size: clamp(1.65rem, 5vw, 2.75rem) !important;
    }
}

@media (max-width: 575.98px) {
    /* .heading_section .sec_heading {
        font-size: clamp(1.5rem, 5.5vw, 1.95rem);
    } */

    .heading_para {
        font-size: 0.9375rem;
        line-height: 1.55;
    }

    .cta_content {
        padding: 2rem 1rem;
    }

    .cta_heading {
        font-size: clamp(1.45rem, 6vw, 2rem) !important;
    }
}

/* ─── Index header: full-width flat bar on mobile / tablet (no pill radius) ─── */
@media (max-width: 991.98px) {
    .index-page-top {
        padding-top: 0;
        padding-bottom: 0;
    }

    .amcob-site-header {
        padding: 0;
    }

    .amcob-header-bar {
        padding: 10px 14px;
        border-radius: 0;
        box-shadow: 0 1px 0 rgba(15, 26, 46, 0.08);
    }

    .amcob-header-container {
        padding: 0;
    }

    .hero-banner {
        padding-top: 2rem;
    }

    .hero-orbit {
        margin-top: 1rem;
        max-width: min(100%, 500px);
    }
}

@media (max-width: 575.98px) {
    .amcob-header-bar {
        padding: 8px 12px;
    }

    .amcob-header-brand img {
        height: 36px;
    }
}

/* ─── AMCOB Events: tighter filters + scroll list on small screens ─── */
@media (max-width: 991.98px) {
    .amcob_events {
        padding: 2.75rem 0;
    }

    .amcob_events__toolbar {
        row-gap: 0.75rem;
    }

    .amcob_events__list {
        max-height: min(70vh, 560px);
    }

    .amcob_events__select-cell {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .amcob_events {
        padding: 2.25rem 0;
    }

    .amcob_events__list {
        max-height: min(62vh, 480px);
        gap: 12px;
    }

    .amcob_events__period-btn {
        padding: 8px 12px;
        font-size: 0.8125rem;
    }

    .amcob_events__card-date {
        padding: 12px 14px;
    }

    .amcob_events__card-date-line {
        font-size: 1rem;
    }

    .amcob_events__card-panel-inner {
        padding: 12px;
    }

    .amcob_events__card-title {
        font-size: clamp(1.05rem, 4vw, 1.35rem);
    }

    .amcob_events__card-excerpt {
        font-size: 0.8125rem;
        line-height: 1.65;
    }
}

/* ─── Recent members: tablet — shorter cards, no stagger transforms ─── */
@media (max-width: 991.98px) {
    .recent-members__layout {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
        gap: 1rem;
    }

    .recent-members__cluster--left,
    .recent-members__cluster--right {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }

    .recent-members__center {
        order: 1;
        padding: 0 0 0.35rem;
        margin-top: 0;
    }

    .recent-members__cluster--top {
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding-bottom: 0;
        gap: 10px;
    }

    .recent-members__cluster--left {
        order: 3;
        grid-template-columns: repeat(4, auto);
        grid-template-rows: auto;
        justify-content: center;
    }

    .recent-members__cluster--right {
        order: 4;
        grid-template-columns: repeat(4, auto);
        grid-template-rows: auto;
        justify-content: center;
    }

    /* Kill desktop stagger offsets on tablet (was leaving uneven gaps) */
    .recent-members__item {
        transform: none !important;
    }

    /* Shorter than desktop 200×260 portrait — keeps section height reasonable */
    .recent-members__card,
    .recent-members__cluster--top .recent-members__card {
        width: clamp(76px, 17vw, 104px);
        aspect-ratio: 4 / 5;
        max-height: 118px;
    }

    .recent-members .heading_section .sec_heading {
        font-size: clamp(1.65rem, 4vw, 2.15rem);
    }
}

/* ─── Recent members: phone — single mosaic grid, square thumbs, copy on top ─── */
@media (max-width: 575.98px) {
    .recent-members {
        padding: 1.75rem 0 2rem;
    }

    .recent-members__shell {
        padding: 0 12px;
    }

    .recent-members__layout {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        column-gap: 8px;
        row-gap: 8px;
        align-items: start;
        min-height: 0;
    }

    /* Flatten clusters so all 13 portraits share one compact grid */
    .recent-members__cluster--left,
    .recent-members__cluster--top,
    .recent-members__cluster--right {
        display: contents;
    }

    .recent-members__center {
        grid-column: 1 / -1;
        order: -1;
        margin: 0 0 0.25rem;
        padding: 0 0 0.75rem;
    }

    .recent-members__item {
        transform: none !important;
        min-width: 0;
    }

    /* Slightly brighter base on small tiles so faces read better */
    .recent-members:not(.recent-members--static) .recent-members__item:not(.is-highlighted) {
        opacity: 0.65;
    }

    .recent-members__card,
    .recent-members__cluster--top .recent-members__card {
        width: 100%;
        max-width: none;
        max-height: none;
        aspect-ratio: 1;
        border-radius: 10px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    }

    .recent-members__card img {
        object-fit: cover;
        object-position: center top;
    }

    .recent-members .heading_section .sec_heading {
        font-size: clamp(1.4rem, 5.2vw, 1.75rem);
        margin: 10px 0;
    }

    .recent-members .heading_section .heading_para {
        font-size: 0.875rem;
        line-height: 1.55;
        padding: 0;
    }

    .recent-members .btn-theme-wrap {
        margin-top: 1rem !important;
    }
}

/* ─── New recent members ─── */
@media (max-width: 1199.98px) {
    .new-recent-members__layout {
        grid-template-columns: minmax(0, 1fr) minmax(160px, 220px) minmax(0, 1fr);
        gap: clamp(1rem, 2.5vw, 1.75rem);
    }
}

@media (max-width: 991.98px) {
    .new-recent-members__layout {
        grid-template-columns: 1fr;
        gap: clamp(1.75rem, 4vw, 2.25rem);
    }

    .new-recent-members__intro-inner {
        max-width: none;
        padding-bottom: 0.5rem;
    }

    /* Decorative floats overlap copy when stacked — hide for clarity */
    .new-recent-members__floats {
        display: none;
    }

    .new-recent-members__grid {
        width: 100%;
        max-width: min(420px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .new-recent-members__featured-wrap {
        width: 100%;
    }

    .new-recent-members__featured {
        width: min(100%, 420px);
        margin-left: auto;
        margin-right: auto;
    }

    .new-recent-members__heading .heading_para {
        margin-left: auto;
        margin-right: auto;
    }

    .new-recent-members__heading .btn-theme-wrap {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .new-recent-members__grid {
        max-width: min(100%, 380px);
        gap: 10px;
    }

    .new-recent-members__grid-thumb {
        width: clamp(56px, 16vw, 80px);
    }

    .new-recent-members__grid-name {
        font-size: clamp(0.6875rem, 2.8vw, 0.75rem);
        line-height: 1.2;
        overflow-wrap: break-word;
    }

    .new-recent-members__grid-item {
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 575.98px) {
    .new-recent-members {
        padding: 3rem 0;
    }

    .new-recent-members__heading .sec_heading {
        font-size: clamp(1.5rem, 6.5vw, 1.95rem);
    }

    .new-recent-members__grid {
        max-width: 100%;
        gap: 8px;
    }

    .new-recent-members__grid-item {
        padding: 8px 6px 10px;
        gap: 6px;
    }

    .new-recent-members__featured {
        border-radius: 22px;
        padding: 12px;
        width: 100%;
    }

    .new-recent-members__featured-name {
        font-size: clamp(1.25rem, 5.5vw, 1.65rem);
        top: clamp(16px, 4vw, 24px);
        left: clamp(16px, 4vw, 24px);
        max-width: min(11rem, calc(100% - 5.5rem));
    }

    .new-recent-members__featured-tag {
        top: clamp(16px, 4vw, 24px);
        right: clamp(16px, 4vw, 24px);
        font-size: clamp(0.6875rem, 2.8vw, 0.8125rem);
        padding: 6px 10px;
        max-width: min(9.5rem, 46%);
    }
}

@media (max-width: 399.98px) {
    .new-recent-members__grid-thumb {
        width: clamp(52px, 42vw, 68px);
    }

    .new-recent-members__featured-tag {
        white-space: normal;
        line-height: 1.2;
        text-align: right;
    }
}

/* ─── New testimonial slider ─── */
@media (max-width: 991.98px) {
    .new-testimonial__slide .new-testimonial__card {
        max-width: 300px;
    }

    .new-testimonial__card {
        min-height: 400px;
        border-radius: 28px;
    }

    .new-testimonial__card-media {
        padding: 18px 18px 0;
    }

    .new-testimonial__card-photo-wrap {
        margin-bottom: 22px;
    }

    .new-testimonial__card-quote {
        font-size: 0.85rem;
        -webkit-line-clamp: 5;
    }

    .new-testimonial__card--no-media .new-testimonial__card-quote {
        -webkit-line-clamp: unset;
        font-size: 0.875rem;
    }
}

@media (max-width: 575.98px) {
    .new-testimonial {
        padding: 3rem 0;
    }

    .new-testimonial .heading_section .sec_heading {
        font-size: clamp(1.65rem, 6vw, 2rem);
    }

    .new-testimonial__edge-fade {
        width: clamp(48px, 14vw, 72px);
    }

    .new-testimonial__slide .new-testimonial__card {
        max-width: 280px;
    }

    .new-testimonial__card {
        min-height: 370px;
        border-radius: 26px;
    }

    .new-testimonial__card-media {
        padding: 16px 16px 0;
    }

    .new-testimonial__card-photo-wrap {
        margin-bottom: 20px;
    }

    .new-testimonial__card-photo {
        border-radius: 14px;
        border-width: 2px;
    }

    .new-testimonial__card-author {
        max-width: calc(100% - 12px);
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .new-testimonial__card-quote {
        padding: 14px 16px 18px;
        font-size: 0.8125rem;
        -webkit-line-clamp: 4;
    }

    .new-testimonial__card--no-media {
        padding: 1.5rem 1.25rem;
    }

    .new-testimonial__card--no-media .new-testimonial__card-quote {
        padding: 0;
        -webkit-line-clamp: unset;
        font-size: 0.8125rem;
    }

    .new-testimonial__nav-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* ─── New Lifetime Founding Circle ─── */
@media (max-width: 991.98px) {
    .new-lifetime-circle__stage {
        min-height: clamp(640px, 85vh, 820px);
    }

    .new-lifetime-circle__card {
        width: min(340px, 46%);
    }

    .new-lifetime-circle__card--tr {
        top: clamp(-0.25rem, 2%, 1rem);
    }
}

@media (max-width: 575.98px) {

    .new-lifetime-circle {
        padding: 0 0 607px !important;
    }

    .new-lifetime-circle__sticky-pin {
        padding: 2.5rem 0 2.75rem;
    }

    .new-lifetime-circle__stage {
        min-height: clamp(700px, 92vh, 900px);
    }

    .new-lifetime-circle__title {
        font-size: clamp(1.5rem, 5.5vw, 1.95rem);
    }

    .new-lifetime-circle__card {
        width: calc(100% - 1.5rem);
        max-width: none;
        left: 0.75rem !important;
        right: auto !important;
    }

    .new-lifetime-circle__card-inner {
        flex-direction: column;
        gap: 12px;
        padding: 12px 14px;
        min-height: 0;
    }

    .new-lifetime-circle__card-photo {
        width: 100%;
        max-width: none;
        min-width: 0;
        max-height: 160px;
        flex: none;
    }

    .new-lifetime-circle__card-photo img {
        min-height: 120px;
        max-height: 160px;
    }
}

/* Range: 465px – 575.78px */
@media (min-width: 465px) and (max-width: 575.78px) {

    .new-lifetime-circle__card--tr,
    .new-lifetime-circle__card--br {
        top: auto;
    }

    .new-lifetime-circle__card--tl {
        top: -5%;
    }

    .new-lifetime-circle__card--tr {
        top: 64%;
    }

    .new-lifetime-circle__card--bl {
        bottom: -43% !important;
    }

    .new-lifetime-circle__card--br {
        bottom: -85% !important;
    }
}

/* Range: 375px – 464px */
@media (min-width: 375px) and (max-width: 464px) {

    .new-lifetime-circle__card--tr,
    .new-lifetime-circle__card--br {
        top: auto;
    }

    .new-lifetime-circle__card--tl {
        top: -5%;
    }

    .new-lifetime-circle__card--tr {
        top: 64%;
    }

    .new-lifetime-circle__card--bl {
        bottom: -45% !important;
    }

    .new-lifetime-circle__card--br {
        bottom: -90% !important;
    }
}

/* Range: 320px – 374px */
@media (min-width: 320px) and (max-width: 698px) {

    .new-lifetime-circle__card--tr,
    .new-lifetime-circle__card--br {
        top: auto;
    }

    .new-lifetime-circle__card--tl {
        top: -5%;
        
    }

    .new-lifetime-circle__intro {
        top: 62% !important;
    }

    .new-lifetime-circle__card--tr {
        top: 83% !important;
    
    }

    .new-lifetime-circle__card--bl {
        bottom: -69% !important;

    }

    .new-lifetime-circle__card--br {
        bottom: -115% !important;
    }

    .new-lifetime-circle {
        padding: 0 0 807px !important;
    }
}

/* Range: 0px – 319px (predicted/extrapolated — verify on real device) */
@media (max-width: 319px) {

    .new-lifetime-circle__card--tr,
    .new-lifetime-circle__card--br {
        top: auto;
    }

    .new-lifetime-circle__card--tl {
        top: -5%;
    }

    .new-lifetime-circle__intro {
        top: 74% !important;
    }

    .new-lifetime-circle__card--tr {
        top: 103% !important;
    }

    .new-lifetime-circle__card--bl {
        bottom: -103% !important;
    }

    .new-lifetime-circle__card--br {
        bottom: -156% !important;
    }

    .new-lifetime-circle {
        padding: 0 0 1090px !important;
    }
}

/* ─── Testimonials: rem-based quote + layout ─── */
@media (max-width: 991.98px) {
    .testimonials_section {
        padding: 3rem 0;
    }

    .testi_quote_text {
        font-size: clamp(1.05rem, 2.5vw, 1.35rem);
        line-height: 1.55;
    }
}

@media (max-width: 575.98px) {
    .testimonials_section {
        padding: 2.5rem 0;
    }

    .testimonials_heading {
        margin-bottom: 1.75rem;
    }

    .testi_quote_text {
        font-size: 1.0625rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .testi_slide_inner {
        padding: 0;
    }

    .testi_thumb_grid {
        display: none;
    }

    .testimonials_layout {
        row-gap: 1.5rem;
    }
}

/* ─── Footer: left-aligned link lists on small screens ─── */
@media (max-width: 1199.98px) {
    .home_footer_section__col--brand {
        text-align: left;
    }

    .home_footer_section__intro {
        margin-left: 0;
        margin-right: 0;
    }

    .home_footer_section__social {
        justify-content: flex-start;
    }

    .home_footer_section__logo_link {
        display: inline-block;
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .home_footer_section {
        padding-top: 2.75rem;
    }

    .home_footer_section__main {
        text-align: left;
    }

    .home_footer_section__list .home_footer_section__link {
        justify-content: flex-start;
    }

    .home_footer_section__contact_item {
        justify-content: flex-start;
        text-align: left;
    }

    .home_footer_section__col--info .home_footer_section__heading {
        text-align: left;
    }

    .home_footer_section__contact_list {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .home_footer_section__bottom {
        text-align: left;
    }

    .home_footer_section__legal {
        font-size: 0.875rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Migrated from style.css — keep in sync when editing breakpoints there
   ═══════════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    .btn-theme-wrap {
        animation: none;
        background: linear-gradient(135deg, #ffc165, var(--secondary-color), #ffc165);
    }

    .btn-theme-wrap:hover {
        background: linear-gradient(135deg, #ffffff, #ffc165, var(--primary-color));
    }
}

@media (max-width: 991.98px) {
    .amcob-ecosystem-slider {
        padding: 3.5rem 0 2rem;
    }

    .amcob-ecosystem-slider__head {
        margin-bottom: 2.25rem;
    }

    .amcob-ecosystem-card__title {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .amcob-ecosystem-slider {
        --amcob-eco-card-gap: 16px;
    }

    .amcob-ecosystem-card {
        min-height: 158px;
        padding: 22px 20px 18px;
    }

    .amcob-ecosystem-card__title {
        font-size: 1.1rem;
    }

    .amcob-ecosystem-card__desc {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .amcob-ecosystem-marquee__row--slider {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .amcob-ecosystem-marquee__track {
        transform: none !important;
    }
}

@media (max-width: 991.98px) {
    .lifetime-circle__story {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lifetime-circle__timeline {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .lifetime-circle {
        padding: 3rem 0;
    }

    .lifetime-circle__story {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .lifetime-circle__story-item img {
        max-width: 100%;
        height: auto;
    }

    .lifetime-member-card {
        grid-template-columns: 1fr;
    }

    .lifetime-member-card__left {
        padding: 20px;
    }

    .lifetime-member-card__photo {
        order: -1;
        padding: 16px 16px 0;
        max-height: none;
    }

    .lifetime-member-card__photo img {
        min-height: 220px;
        max-height: 280px;
    }
}

@media (min-width: 768px) {
    .amcob_events__select-cell {
        flex: 1 1 200px;
        max-width: 220px;
    }
}

@media (min-width: 992px) {
    .amcob_events__period-inner {
        width: auto;
        min-width: 220px;
    }
}

@media (max-width: 767.98px) {
    .amcob_events__card-link {
        flex-direction: column;
        gap: 12px;
    }

    .amcob_events__card-aside {
        width: 100%;
    }

    .amcob_events__card-date {
        max-width: none;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 20px;
        padding: 16px 18px;
        border-radius: 14px;
    }

    .amcob_events__card-date-line {
        margin-bottom: 0;
    }

    .amcob_events__card-loc {
        max-width: none;
    }

    .amcob_events__card-panel-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 12px 14px;
        padding: 14px;
        min-height: 0;
        align-items: start;
    }

    .amcob_events__card-thumb {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 100%;
        min-height: 0;
        height: auto;
        aspect-ratio: 16 / 10;
        max-height: 220px;
        align-self: stretch;
    }

    .amcob_events__card-body {
        grid-column: 1;
        grid-row: 2;
        padding-right: 0;
    }

    .amcob_events__card-arrow {
        grid-column: 2;
        grid-row: 2;
        margin-left: 0;
        align-self: center;
    }
}

@media (max-width: 575.98px) {
    .contact_info_grid {
        grid-template-columns: 1fr;
    }

    .contact_map_wrap {
        height: 220px;
    }
}

@media (min-width: 768px) {
    .contact_form_panel {
        padding: 2rem 2rem 1.75rem;
    }
}

@media (min-width: 992px) {
    .testi_thumb_grid[data-grid="left"] {
        margin-inline: auto 0;
    }

    .testi_thumb_grid[data-grid="right"] {
        margin-inline: 0 auto;
    }
}

@media (max-width: 1199.98px) {
    .amcob-mega-inner {
        padding: 32px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title-rotator__track {
        animation: none;
        transform: translateY(0);
    }
}

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

    .hero-orbit__waves::before,
    .hero-orbit__waves::after,
    .hero-orbit__pulse {
        animation: none;
    }

    .hero-orbit__pulse {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }

    .hero-orbit__conic-spin {
        animation: none !important;
        transform: rotate(-60deg);
        will-change: auto;
    }

    .hero-orbit__member {
        transition: opacity 0.55s ease;
    }

    .hero-orbit__member-glass {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background: rgba(32, 36, 52, 0.72);
    }

    .affiliate-membership-banner__float {
        transition: none;
    }

    .affiliate-membership-banner__float-card {
        will-change: auto;
    }
}

/* ─── Membership page ─── */
@media (max-width: 991.98px) {
    .membership-faqs {
        padding: 56px 0 72px;
    }

    .membership-faqs__trigger {
        font-size: 1rem;
        padding: 1rem 1.1rem;
    }

    .membership-heroMainSec__title {
        font-size: clamp(2.5rem, 7.5vw, 4.35rem);
    }

    .membership-heroMainSec .row-container {
        height: 100px;
    }

    .membership-heroMainSec .image-container {
        width: 100px;
        height: 100px;
    }

    .compare-memberships {
        padding: 56px 0 72px;
    }

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

    .compare-memberships__th {
        font-size: 0.8125rem;
        padding: 0.85rem 0.5rem;
        line-height: 1.25;
    }

    .compare-memberships__th--feature {
        min-width: 11.5rem;
    }

    .compare-memberships__feature {
        font-size: 0.8125rem;
        padding: 0.75rem 0.75rem;
        width: 34%;
    }

    .compare-memberships__table th:not(.compare-memberships__th--feature),
    .compare-memberships__table td:not(.compare-memberships__feature):not(.compare-memberships__feature--empty) {
        min-width: 7rem;
    }

    .compare-memberships__cell--cta {
        min-width: 8.25rem;
        padding: 1rem 0.4rem 1.15rem;
    }

    .compare-memberships__btn-wrap {
        max-width: 9.5rem;
    }

    .compare-memberships__btn {
        padding: 9px 10px;
        font-size: 0.75rem;
    }

    .membership-journey {
        padding: 56px 0 72px;
    }

    .membership-journey-card__inner {
        padding: 1.65rem 1.5rem 1.5rem;
    }

    .membership-journey-card__text {
        margin-bottom: 2.25rem;
    }
}

@media (max-width: 575.98px) {
    .membership-faqs {
        padding: 44px 0 56px;
    }

    .membership-faqs__item {
        margin-bottom: 12px;
    }

    .membership-faqs__trigger {
        font-size: 0.9375rem;
    }

    .membership-faqs__body p {
        font-size: 0.875rem;
    }

    .membership-heroMainSec.heroMainSec {
        height: auto;
        min-height: 400px;
        max-height: none;
    }

    .membership-heroMainSec .row-container {
        height: 88px;
    }

    .membership-heroMainSec .image-container {
        width: 88px;
        height: 88px;
    }

    .membership-heroMainSec__title {
        font-size: clamp(2.5rem, 1.5vw, 2.35rem);
        line-height: 1.35;
    }

    .ambassador-program-banner .member-bubble {
        --bubble-scale: 0.82;
    }

    .ambassador-program-banner__bubbles .member-bubble:nth-child(n + 26) {
        display: none;
    }

    .amcob-connect-banner {
        height: auto;
        min-height: 400px;
        max-height: none;
    }

    .amcob-connect-banner__inner {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .amcob-connect-banner__title {
        font-size: clamp(1.35rem, 6vw, 2rem);
    }

    .amcob-connect-banner__face {
        width: 5.5rem;
        height: 5.5rem;
    }

    .amcob-connect-banner__faces {
        gap: 1rem;
    }

    .amcob-connect-workflow__shell {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .amcob-connect-workflow__stage {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 1.25rem;
    }

    .amcob-connect-workflow__right {
        max-width: none;
        margin-left: 0;
    }

    .amcob-connect-workflow__lines {
        display: none;
    }

    .amcob-connect-workflow__left-grid {
        grid-template-columns: 1fr;
    }

    .amcob-connect-workflow__card {
        min-height: auto;
    }

    .amcob-connect-workflow__card-tab {
        writing-mode: horizontal-tb;
        transform: none;
        padding: 0.5rem 0.75rem;
        width: 100%;
        justify-content: flex-start;
    }

    .amcob-connect-workflow__card {
        flex-direction: column;
    }

    .amcob-connect-workflow__pin {
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .amcob-connect-workflow__menu {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 1.25rem;
        padding-bottom: 0.85rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .amcob-connect-workflow__menu::-webkit-scrollbar {
        display: none;
    }

    .amcob-connect-workflow__menu-link {
        flex-shrink: 0;
    }

    .amcob-connect-pricing__layout {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .amcob-connect-pricing__intro-inner {
        max-width: none;
        align-items: center;
        text-align: center;
    }

    .amcob-connect-pricing__heading .heading_para {
        margin-left: auto;
        margin-right: auto;
    }

    .amcob-connect-pricing__toggle {
        justify-content: center;
    }

    .amcob-connect-pricing__heading .sec_heading {
        font-size: clamp(1.5rem, 6.5vw, 1.95rem);
    }

    .amcob-connect-pricing__offer {
        min-height: auto;
        width: 100%;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .amcob-connect-pricing__card-top {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .compare-memberships {
        padding: 44px 0 56px;
    }

    .compare-memberships__intro {
        font-size: 0.9375rem;
        padding: 0 0.25rem;
    }

    .compare-memberships__table {
        min-width: 34rem;
    }

    .compare-memberships__th--feature {
        min-width: 9.5rem;
    }

    .compare-memberships__feature {
        width: 38%;
        font-size: 0.75rem;
        padding: 0.65rem 0.6rem;
        line-height: 1.4;
    }

    .compare-memberships__cell {
        padding: 0.65rem 0.35rem;
    }

    .compare-memberships__cell--text {
        font-size: 0.75rem;
    }

    .compare-memberships__note {
        font-size: 0.6875rem;
    }

    .compare-memberships__row--cta .compare-memberships__cell,
    .compare-memberships__row--cta .compare-memberships__feature--empty {
        padding-top: 0.85rem;
        padding-bottom: 1rem;
    }

    .compare-memberships__cell--cta {
        min-width: 7.5rem;
        vertical-align: middle;
    }

    .compare-memberships__btn-wrap {
        max-width: 7.25rem;
    }

    .compare-memberships__btn {
        padding: 8px 8px;
        font-size: 0.6875rem;
        letter-spacing: 0.01em;
    }

    .membership-journey {
        padding: 44px 0 56px;
    }

    .membership-journey-card__title {
        font-size: 1.125rem;
    }

    .membership-cta {
        padding: 64px 0 72px;
    }

    .membership-cta__text {
        margin-bottom: 2rem;
    }
}

/* ─── Peer advisory group page ─── */
@media (max-width: 991.98px) {
    .peer-advisory-banner {
        height: auto;
        min-height: auto;
        padding: 5.5rem 0 3.5rem;
    }

    .peer-advisory-banner__bg {
        display: none;
    }

    .peer-advisory-banner__copy {
        max-width: none;
    }

    .peer-advisory-banner__shell::before {
        display: none;
    }

    .peer-advisory-banner__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .peer-advisory-banner__main .heading_para {
        font-size: 1rem;
        line-height: 1.65;
        margin-left: auto;
        margin-right: auto;
    }

    .peer-advisory-banner__main .btn-theme-wrap {
        display: flex;
        justify-content: center;
    }

    .peer-advisory-intro {
        padding-top: 3.25rem;
        padding-bottom: 3.5rem;
    }

    .peer-advisory-intro__header .sec_heading {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .peer-advisory-story__meta {
        padding-top: 0.35rem;
        padding-bottom: 0.15rem;
    }

    .peer-advisory-story--primary .peer-advisory-story__meta {
        padding: 1.35rem 1.25rem;
        border-radius: 18px;
    }

    .peer-advisory-story__index {
        font-size: clamp(2.75rem, 14vw, 3.75rem);
    }

    .peer-advisory-story__panel {
        border-radius: 18px;
    }

    .peer-advisory-includes__row>.col-md-6+.col-md-6 {
        border-left: none;
        border-top: 1px solid rgba(12, 22, 71, 0.1);
    }

    .peer-advisory-includes__item {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .bd-banner {
        height: auto;
        min-height: 420px;
        max-height: none;
    }

    .bd-banner-marquee {
        gap: 0.5rem;
    }

    .bd-banner-marquee__stamp {
        font-size: clamp(1.65rem, 9vw, 2.5rem);
    }

    .bd-banner-marquee__photo {
        width: clamp(72px, 20vw, 100px);
        height: clamp(44px, 12vw, 60px);
        border-radius: 10px;
    }

    .bd-not-listed__panel {
        border-radius: 18px;
        padding: 1.75rem 1.25rem;
    }

    .bd-not-listed__action .btn-theme-wrap {
        width: 100%;
    }

    .bd-not-listed__action .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .peer-advisory-banner {
        padding: 4.75rem 0 3rem;
        border-radius: 0 0 14px 14px;
    }

    .peer-advisory-banner__title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .peer-advisory-banner__main .heading_para {
        font-size: 0.9375rem;
    }
}

/* ─── Affiliate membership page ─── */
@media (max-width: 991.98px) {
    .affiliate-membership-banner {
        min-height: auto;
        padding: 5.5rem 0 3.5rem;
    }

    .affiliate-membership-banner__canvas,
    .affiliate-membership-banner__orbit-vignette {
        display: none;
    }

    .affiliate-membership-banner .inner_banner__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .affiliate-membership-banner__para {
        font-size: 1rem;
        line-height: 1.65;
    }

    .exclusive-benefits__head {
        text-align: center;
    }

    .exclusive-benefits__heading {
        text-align: center !important;
    }

    .exclusive-benefits__intro {
        margin-left: auto;
        margin-right: auto;
    }

    .affiliate-membership-page .affiliate-who-for,
    .affiliate-membership-page .affiliate-journey,
    .affiliate-membership-page .membership-cta,
    .affiliate-membership-page .exclusive-benefits.about-why-choose {
        padding: 3rem 0;
    }

    .affiliate-who-for__trigger {
        font-size: 1rem;
        padding: 1rem 1.1rem;
    }

    .affiliate-membership-page .affiliate-journey {
        min-height: 0;
    }
}

@media (max-width: 575.98px) {
    .affiliate-membership-banner {
        padding: 4.75rem 0 3rem;
        border-radius: 0 0 14px 14px;
    }

    .affiliate-membership-banner .inner_banner__title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .affiliate-membership-banner__para {
        font-size: 0.9375rem;
    }

    .affiliate-membership-page .affiliate-who-for,
    .affiliate-membership-page .affiliate-journey,
    .affiliate-membership-page .membership-cta,
    .affiliate-membership-page .exclusive-benefits.about-why-choose {
        padding: 3rem 0;
    }

    .affiliate-membership-page .affiliate-journey {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        min-height: 0;
    }

    .affiliate-journey__title {
        white-space: normal;
        font-size: clamp(1.5rem, 7vw, 2.125rem);
    }

    .affiliate-journey__text {
        margin-bottom: 1.75rem;
    }

    .affiliate-journey__price {
        margin-bottom: 1.5rem;
    }
}

/* ─── About Why Choose marquee ─── */
@media (max-width: 991.98px) {
    .about-why-choose--marquee .heading_section {
        margin-bottom: 2.5rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-why-choose--marquee .about-why-choose__row--slider {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .about-why-choose--marquee .about-why-choose__track {
        transform: none !important;
    }
}

/* ─── Lifetime Founding Circle (classic section) ─── */
@media (max-width: 1364px) {
    #foundingCircleSec .foundingCircleSecRowArrowBox {
        width: 10px;
    }

    #foundingCircleSec .foundingCircleSecRowArrowBox img {
        transform: translate(-73px, 20px);
        width: 155px;
    }

    #foundingCircleSec .foundingCircleSecRowArrowBox.down img {
        transform: translate(-73px, 72px);
    }
}

@media (max-width: 1199.98px) {
    #foundingCircleSec .foundingMembersNav {
        display: flex;
    }
}

@media (max-width: 1069px) {
    #foundingCircleSec .foundingCircleSecRowArrowBox {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #foundingCircleSec .foundingCircleSecRowBoxes,
    #foundingCircleSec .foundingCircleSecMembersSliderMain {
        scale: 0.9;
    }
}

@media (max-width: 767.98px) {
    #foundingCircleSec {
        padding: 32px 12px;
    }

    #foundingCircleSec .foundingCircleSecInnerHeadCon p.foundingCircleSecPara,
    #foundingCircleSec .foundingCircleSecParaBox p.foundingCircleSecPara,
    #foundingCircleSec .foundingCircleSecInnerBox p.foundingCircleLastPara {
        font-size: 16px;
        line-height: 26px;
    }

    #foundingCircleSec .foundingCircleSecRowBoxes,
    #foundingCircleSec .foundingCircleSecMembersSliderMain {
        margin: 48px auto;
    }

    #foundingCircleSec .foundingCircleSecMembersSliderMain .swiper-slide {
        padding: 20px;
    }
}