.country-stats,
.country-trusted {
    position: relative;
    overflow: hidden;
    padding: 54px 0;
    color: #fff;
    background:
        linear-gradient(rgba(17, 17, 17, .92), rgba(17, 17, 17, .94)),
        url("/images/granite/granite-1.webp") center / cover;
}

.country-stats__grid,
.country-trusted__grid {
    display: grid;
    gap: 18px;
}

.country-stat-card,
.country-trusted-card {
    text-align: center;
}

.country-stat-card i,
.country-trusted-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
    color: #c8a46b;
    font-size: 30px;
}

.country-stat-card strong {
    display: block;
    color: #c8a46b;
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    overflow-wrap: anywhere;
}

.country-stat-card span,
.country-trusted-card h3 {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.country-regions {
    background: linear-gradient(180deg, #fff 0%, #f8f7f5 100%);
}

.country-regions__heading,
.country-trusted__heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.country-regions__heading span,
.country-trusted__heading span {
    display: inline-block;
    margin-bottom: 15px;
    color: #c8a46b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.country-regions__heading h2,
.country-trusted__heading h2 {
    margin: 0;
    color: #111;
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.12;
}

.country-regions__heading h2::after,
.country-trusted__heading h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin: 20px auto 0;
    background: #c8a46b;
}

.country-regions__grid {
    display: grid;
    gap: 18px;
}

.country-region-card {
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, .11);
    border-radius: 6px;
    background: #fff;
}

.country-region-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.country-region-card__body {
    padding: 18px 16px;
    text-align: center;
}

.country-region-card__body h3 {
    margin: 0 0 8px;
    color: #111;
    font-size: 30px;
    font-weight: 600;
}

.country-region-card__body p {
    margin: 0 0 14px;
    color: #6b6b6b;
    font-size: 14px;
    line-height: 1.6;
}

.country-region-card__body ul {
    display: grid;
    gap: 8px;
    min-height: 150px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.country-region-card__body li {
    position: relative;
    padding-left: 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
}

.country-region-card__body li::before {
    content: "";
    position: absolute;
    top: .65em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8a46b;
    transform: translateY(-50%);
}

.country-region-card__body a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #c8a46b;
    color: #fff;
}

.country-trusted__heading h2,
.country-trusted-card h3 {
    color: #fff;
}

.country-trusted-card {
    padding: 0 10px;
}

.country-trusted-card h3 {
    font-size: 18px;
}

.country-trusted-card i {
    border: 1px solid rgba(200, 164, 107, .45);
    border-radius: 50%;
    font-size: 22px;
}

@media (min-width: 576px) {
    .country-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .country-regions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .country-trusted__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .country-stats__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .country-trusted__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .country-stat-card + .country-stat-card,
    .country-trusted-card + .country-trusted-card {
        border-left: 1px solid rgba(200, 164, 107, .25);
    }

    .country-regions__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .country-regions__heading h2,
    .country-trusted__heading h2 {
        font-size: 56px;
    }
}

@media (max-width: 575px) {
    .country-regions__heading h2,
    .country-trusted__heading h2 {
        font-size: 36px;
    }
}
