/* =========================================================
   ABOUT PAGE — MISSION (page-only)
   - Default: single content block (normal flow) over blurred bg
   - Wide (>=980): paired mode = 2 corner text blocks over ONE bg
   - Controls: full-width dark lower bar (always at bottom)
   - Stage height floor in paired mode so 2-view never feels cramped
   Scope: .mission-v2--about only
   ========================================================= */

.mission-v2--about {
    position: relative;
    padding: clamp(78px, 7vw, 78px) 0;
    overflow: hidden;

    /* knobs */
    --mission-controls-h: 76px;
    /* approx: btn+wrap */
    --mission-bottom-gap: 12px;
    /* distance above controls for BL/BR */
    --mission-stage-h: clamp(520px, 58vh, 680px);
    /* paired-mode stage height floor */
}

/* =========================
   SHELL = card (2 rows)
   ========================= */
.mission-v2--about .mission-v2-shell {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;

    border-radius: var(--radius-xl);
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .12);
    background: #000;
    /* prevent lighter band */
    box-shadow: var(--shadow-soft);

    display: grid;
    grid-template-rows: 1fr auto;
    /* stage + controls */
    isolation: isolate;
}

/* =========================
   SLIDER (stage)
   ========================= */
.mission-v2--about .mission-slider {
    grid-row: 1;
    margin: 0;
    padding: 0;
    list-style: none;

    position: relative;
    min-height: 420px;
    /* base for single view */
}

/* Slides: only active participates by default */
.mission-v2--about .mission-item {
    position: relative;
    display: none;
    opacity: 1;
    pointer-events: none;

    background-position: var(--bg-pos-m, 50% 35%);
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}

.mission-v2--about .mission-item.is-active {
    display: block;
    pointer-events: auto;
}

/* Blur layer (ONLY on active) */
.mission-v2--about .mission-item.is-active::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: no-repeat;

    filter: blur(16px) saturate(1.12) contrast(1.03);
    transform: scale(1.10);
    opacity: .92;

    pointer-events: none;
}

/* Dark overlay (ONLY on active) */
.mission-v2--about .mission-item.is-active::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        radial-gradient(120% 80% at 50% 10%, rgba(255, 255, 255, .06), transparent 60%),
        linear-gradient(180deg,
            rgba(0, 0, 0, .40) 0%,
            rgba(0, 0, 0, .78) 58%,
            rgba(0, 0, 0, 1) 100%);

    pointer-events: none;
}

/* =========================
   CONTENT (default = normal flow panel)
   ========================= */
.mission-v2--about .mission-content {
    position: relative;
    z-index: 2;

    padding: 20px 18px 22px;
    margin: 0;

    color: rgba(255, 255, 255, .96);
    text-shadow: none;
    pointer-events: auto;
}

.mission-v2--about .mission-title {
    margin: 0 0 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -.02em;
    line-height: 1.08;
    font-size: clamp(1.35rem, 2.6vw, 2.0rem);
    color: rgba(255, 255, 255, .98);
}

.mission-v2--about .mission-desc {
    margin: 0 0 14px;
    line-height: 1.6;
    font-size: 1rem;
    color: rgba(255, 255, 255, .86);
    max-width: 72ch;
}

/* Bullets */
.mission-v2--about .mission-bullets {
    margin: 0;
    padding: 0;
    list-style: none;

    display: grid;
    gap: 10px;
    max-width: 72ch;
}

.mission-v2--about .mission-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    font-size: .98rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .84);
}

.mission-v2--about .mission-bullets li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
    margin-top: .45em;
    flex: 0 0 7px;
    box-shadow: 0 0 0 3px rgba(18, 192, 138, .14);
}

/* =========================
   CONTROLS — full-width dark lower bar
   (always bottom because it's row 2)
   ========================= */
.mission-v2--about .mission-controls-wrap {
    grid-row: 2;
    width: 100%;
    margin: 0;

    padding: 14px 14px 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .70), rgba(0, 0, 0, .95));
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mission-v2--about .mission-controls {
    position: static;
    transform: none;

    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;
    margin: 0;
    padding: 0;

    background: transparent;
    border: 0;
}

