/* ION Heat — Support */

.support {
    background: var(--fon-light);
}

.support .container {
    flex-direction: column;
    gap: 42px;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 100px;
}

.support__title {
    color: var(--text);
    font-family: var(--h2-font-family);
    font-size: clamp(32px, 4vw, 64px);
    line-height: var(--h2-line-height);
    font-weight: var(--h2-font-weight);
    align-self: stretch;
}

/* Карточки */
.support__cards {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
    align-self: stretch;
    flex-wrap: wrap;
}

.support__card {
    background: var(--white);
    border-radius: 12px;
    padding: 13px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
    flex: 1 1 300px;
    max-width: 520px;
    text-decoration: none;
    transition: box-shadow 0.25s;
}

.support__card:hover {
    box-shadow: var(--card-shadow);
}

.support__card-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support__card-link {
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 10px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
}

.support__card-label {
    color: var(--text);
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 130%;
    font-weight: 300;
    text-transform: uppercase;
}

.support__card-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.support__card:hover .support__card-arrow {
    transform: translateX(4px);
}

/* ── Адаптив ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .support .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .support__cards {
        gap: 20px;
    }

    .support__card {
        flex: 1 1 calc(50% - 10px);
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .support__card {
        flex: 1 1 100%;
    }
}