/* =========================
   STIGMA SECTION
   ========================= */

.page-section--stigma::before {
    background: none;
}

.page-section--stigma::after {
    background: none;
}

.page-section--stigma .section-content {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - (var(--content-pad) * 2)));
    padding-top: clamp(48px, 5vw, 72px);
    padding-bottom: clamp(40px, 4vw, 64px);
}

.stigma-compact {
    display: grid;
    grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(28px, 3vw, 48px);
    align-items: center;
}

.stigma-compact__copy {
    max-width: 520px;
}

.section-title--stigma {
    max-width: 7ch;
    margin-bottom: 10px;
    font-size: clamp(56px, 5vw, 88px);
    line-height: 0.92;
}

.stigma-compact__lead {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.35;
    color: #f2fbff;
}

.stigma-compact__list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.stigma-compact__item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border: 1px solid rgba(0, 215, 227, 0.13);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(8, 20, 36, 0.72), rgba(5, 12, 24, 0.54)), radial-gradient(circle at top left, rgba(0, 215, 227, 0.06), transparent 38%);
    backdrop-filter: blur(12px);
}

.stigma-compact__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 215, 227, 0.16);
    border-radius: 12px;
    background: rgba(1, 14, 28, 0.6);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.stigma-compact__item h3 {
    margin: 1px 0 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 1.4vw, 28px);
    font-weight: 400;
    line-height: 1.02;
    color: var(--text);
}

.stigma-compact__item p {
    margin: 0;
    max-width: 42ch;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-soft);
}

.stigma-compact__media {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
}

.stigma-compact__frame {
    padding: 14px;
    border: 1px solid rgba(0, 215, 227, 0.14);
    background: linear-gradient(180deg, rgba(7, 18, 34, 0.82), rgba(4, 10, 21, 0.64)), radial-gradient(circle at top left, rgba(0, 215, 227, 0.08), transparent 35%);
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.stigma-ui-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(46vh, 420px);
    object-fit: contain;
    border: 1px solid rgba(0, 215, 227, 0.12);
    border-radius: 12px;
    background: rgba(4, 10, 18, 0.56);
}

.stigma-compact__reward {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
    padding: 16px 20px;
    border: 1px solid rgba(0, 215, 227, 0.14);
    background: linear-gradient(180deg, rgba(8, 20, 38, 0.8), rgba(5, 12, 24, 0.62)), radial-gradient(circle at top right, rgba(0, 215, 227, 0.06), transparent 32%);
    backdrop-filter: blur(12px);
}

.stigma-compact__reward-label {
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.stigma-compact__reward p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.45;
    color: #ecfdff;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1200px) {
    .page-section--stigma .section-content {
        width: min(1160px, calc(100% - (var(--content-pad) * 2)));
    }

    .stigma-compact {
        grid-template-columns: minmax(320px, 0.95fr) minmax(380px, 1.05fr);
        gap: 28px;
    }

    .stigma-ui-image {
        max-height: min(42vh, 360px);
    }
}

@media (max-width: 1080px) {
    .stigma-compact {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }

    .stigma-compact__copy {
        max-width: none;
    }

    .stigma-compact__media {
        max-width: 700px;
        margin: 0 auto;
    }

    .stigma-ui-image {
        max-height: none;
    }

    .stigma-compact__reward {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .page-section--stigma .section-content {
        padding-top: 72px;
        padding-bottom: 60px;
    }

    .section-title--stigma {
        font-size: clamp(46px, 10vw, 68px);
    }

    .stigma-compact__lead {
        font-size: 22px;
    }

    .stigma-compact__item {
        padding: 14px;
    }

    .stigma-compact__reward {
        padding: 14px 16px;
    }

    .stigma-compact__reward p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .stigma-compact__item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stigma-compact__num {
        width: 36px;
        height: 36px;
    }

    .stigma-ui-image {
        border-radius: 12px;
    }
}