/* ✅ restore original hover/active feel */
.mission-v2--about .mission-nav-btn {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .92);

    font-size: 28px;
    line-height: 1;
    display: grid;
    place-items: center;

    cursor: pointer;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.mission-v2--about .mission-nav-btn:hover {
    transform: translateY(-1px);
    background: rgba(18, 192, 138, .14);
    border-color: rgba(18, 192, 138, .55);
}

.mission-v2--about .mission-nav-btn:active {
    transform: translateY(0);
}

.mission-v2--about .mission-timer {
    flex: 1 1 auto;
    min-width: 84px;
    height: 5px;

    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    overflow: hidden;

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

.mission-v2--about .mission-timer-bar {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

/* Small tweaks */
@media (max-width: 980px) {
    .mission-v2--about .mission-slider {
        min-height: 0;
    }

    .mission-v2--about .mission-content {
        padding: 18px 16px 18px;
    }

    .mission-v2--about .mission-title {
        font-size: clamp(1.25rem, 6.2vw, 1.65rem);
    }

    .mission-v2--about .mission-desc {
        font-size: .95rem;
    }
}

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

/* =========================================================
   PAIRED MODE (>=980px)
   - 2 text blocks over ONE bg
   - .is-active paints blur/overlay
   - .is-paired is text-only overlay
   - Stage has a height floor so 2-view is never cramped
   ========================================================= */

@media (min-width: 980px) {

    /* give the stage that "premium" height */
    .mission-v2--about .mission-slider {
        min-height: var(--mission-stage-h);
    }

    /* stage-style overlay */
    .mission-v2--about .mission-item {
        position: absolute;
        inset: 0;
        display: none;
        pointer-events: none;
    }

    .mission-v2--about .mission-item.is-active,
    .mission-v2--about .mission-item.is-paired {
        display: block;
        pointer-events: auto;
    }

    /* make sure the ACTIVE slide owns the height */
    .mission-v2--about .mission-item.is-active {
        min-height: var(--mission-stage-h);
    }

    /* paired slide never paints bg layers */
    .mission-v2--about .mission-item.is-paired {
        background-image: none !important;
    }

    .mission-v2--about .mission-item.is-paired::before,
    .mission-v2--about .mission-item.is-paired::after {
        content: none !important;
        display: none !important;
    }

    /* content becomes corner overlay */
    .mission-v2--about .mission-content {
        position: absolute;
        z-index: 2;

        width: min(34vw, 460px);
        max-width: 460px;

        padding: 0;
        margin: 0;

        text-shadow: 0 10px 26px rgba(0, 0, 0, .70);
    }

    /* cap line-length so TL/TR never collide */
    .mission-v2--about .mission-title {
        text-align: inherit !important;
        max-width: 22ch;
        font-size: clamp(1.35rem, 2vw, 2.05rem);
        line-height: 1.06;
    }

    .mission-v2--about .mission-desc,
    .mission-v2--about .mission-bullets {
        max-width: 46ch;
    }

    .mission-v2--about .mission-bullets {
        gap: 9px;
    }

    .mission-v2--about .mission-bullets li {
        font-size: .96rem;
        line-height: 1.45;
    }

    /* TL/TR/BL/BR positions */
    .mission-v2--about .mission-item[data-pos="tl"] .mission-content {
        top: clamp(18px, 3.2vw, 40px);
        left: clamp(18px, 3.2vw, 60px);
        right: auto;
        bottom: auto;
        text-align: left;
    }

    .mission-v2--about .mission-item[data-pos="tr"] .mission-content {
        top: clamp(18px, 3.2vw, 40px);
        right: clamp(18px, 3.2vw, 60px);
        left: auto;
        bottom: auto;
        text-align: right;
    }

    /* ✅ BL/BR sit consistently close to controls */
    .mission-v2--about .mission-item[data-pos="bl"] .mission-content {
        bottom: calc(var(--mission-controls-h) + var(--mission-bottom-gap) - 40px) !important;
        left: clamp(18px, 3.2vw, 60px);
        right: auto;
        top: auto;
        text-align: left;
    }

    .mission-v2--about .mission-item[data-pos="br"] .mission-content {
        bottom: calc(var(--mission-controls-h) + var(--mission-bottom-gap) - 40px) !important;
        right: clamp(18px, 3.2vw, 60px);
        left: auto;
        top: auto;
        text-align: right;
    }

    /* RIGHT-aligned bullets (TR/BR): dot on right */
    .mission-v2--about .mission-item[data-pos="tr"] .mission-bullets,
    .mission-v2--about .mission-item[data-pos="br"] .mission-bullets {
        margin-left: auto;
        text-align: right;
        justify-items: end;
    }

    .mission-v2--about .mission-item[data-pos="tr"] .mission-bullets li,
    .mission-v2--about .mission-item[data-pos="br"] .mission-bullets li {
        justify-content: flex-end;
        flex-direction: row-reverse;
        text-align: right;
    }

    .mission-v2--about .mission-item[data-pos="tr"] .mission-bullets li::before,
    .mission-v2--about .mission-item[data-pos="br"] .mission-bullets li::before {
        margin-left: 10px;
        margin-right: 0;
    }

    /* keep controls above in stacking context */
    .mission-v2--about .mission-controls-wrap {
        position: relative;
        z-index: 3;
    }
}

/* remove the seam between slider and controls */
.mission-v2--about .mission-slider {
    position: relative;
    z-index: 0;
}

.mission-v2--about .mission-controls-wrap {
    position: relative;
    z-index: 3;
    /* stays above the slide */
}

/* make the active slide extend 2px past the slider bottom */
.mission-v2--about .mission-item.is-active {
    margin-bottom: -2px;
    /* key */
    padding-bottom: 2px;
    /* prevents crop */
}

/* =========================================================
   FOUNDERS — FINAL (clean)
   - Desktop: image L/R, optional flip on 2nd card
   - Mobile: stacked at <=635
   - Photo: cover with subtle letterbox bands
   ========================================================= */

html[data-brand="clinic"] .founders {
    position: relative;
    overflow: hidden;
}

html[data-brand="clinic"] .founders::before {
    content: "";
    position: absolute;
    inset: -140px -140px auto -140px;
    height: 520px;
    background:
        radial-gradient(900px 520px at 18% 30%, rgba(18, 192, 138, .14), transparent 60%),
        radial-gradient(800px 520px at 80% 10%, rgba(197, 138, 99, .10), transparent 62%);
    pointer-events: none;
}

html[data-brand="clinic"] .founders-grid {
    margin-top: clamp(22px, 2.8vw, 30px);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(14px, 2.2vw, 20px);
}

html[data-brand="clinic"] .founder-card {
    display: grid;
    grid-template-columns: clamp(140px, 18vw, 190px) 1fr;
    gap: clamp(14px, 2.2vw, 18px);
    align-items: stretch;

    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
    box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
    overflow: hidden;
    backdrop-filter: blur(10px);

    position: relative;
    isolation: isolate;
}

html[data-brand="clinic"] .founder-card::before {
    content: "";
    position: absolute;
    inset: -110px -110px auto -110px;
    height: 240px;
    background:
        radial-gradient(240px 170px at 12% 35%, rgba(18, 192, 138, .16), transparent 65%),
        radial-gradient(300px 200px at 82% 10%, rgba(255, 255, 255, .08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

html[data-brand="clinic"] .founder-card--flip {
    grid-template-columns: 1fr clamp(140px, 18vw, 190px);
}

html[data-brand="clinic"] .founder-card--flip .founder-media {
    order: 2;
}

html[data-brand="clinic"] .founder-card--flip .founder-body {
    order: 1;
}

html[data-brand="clinic"] .founder-media {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: rgba(0, 0, 0, .22);
}

html[data-brand="clinic"] .founder-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 22%;
}

html[data-brand="clinic"] .founder-media::before,
html[data-brand="clinic"] .founder-media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 12.5%;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(12px) saturate(1.05);
    -webkit-backdrop-filter: blur(12px) saturate(1.05);
}

html[data-brand="clinic"] .founder-media::before {
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .38), rgba(0, 0, 0, .12));
}

html[data-brand="clinic"] .founder-media::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .14));
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {

    html[data-brand="clinic"] .founder-media::before,
    html[data-brand="clinic"] .founder-media::after {
        background: rgba(0, 0, 0, .18);
    }
}

