/* =============================================================
   FEATURES GRID — 4 cards in a row, source: grey-tint bg, 15px radius,
   no border, no shadow. Icons are native-size illustrative graphics
   (~88–145px wide, ~89–112px tall on source); we render them at their
   intrinsic size up to a sensible max.
   ============================================================= */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-block-end: 32px;
}

.features-grid > * {
    min-width: 220px;
}

.feature-card {
    background: var(--color-bg-alt);            /* var(--color-bg-alt) — matches source */
    border-radius: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); /* source */
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.feature-card__icon {
    width: auto;
    height: 100px;                              /* uniform height; intrinsic width */
    max-width: 100%;
    object-fit: contain;
}

.feature-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-heading);
    margin: 0;
}

.feature-card__body {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}

@media (max-width: 1024px) {
    .features-grid {
        flex-direction: column;
    }

    .features-grid > * {
        min-width: 0;
    }
}

