/* ═══════════════════════════════════════════════════
   Section: Recovery
   ═══════════════════════════════════════════════════ */

/* ─── Full-width dark background ─── */
.sw-recovery {
    background-color: #2b2722;
}

/* ─── Inner container: 1240px centered ─── */
.sw-recovery__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    gap: 130px;
    align-items: flex-start;
    padding: 90px 0 70px;
}

/* ─── Left content ─── */
.sw-recovery__content {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header */
.sw-recovery__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sw-recovery__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a59680;
    margin: 0;
}

.sw-recovery__heading {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 46.2px;
    letter-spacing: -0.88px;
    color: #fffefc;
    margin: 0;
    max-width: 302px;
}

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

.sw-recovery__description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
    color: #d7d5cd;
    margin: 0;
}

/* ─── Quote Block ─── */
.sw-recovery__quote-block {
    border-left: 2px solid #a59680;
    padding: 20px 22px;
    background: linear-gradient(to right, rgba(165, 150, 128, 0.08), rgba(43, 39, 34, 0));
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sw-recovery__quote {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 26px;
    color: #a59680;
    margin: 0;
}

.sw-recovery__quote-caption {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #d7d5cd;
    opacity: 0.8;
    margin: 0;
}

/* ─── Comparison Panel ─── */
.sw-recovery__comparison {
    width: 640px;
    flex-shrink: 0;
    display: flex;
    background-color: #302b23;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Individual panels */
.sw-recovery__panel {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
}

/* Typical panel (left) - default styling */
.sw-recovery__panel--typical {
    background-color: #302b23;
}

/* Snatched panel (right) - highlighted */
.sw-recovery__panel--snatched {
    background-color: rgba(78, 65, 48, 0.43);
    border-top: 3px solid #a59680;
    padding-top: 35px;
    align-self: stretch;
}

/* Panel header */
.sw-recovery__panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sw-recovery__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sw-recovery__dot--red {
    background-color: #917e64;
}

.sw-recovery__dot--gold {
    background-color: #a59680;
}

.sw-recovery__panel-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.sw-recovery__panel--typical .sw-recovery__panel-title {
    color: #917e64;
}

.sw-recovery__panel--snatched .sw-recovery__panel-title {
    color: #f5dfc0;
}

/* Panel list */
.sw-recovery__panel-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sw-recovery__panel-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sw-recovery__panel-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.sw-recovery__panel-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16.8px;
    flex: 1;
}

.sw-recovery__panel--typical .sw-recovery__panel-text {
    color: #d7d5cd;
    opacity: 0.8;
}

.sw-recovery__panel--snatched .sw-recovery__panel-text {
    color: #fffefc;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
    .sw-recovery__inner {
        gap: 50px;
        padding: 70px 40px 50px;
    }

    .sw-recovery__comparison {
        width: 480px;
    }

    .sw-recovery__heading {
        font-size: 38px;
        line-height: 40px;
        max-width: none;
    }

    .sw-recovery__panel {
        padding: 24px;
    }

    .sw-recovery__panel--snatched {
        padding-top: 27px;
    }
}

@media (max-width: 768px) {
    .sw-recovery__inner {
        flex-direction: column;
        gap: 32px;
        padding: 48px 20px 40px;
    }

    .sw-recovery__heading {
        font-size: 30px;
        line-height: 34px;
        max-width: none;
    }

    .sw-recovery__comparison {
        width: 100%;
        flex-direction: column;
    }

    .sw-recovery__panel {
        padding: 20px;
    }

    .sw-recovery__panel--snatched {
        border-top: 3px solid #a59680;
        padding-top: 23px;
    }
}