html[data-brand="clinic"] .founder-body {
    position: relative;
    z-index: 1;
    padding: clamp(14px, 2vw, 18px) clamp(14px, 2.2vw, 22px) clamp(14px, 2vw, 18px) 0;
    display: grid;
    align-content: center;
    gap: 10px;
}

html[data-brand="clinic"] .founder-card--flip .founder-body {
    padding: clamp(14px, 2vw, 18px) 0 clamp(14px, 2vw, 18px) clamp(14px, 2.2vw, 22px);
}

html[data-brand="clinic"] .founder-kicker {
    margin: 0 0 4px;
    font-size: .86rem;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
    font-weight: 700;
}

html[data-brand="clinic"] .founder-name {
    margin: 0;
    font-size: clamp(1.15rem, 1.7vw, 1.4rem);
    letter-spacing: .01em;
}

html[data-brand="clinic"] .founder-tagline {
    margin: 2px 0 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.5;
}

html[data-brand="clinic"] .founder-desc {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    line-height: 1.65;
    max-width: 70ch;
}

html[data-brand="clinic"] .founder-actions {
    margin-top: 6px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

html[data-brand="clinic"] .founder-btn {
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
    min-height: 42px;
}

html[data-brand="clinic"] .founder-btn--ghost {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .92);
}

