/* ═══════════════════════════════════════════════════
   Section: Real Results
   ═══════════════════════════════════════════════════ */

.sw-real-results {
    background-color: #f8f6f2;
}

.sw-real-results__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 70px 0;
}

/* ─── Header ─── */
.sw-real-results__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
}

.sw-real-results__header-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

.sw-real-results__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 1.6px;
    line-height: 15px;
    text-transform: uppercase;
    color: #a59680;
    margin: 0;
}

.sw-real-results__heading {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 51.84px;
    letter-spacing: -0.96px;
    color: #2b2722;
    margin: 0;
    max-width: 500px;
}

.sw-real-results__heading em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #a59680;
}

/* Info callout */
.sw-real-results__callout {
    background-color: #f4f2e9;
    border-left: 3px solid #a59680;
    padding: 20px 20px 20px 27px;
    width: 280px;
    flex-shrink: 0;
}

.sw-real-results__callout p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 20.8px;
    color: #917e64;
    margin: 0;
    max-width: 215px;
}

/* ─── Patient Row ─── */
.sw-real-results__row {
    display: flex;
    gap: 30px;
    width: 100%;
    overflow: hidden;
}

.sw-real-results__patient {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

/* ─── 2×2 Image Grid ─── */
.sw-real-results__grid {
    display: flex;
    gap: 3px;
    width: 100%;
    overflow: hidden;
}

.sw-real-results__grid-col {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sw-real-results__img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.sw-real-results__img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Labels ─── */
.sw-real-results__labels {
    display: flex;
    justify-content: space-between;
    padding: 0 72px;
    overflow: hidden;
}

.sw-real-results__labels span {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 1.2px;
    line-height: 15px;
    text-transform: uppercase;
    color: #917e64;
    white-space: nowrap;
}

/* ─── Tagline ─── */
.sw-real-results__tagline {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 50.4px;
    letter-spacing: -0.96px;
    color: #2b2722;
    text-align: center;
    margin: 0;
}

.sw-real-results__tagline em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: #a59680;
}

/* ─── Carousel (hidden on desktop) ─── */
.sw-real-results__carousel-container {
    display: none;
}

/* ═══════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════ */
@media (max-width: 1240px) {
    .sw-real-results__inner {
        padding: 70px 32px;
    }
}

@media (max-width: 960px) {
    .sw-real-results__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .sw-real-results__callout {
        width: 100%;
    }

    .sw-real-results__callout p {
        max-width: 100%;
    }

    .sw-real-results__row {
        display: none;
    }

    .sw-real-results__heading {
        font-size: 36px;
        line-height: 40px;
        max-width: 100%;
    }

    .sw-real-results__inner {
        padding: 50px 20px;
        gap: 36px;
    }

    .sw-real-results__labels {
        padding: 0;
    }

    .sw-real-results__tagline {
        font-size: 22px;
        line-height: 36px;
    }

    /* ─── Carousel Container ─── */
    .sw-real-results__carousel-container {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
        align-items: center;
    }

    /* ─── Carousel Navigation ─── */
    .sw-real-results__carousel-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        width: 100%;
    }

    .sw-real-results__carousel-btn,
    .sw-real-results__carousel-btn:hover,
    .sw-real-results__carousel-btn:focus,
    .sw-real-results__carousel-btn:active {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px;
        min-height: 36px;
        border-radius: 50% !important;
        border: 1px solid #e2dbd2 !important;
        background: transparent !important;
        background-color: transparent !important;
        color: #2b2722 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
        padding: 0 !important;
        box-shadow: none !important;
        line-height: 1;
    }

    .sw-real-results__carousel-btn:hover {
        border-color: #a59680 !important;
    }

    .sw-real-results__carousel-btn:active {
        background-color: #f4f2e9 !important;
    }

    .sw-real-results__carousel-btn svg {
        width: 16px;
        height: 16px;
        display: block;
        flex-shrink: 0;
        stroke: #2b2722;
    }

    /* ─── Carousel Counter ─── */
    .sw-real-results__carousel-counter {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 20px;
        color: #63594c;
        white-space: nowrap;
        min-width: 40px;
        text-align: center;
    }

    /* ─── Carousel Viewport ─── */
    .sw-real-results__carousel-track {
        overflow: hidden;
        width: 100%;
    }

    .sw-real-results__carousel-track-inner {
        display: flex;
        flex-wrap: nowrap;
        transition: transform 0.3s ease;
        will-change: transform;
    }

    .sw-real-results__carousel-slide {
        min-width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
    }

    .sw-real-results__carousel-slide .sw-real-results__patient {
        width: 100%;
        max-width: 335px;
    }

    .sw-real-results__carousel-slide .sw-real-results__grid {
        gap: 3px;
    }

    .sw-real-results__carousel-slide .sw-real-results__img-wrap {
        height: auto;
        aspect-ratio: 166 / 200;
    }

    /* ─── Carousel Dots ─── */
    .sw-real-results__carousel-dots {
        display: flex;
        gap: 8px;
        justify-content: center;
        width: 100%;
    }

    .sw-real-results__carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        background-color: #d7d5cd;
        cursor: pointer;
        transition: background-color 0.2s ease;
        padding: 0;
        flex-shrink: 0;
    }

    .sw-real-results__carousel-dot.is-active {
        background-color: #a59680;
    }

    .sw-real-results__carousel-dot:hover:not(.is-active) {
        background-color: #e2dbd2;
    }
}
