.home-features {
    background: #f7faff;
}

.home-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.home-features__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--home-radius);
    padding: 2.5rem 1.6rem 2rem 1.67rem;
    box-shadow: var(--shadow-1, 0 1px 2px rgba(16, 24, 40, 0.05));
}

.home-features__icon {
    display: inline-flex;
    width: 4.44444rem;
    height: 4.44444rem;
    flex-shrink: 0;
    margin-bottom: 1.6rem;
}

.home-features__icon img {
    width: 100%;
    height: 100%;
}

.home-features__title {
   color: #2D2D2D;
    font-family: Quicksand;
    font-size: 1.38889rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0.5rem;
}

.home-features__desc {
    color: #000;
    font-family: Quicksand;
    font-size: 1.11111rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.66667rem; /* 150% */
    margin-bottom: 1rem;
}
.home-link {
    color: #FF5100;
font-family: Quicksand;
font-size: 1.25rem;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-top: auto;
}
@media (max-width: 1024px) {
    .home-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .home-features__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-features__card {
        padding: 1.25rem;
    }
}