html[data-brand="clinic"] .founder-btn--ghost:hover {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .28);
}

html[data-brand="clinic"] .founder-btn--solid {
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(0, 0, 0, .88);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
}

html[data-brand="clinic"] .founder-btn--solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .30);
}

@media (min-width: 1200px) {
    html[data-brand="clinic"] .founders-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile founders: stacked <=635 */
@media (max-width: 635px) {

    html[data-brand="clinic"] .founder-card,
    html[data-brand="clinic"] .founder-card--flip {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 0 !important;
        border-radius: var(--radius-lg);
        align-items: stretch !important;
    }

    html[data-brand="clinic"] .founder-card--flip .founder-media,
    html[data-brand="clinic"] .founder-card--flip .founder-body {
        order: initial !important;
    }

    html[data-brand="clinic"] .founder-media {
        width: 100%;
        min-height: 220px;
        max-height: 320px;
        overflow: hidden;
        background: rgba(0, 0, 0, .22);
    }

    html[data-brand="clinic"] .founder-media img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: 50% 22%;
    }

    html[data-brand="clinic"] .founder-media::before,
    html[data-brand="clinic"] .founder-media::after {
        height: 8%;
        backdrop-filter: blur(16px) saturate(1.06);
        -webkit-backdrop-filter: blur(16px) saturate(1.06);
    }

    html[data-brand="clinic"] .founder-body {
        padding: 12px 14px 14px !important;
        gap: 8px;
        border-left: 0 !important;
        border-right: 0 !important;
    }

    html[data-brand="clinic"] .founder-kicker {
        font-size: .72rem;
        letter-spacing: .09em;
        margin: 0;
    }

    html[data-brand="clinic"] .founder-name {
        font-size: 1.02rem;
        line-height: 1.12;
        margin: 0;
    }

    html[data-brand="clinic"] .founder-desc {
        font-size: .92rem;
        line-height: 1.42;
        margin: 0;
    }

    html[data-brand="clinic"] .founder-actions {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    html[data-brand="clinic"] .founder-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        min-height: 42px;
        font-size: .92rem;
    }
}

@media (max-width: 380px) {
    html[data-brand="clinic"] .founder-media {
        min-height: 200px;
        max-height: 280px;
    }

    html[data-brand="clinic"] .founder-body {
        padding: 10px 12px 12px !important;
        gap: 7px;
    }

    html[data-brand="clinic"] .founder-kicker {
        font-size: .70rem;
    }

    html[data-brand="clinic"] .founder-name {
        font-size: .98rem;
    }

    html[data-brand="clinic"] .founder-desc {
        font-size: .88rem;
        line-height: 1.36;
    }

    html[data-brand="clinic"] .founder-actions {
        gap: 9px;
    }

    html[data-brand="clinic"] .founder-btn {
        padding: 9px 12px;
        min-height: 40px;
        font-size: .90rem;
    }
}

