.country-grid-placeholder {
    border-radius: 8px;
    background: linear-gradient(0deg, var(--Dark, #052330) 0%, #12313E 100%);
    box-shadow: 0 3px 4px 0 rgba(255, 255, 255, 0.15) inset, 0 4px 24px 0 rgba(0, 17, 25, 0.70);
}

.country-empty-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    padding: 16px;
    cursor: pointer;
    text-decoration: none;
}

.country-empty-cta:link,
.country-empty-cta:visited,
.country-empty-cta:hover,
.country-empty-cta:active,
.country-empty-cta:focus {
    color: #FFF;
    text-decoration: none;
}

.country-empty-cta span {
    display: block;
}

.country-empty-cta--interests {
    background: #FF0167;
}

.country-why-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.country-why-block {
    display: flex;
    height: 240px;
    padding: 4px 6px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-radius: 12px;
    background: lightgray 50% / cover no-repeat;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}

.country-why-block:link,
.country-why-block:visited,
.country-why-block:hover,
.country-why-block:active,
.country-why-block:focus {
    text-decoration: none;
}

.country-why-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--card-bg-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: inherit;
    transform: scale(1);
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 0;
    pointer-events: none;
}

.country-why-block:hover::before,
.country-why-block:focus-visible::before {
    transform: scale(1.04);
}

.country-why-block > * {
    position: relative;
    z-index: 1;
}

.country-why-placeholder {
    height: 240px;
    min-height: 200px;
}

.country-why-empty-cta {
    min-height: 200px;
}

.country-why-name-card {
    display: flex;
    width: 100%;
    padding: 8px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 8px;
    background: rgba(5, 35, 48, 0.70);
    backdrop-filter: blur(15px) brightness(0.7);
}

.country-why-name {
    margin: 0;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
}

.country-why-all {
    display: flex;
    height: 240px;
    padding: 8px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    background: #FF0167;
    color: #FFF;
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.country-why-all:link,
.country-why-all:visited,
.country-why-all:hover,
.country-why-all:active,
.country-why-all:focus {
    color: #FFF;
    text-decoration: none;
}

.country-all-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

.country-swiper-all-btn {
    display: none;
    margin-top: 8px;
    width: 100%;
    border-radius: 8px;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.country-swiper-all-btn:link,
.country-swiper-all-btn:visited,
.country-swiper-all-btn:hover,
.country-swiper-all-btn:active,
.country-swiper-all-btn:focus {
    color: #FFF;
    text-decoration: none;
}

.country-swiper-all-btn--interests {
    background: #FF0167;
}

.country-why-all,
.country-swiper-all-btn,
.country-empty-cta {
    transition: box-shadow 0.2s ease;
}

.country-why-all:hover,
.country-why-all:focus-visible,
.country-swiper-all-btn:hover,
.country-swiper-all-btn:focus-visible,
.country-empty-cta:hover,
.country-empty-cta:focus-visible {
    box-shadow: inset 0 0 0 9999px rgba(255, 255, 255, 0.20);
}

@media (max-width: 1500px) {
    .country-why-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1150px) {
    .country-why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .country-why-block,
    .country-why-all {
        height: 200px;
    }

    .country-why-placeholder {
        height: 200px;
        min-height: 200px;
    }

    .country-why-all {
        flex-direction: column;
        gap: 12px;
        font-size: 16px;
    }

    .country-empty-cta,
    .country-why-empty-cta {
        display: flex;
        height: 60px !important;
        min-height: unset;
        flex: 1 !important;
        flex-direction: row;
        max-width: 260px;
        width: 100% !important;
    }

    .country-empty-cta svg,
    .country-why-empty-cta svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 640px) {
    .country-swiper-all-btn {
        display: flex;
        height: 60px;
        margin-top: 10px;
    }

    .country-why-grid.country-why-grid--mobile-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .country-why-grid.country-why-grid--mobile-list .country-why-block,
    .country-why-grid.country-why-grid--mobile-list .country-why-all,
    .country-why-grid.country-why-grid--mobile-list .country-why-empty-cta {
        width: 100%;
        height: 200px;
    }
}
