/* ============================================================
   CheckCards1 — Fekete kártyák nested lista
   ============================================================ */
.check-cards1-section {
    padding-bottom: 96px;
}

.check-cards1__title {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3.9375rem);
    line-height: 1.2;
    color: #000;
    margin-bottom: 8px;
}

.check-cards1__subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #000;
    margin-bottom: 0;
}

/* ---- Kártyák sor ---- */

.check-cards1__cards-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* ---- Egyedi kártya ---- */

.check-cards1__card {
    flex: 1 0 0;
    min-width: 0;
    background: #000;
    color: #fff;
    padding: 24px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ---- Lista elem ---- */

.check-cards1__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-cards1__icon {
    color: #fff;
    font-size: 1.385rem;
    flex-shrink: 0;
    margin-top: 3px;
    line-height: 1.5;
}

.check-cards1__item-text {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

/* ---- Footer ---- */

.check-cards1__footer p {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #000;
    margin-bottom: 0.75rem;
}

.check-cards1__footer p:last-child {
    margin-bottom: 0;
}

/* ---- Responsive ---- */

@media (max-width: 767px) {
    .check-cards1__cards-row {
        flex-direction: column;
        gap: 16px;
    }

    .check-cards1__card {
        width: 100%;
    }
}