/* =========================================================
   WHY CHOOSE US — Responsive bubble grid
   ========================================================= */

html[data-brand="clinic"] .why-bubbles {
    position: relative;
    padding: clamp(78px, 7vw, 120px) 0;
    overflow: hidden;
}

html[data-brand="clinic"] .why-bubbles::before {
    content: "";
    position: absolute;
    inset: -140px -140px auto -140px;
    height: 520px;
    background:
        radial-gradient(900px 520px at 18% 30%, rgba(89, 168, 120, .14), transparent 60%),
        radial-gradient(800px 520px at 80% 10%, rgba(89, 168, 120, .10), transparent 62%);
    pointer-events: none;
}

html[data-brand="clinic"] .why-thread {
    margin-top: 18px;
    position: relative;

    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
}

html[data-brand="clinic"] .why-row {
    display: block;
    margin-top: 0;
}

html[data-brand="clinic"] .why-bubble {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
    border-radius: 18px;
    padding: 16px 16px 14px;

    backdrop-filter: blur(10px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .28);

    position: relative;
    overflow: hidden;
}

html[data-brand="clinic"] .why-bubble::before {
    content: "";
    position: absolute;
    inset: -90px -90px auto -90px;
    height: 190px;
    background:
        radial-gradient(170px 120px at 18% 35%, rgba(89, 168, 120, .18), transparent 65%),
        radial-gradient(200px 140px at 82% 20%, rgba(255, 255, 255, .08), transparent 70%);
    pointer-events: none;
}

html[data-brand="clinic"] .why-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

html[data-brand="clinic"] .why-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(89, 168, 120, .95);
    box-shadow: 0 0 0 4px rgba(89, 168, 120, .16);
}

html[data-brand="clinic"] .why-tag {
    font-size: .86rem;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
    font-weight: 700;
}

html[data-brand="clinic"] .why-title {
    margin: 0 0 6px;
    font-size: 1.12rem;
    letter-spacing: .01em;
}

html[data-brand="clinic"] .why-text {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.65;
}

html[data-brand="clinic"] .why-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* MEDIUM: 2 columns + right column offset */
@media (min-width: 820px) {
    html[data-brand="clinic"] .why-thread {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(14px, 2.2vw, 22px);
    }

    html[data-brand="clinic"] .why-bubble {
        border-radius: 28px;
        padding: 18px 18px 16px;
    }

    html[data-brand="clinic"] .why-thread>.why-row:nth-child(even) {
        margin-top: clamp(18px, 2.4vw, 40px);
    }
}

/* LARGE: 3 columns + middle column offset + pull edges of row 2 up */
@media (min-width: 1180px) {
    html[data-brand="clinic"] .why-thread {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(16px, 2.2vw, 24px);
    }

    html[data-brand="clinic"] .why-thread>.why-row {
        margin-top: 0;
    }

    html[data-brand="clinic"] .why-thread>.why-row:nth-child(3n + 2) {
        margin-top: clamp(18px, 2.4vw, 40px);
    }

    html[data-brand="clinic"] .why-thread>.why-row:nth-child(4),
    html[data-brand="clinic"] .why-thread>.why-row:nth-child(6) {
        margin-top: calc(clamp(18px, 2.4vw, 40px) * -0.55);
    }

    html[data-brand="clinic"] .why-bubble {
        border-radius: 34px;
    }
}

@media (max-width: 420px) {
    html[data-brand="clinic"] .why-bubble {
        border-radius: 16px;
        padding: 14px 14px 12px;
    }
}

/* =========================================================
   GLOBAL: KILL ALL "GLOW" BACKGROUNDS
   (section halos + card halos)
   ========================================================= */

/* section glows */
.mission-v2::before,
html[data-brand="clinic"] .founders::before,
html[data-brand="clinic"] .why-bubbles::before {
    content: none !important;
    display: none !important;
}

/* card inner glows */
html[data-brand="clinic"] .founder-card::before,
html[data-brand="clinic"] .why-bubble::before {
    content: none !important;
    display: none !important;
}