/* ============================================================
   Geography Chess — шахматка «География присутствия»
   ============================================================ */

.geography-chess {
    background: var(--color-white);
    padding: 100px 0 64px;
}

.geography-chess__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    box-sizing: border-box;
}

/* ── Single row ── */
.geography-chess__row {
    display: flex;
    align-items: center;
    gap: 64px;
}

.geography-chess__row--reverse {
    flex-direction: row-reverse;
}

/* ── Image ── */
.geography-chess__image {
    flex-shrink: 0;
    width: 590px;
    height: 496px;
    overflow: hidden;
}

.geography-chess__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Content ── */
.geography-chess__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    height: 496px;
}

/* ── Label ── */
.geography-chess__label {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0;
}

/* ── Title ── */
.geography-chess__title {
    font-family: var(--font-neo);
    font-size: 48px;
    font-weight: 400;
    line-height: 58px;
    letter-spacing: -1.8px;
    color: var(--color-black);
    margin: 0;
}

/* ── List ── */
.geography-chess__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.geography-chess__list-item {
    font-family: var(--font-inter);
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
    color: var(--color-text-muted);
    padding-left: 1.2em;
    position: relative;
}

.geography-chess__list-item::before {
    content: '—';
    position: absolute;
    left: 0;
}

/* ── Tablet ── */
@media (max-width: 1170px) {
    .geography-chess {
        padding: 64px 0;
    }

    .geography-chess__inner {
        padding: 0 48px;
        gap: 32px;
    }

    .geography-chess__image {
        width: 45%;
        height: 380px;
    }

    .geography-chess__content {
        height: auto;
    }

    .geography-chess__title {
        font-size: 36px;
        line-height: 44px;
        letter-spacing: -1px;
    }

    .geography-chess__list-item {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .geography-chess {
        padding: 0;
    }

    .geography-chess__inner {
        padding: 32px 24px;
        gap: 32px;
    }

    .geography-chess__row,
    .geography-chess__row--reverse {
        flex-direction: column;
        gap: 24px;
    }

    .geography-chess__image {
        flex: none;
        width: 100%;
        aspect-ratio: unset;
        height: 200px;
    }

    .geography-chess__content {
        flex: none;
        width: 100%;
        gap: 8px;
    }

    .geography-chess__label {
        font-size: 12px;
        letter-spacing: 1px;
        line-height: 18px;
    }

    .geography-chess__title {
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: 0;
    }

    .geography-chess__list-item {
        font-size: 14px;
        line-height: 22px;
    }
}
