/* =========================================================
   Check Feature Cards Block
   ========================================================= */

.check-feature-cards {
    padding: 20px 0;
    background: #FFFFFF;
}

.check-feature-cards__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Title ────────────────────────────────────────────── */
.container-post h2.check-feature-cards__title {
    margin: 0;
    max-width: 840px;
}

.check-feature-cards__title span {
    color: #D41028;
}

/* ── Grid ─────────────────────────────────────────────── */
.check-feature-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 16px;
}

/* ── Card ─────────────────────────────────────────────── */
.check-feature-cards__card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border: 1px solid #1C1C1C;
    border-radius: 12px;
}

/* ── Icon ─────────────────────────────────────────────── */
.check-feature-cards__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    padding: 11px;
    background: #EEEEEE;
    border-radius: 8px;
}

.check-feature-cards__icon svg {
    display: block;
}

/* ── Text ─────────────────────────────────────────────── */
.container-post p.check-feature-cards__text {
    margin: 0;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    color: #1C1C1C;
}

@media (max-width: 991px) {
    .check-feature-cards__grid {
        grid-template-columns: 1fr;
    }
}