.vr-tour-promo {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: stretch;
    min-height: 350px;
    margin-top: clamp(32px, 5vw, 68px);
    margin-bottom: clamp(32px, 5vw, 68px);
    overflow: hidden;
    border: 1px solid rgba(22, 67, 101, 0.14);
    border-radius: 26px;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 110, 72, 0.12), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f2f8fb 100%);
    box-shadow: 0 20px 46px rgba(15, 54, 82, 0.12);
}

.vr-tour-promo__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(32px, 5vw, 66px);
}

.vr-tour-promo__eyebrow {
    margin: 0 0 14px;
    color: #f25322;
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vr-tour-promo h2 {
    max-width: 11ch;
    margin: 0;
    color: #164365;
    font-size: clamp(2rem, 3.6vw, 3.85rem);
    font-weight: 800;
    line-height: 1.04;
}

.vr-tour-promo h2 span {
    color: #f25322;
}

.vr-tour-promo__description {
    max-width: 38rem;
    margin: 22px 0 28px;
    color: #53728a;
    font-size: clamp(1rem, 1.35vw, 1.13rem);
    line-height: 1.65;
}

.vr-tour-promo__button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 21px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f1441c 0%, #ff845f 100%);
    box-shadow: 0 12px 24px rgba(242, 83, 34, 0.24);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.vr-tour-promo__button:hover,
.vr-tour-promo__button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(242, 83, 34, 0.34);
    color: #fff;
}

.vr-tour-promo__button span {
    font-size: 1.25em;
    line-height: 1;
}

.vr-tour-promo__media {
    position: relative;
    display: block;
    min-height: 350px;
    overflow: hidden;
    background: #163f60;
    color: #fff;
    isolation: isolate;
}

.vr-tour-promo__media::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(5, 35, 56, 0.56) 0%, rgba(5, 35, 56, 0.12) 58%, rgba(5, 35, 56, 0.25) 100%);
    content: '';
    pointer-events: none;
}

.vr-tour-promo__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vr-tour-promo__media:hover img,
.vr-tour-promo__media:focus-visible img {
    transform: scale(1.06);
}

.vr-tour-promo__media-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 2;
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: rgba(7, 39, 62, 0.66);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    color: #fff;
    font-size: 0.93rem;
    font-weight: 800;
    backdrop-filter: blur(6px);
}

.vr-tour-promo__media-label {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    z-index: 2;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 800;
    line-height: 1.15;
}

@media (max-width: 900px) {
    .vr-tour-promo {
        grid-template-columns: 1fr;
    }

    .vr-tour-promo__copy {
        padding: 42px 30px;
    }

    .vr-tour-promo h2 {
        max-width: 14ch;
    }

    .vr-tour-promo__media,
    .vr-tour-promo__media img {
        min-height: 280px;
    }
}

@media (max-width: 520px) {
    .vr-tour-promo {
        margin-right: 14px;
        margin-left: 14px;
        border-radius: 20px;
    }

    .vr-tour-promo__copy {
        padding: 34px 24px;
    }

    .vr-tour-promo__media,
    .vr-tour-promo__media img {
        min-height: 235px;
    }

    .vr-tour-promo__media-badge {
        top: 18px;
        right: 18px;
        width: 56px;
        height: 56px;
    }

    .vr-tour-promo__media-label {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }
}
