/* ============================================================
   Страница «Депозитные ячейки»
   Figma: Депозитные ячейки — 1:1113 (desktop), 1:1586 (mobile)
   ============================================================ */

:root {
    --promo-green: #52ae30;
    --promo-text: #151617;
    --promo-text-2: #50545d;
    --promo-text-3: #6b7079;
    --promo-surface: #f6f7fa;
    --promo-font-head: 'Squad', 'Source Sans 3', 'Source Sans Pro', Arial, sans-serif;
    --promo-font-body: 'Source Sans 3', 'Source Sans Pro', Arial, sans-serif;
}

main:has(.deposit-boxes),
main.deposit-boxes {
    padding: 0;
}

/* Длинные слова без пробелов не должны ломать сетку */
.deposit-boxes {
    overflow-wrap: anywhere;
}

.section {
    padding: 1.5rem 0;
}

.section .section__header {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.section .section__title {
    font-size: 1.75rem;
    font-family: var(--hero-font-family);
    line-height: 1;
    font-weight: 600;
    margin: 0;
}

.section .section__subtitle {
    font-size: 1rem;
    line-height: 1.37;
    margin: 0;
}

.section .section__title,
.section .section__subtitle {
    text-align: inherit;
}

@media (min-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .section .section__header {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .section .section__title {
        font-size: 2.5rem;
        line-height: 1.1;
        max-width: 900px;
        align-self: center;
    }

    .section .section__subtitle {
        font-size: 1.125rem;
        line-height: 1.5rem;
        max-width: 720px;
        align-self: center;
    }

    .promo-facts-section.section {
        padding-top: 2rem;
    }
}