/* =========================================
   FEATURES SECTION
========================================= */

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(13, 45, 115, 0.08);
    overflow: hidden;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 18px;
    min-width: 0;
    border-right: 1px solid #e8e8e8;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item > i {
    flex-shrink: 0;
    font-size: 38px;
    color: #0d2d73;
    width: 42px;
    text-align: center;
}

.feature-item h4 {
    margin: 0 0 6px;
    color: #222;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.feature-item p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.4;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .features-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .feature-item {
        border-bottom: 1px solid #e8e8e8;
    }

    .feature-item:nth-child(2n) {
        border-right: none;
    }

    .feature-item:last-child {
        border-right: none;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .features-wrapper {
        grid-template-columns: 1fr;
        border-radius: 18px;
        margin: 0 15px;
    }

    .feature-item {
        width: 100%;
        padding: 18px 20px;
        gap: 16px;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .feature-item > i {
        font-size: 30px;
        width: 38px;
    }

    .feature-item h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .feature-item p {
        font-size: 13px;
    }
}