
.help {
    padding: 30px 0;
    font-family: Inter, sans-serif;
    color: var(--color-text);
    margin-bottom: 75px;
}

/* title */
.help__title {
    margin-bottom: 75px;
    font-family: Inter-Bold, sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
}

/* flex wrapper */
.help__list-wrapper {
    display: flex;
    gap: 32px;
}

/* column */
.help__item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* subtitle */
.help__subtitle {
    margin: 0;
    padding-bottom: 12px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    border-bottom: 1px solid var(--color-border);
}

/* list */
.help__list {
    margin: 0;
    padding-left: 20px;
}

.help__list li {
    margin-bottom: 12px;
}
.help__list li:last-child {
    margin-bottom: 0;
}

/* accent block */
.help__accent {
    background-color: var(--color-accent);
    padding: 20px;
    border-radius: var(--radius-md);
}

/* ---------- mobile ---------- */
@media (max-width: 768px) {
    .help {
        padding: 20px 0 60px;
        margin-bottom: 0;
    }

    .help__title {
        margin-bottom: 32px;
        font-size: 22px;
        line-height: 150%;
    }

    .help__list-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .help__subtitle {
        font-size: 16px;
        line-height: 150%;
    }
}
