.eh-featured-guides {
    position: relative;
    width: 100%;
    margin: 0;
}

.eh-carousel-viewport {
    overflow: hidden;
}

.eh-carousel-track {
    display: flex;
    transition: transform 260ms ease;
    will-change: transform;
}

.eh-guide-slide {
    flex: 0 0 100%;
    min-width: 0;
}

.eh-guide-slide-link {
    position: relative;
    display: grid;
    min-height: clamp(360px, 58vh, 620px);
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background: #17201b;
}

.eh-guide-image,
.eh-guide-image img,
.eh-guide-image-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.eh-guide-image img {
    object-fit: cover;
}

.eh-guide-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 15, 13, .82), rgba(9, 15, 13, .34) 52%, rgba(9, 15, 13, .1));
}

.eh-guide-image-fallback {
    display: block;
    background: linear-gradient(135deg, #1f4b3a, #48636d);
}

.eh-guide-copy {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(680px, calc(100% - 40px));
    align-self: end;
    flex-direction: column;
    gap: 14px;
    padding: clamp(28px, 7vw, 72px);
}

.eh-guide-badge {
    width: fit-content;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.eh-guide-title {
    font-size: clamp(36px, 6vw, 76px);
    line-height: .96;
    font-weight: 800;
}

.eh-guide-description {
    max-width: 560px;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.5;
}

.eh-guide-cta {
    width: fit-content;
    margin-top: 4px;
    padding: 11px 16px;
    border-radius: 6px;
    color: #102018;
    background: #fff;
    font-weight: 700;
}

.eh-carousel-controls {
    position: absolute;
    right: clamp(18px, 5vw, 56px);
    bottom: clamp(18px, 5vw, 48px);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.eh-carousel-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 999px;
    color: #fff;
    background: rgba(9, 15, 13, .42);
    cursor: pointer;
}

.eh-country-menu {
    display: grid;
    grid-template-columns: repeat(var(--eh-country-columns, 4), minmax(0, 1fr));
    gap: 8px 18px;
}

.eh-country-menu a {
    display: block;
    padding: 8px 0;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, currentColor 18%, transparent);
}

@media (max-width: 720px) {
    .eh-guide-slide-link {
        min-height: 520px;
    }

    .eh-guide-copy {
        width: 100%;
        padding: 28px 20px 92px;
    }

    .eh-guide-image::after {
        background: linear-gradient(0deg, rgba(9, 15, 13, .88), rgba(9, 15, 13, .3));
    }

    .eh-carousel-controls {
        right: 20px;
        bottom: 24px;
    }

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