.home-features-grid_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.home-features-grid_item {
    border-radius: var(--border-radius-normal);
    background-color: var(--black);
    padding-bottom: 45vh;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

@media screen and (max-width: 1279px) {
    .home-features-grid_item {
        padding-bottom: 40vh;
    }
}

@media screen and (max-width: 767px) {
    .home-features-grid_grid {
        grid-template-columns: 1fr;
    }

    .home-features-grid_item {
        padding-bottom: 55%;
    }
}

@media screen and (max-width: 479px) {
    .home-features-grid_item {
        padding-bottom: 75%;
    }
}
