/* ==========================================================================
   IMAGE CARD GRID / BENEFITS SECTION - BEM STANDARD
   ========================================================================== */

.image-card-grid {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: clamp(60px, 8vw, 100px) 0;
}

/* HEADER CĂN GIỮA & MÀU SẮC ĂN THEO KHUNG CONTAINER BAO NGOÀI */
.image-card-grid__header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 52px auto;
    color: var(--text-title);
}

.image-card-grid__header span {
    color: var(--color-accent, #456C35);
    display: block;
}

/* LƯỚI 3 THẺ KÍCH THƯỚC CHUẨN 306x306 PX */
.image-card-grid__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1020px;
    margin: 0 auto;
}

.image-card-grid__card {
    position: relative;
    width: 100%;
    max-width: 306px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-card, 6px);
    margin: 0 auto;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: var(--transition-base, transform 0.4s ease, box-shadow 0.4s ease);
}

.image-card-grid__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.image-card-grid__card-content {
    position: relative;
    z-index: 2;
    padding: 24px 20px;
    text-align: center;
    color: var(--text-white, #ffffff);
    max-width: 90%;
}