.home-countries {
    padding: 64px 0;
    background: #d2e6ff;
}
.home-countries__grid {
    margin: 0 106px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.home-countries__item {
    position: relative;
    display: block;
    aspect-ratio: 325 / 381;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-color: #e2edff;
    overflow: hidden;
}

.home-countries__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 136, 0, 0) 60%, #ff8800 100%);
    border-radius: 20px;
}

.home-countries__name {
    position: absolute;
    text-align: center;
    left: 24px;
    right: 24px;
    bottom: 24px;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    z-index: 1;
}

/* Tablet */
@media (max-width: 1024px) {
    .home-countries {
        padding: 48px 0;
    }

    .home-countries__grid {
        margin: 0 30px;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .home-countries__name {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .home-countries {
        padding: 32px 0;
    }

    .home-countries__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 24px;
    }

    .home-countries__name {
        font-size: 18px;
        left: 14px;
        bottom: 14px;
    }
}
