.destination-card {
    font: inherit;
    text-align: left;
    border: 0;
    cursor: pointer;
    width: 100%;
}

.destination-popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.destination-popup.is-open {
    display: block;
}

.destination-popup .destination-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .66);
}

.destination-popup-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(1080px, calc(100% - 40px));
    max-height: 90vh;
    overflow: auto;
    background: #fff;
}

.destination-popup-close {
    position: absolute;
    right: 18px;
    top: 16px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    font-size: 25px;
    cursor: pointer;
}

.destination-popup-gallery {
    position: relative;
    aspect-ratio: 16/8.7;
    background: #eee;
    overflow: hidden;
}

.destination-popup-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.destination-popup-gallery-prev,
.destination-popup-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    font-size: 20px;
    cursor: pointer;
}

.destination-popup-gallery-prev {
    left: 20px
}

.destination-popup-gallery-next {
    right: 20px
}

.destination-popup-gallery-count {
    position: absolute;
    right: 22px;
    bottom: 18px;
    padding: 7px 10px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 12px;
    letter-spacing: .08em;
}

.destination-popup-copy {
    padding: 38px 44px 44px;
}

.destination-popup-copy h2 {
    margin: 0;
    font: 500 clamp(34px, 4vw, 52px)/1.05 var(--font-heading);
    letter-spacing: -.035em;
}

.destination-popup-copy>p:last-child {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.75;
}

@media(max-width:720px) {
    .destination-popup-box {
        width: calc(100% - 24px)
    }

    .destination-popup-gallery {
        aspect-ratio: 4/3
    }

    .destination-popup-copy {
        padding: 28px 24px 32px
    }

    .destination-popup-gallery-prev {
        left: 12px
    }

    .destination-popup-gallery-next {
        right: 12px
    }
}