.rm-tour-embed {
    --rm-tour-aspect-ratio: 16/9;
    position: relative;
    width: 100%;
    display: block;
    aspect-ratio: var(--rm-tour-aspect-ratio);
    min-height: 260px;
    border-radius: 18px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, #2d4957, #111a20 70%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.rm-tour-embed__cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.45s ease;
}

.rm-tour-embed__trigger {
    appearance: none;
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    text-align: left;
    color: inherit;
    background: transparent;
}

.rm-tour-embed__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 24px;
    padding: 48px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(8, 14, 20, 0.15) 0%, rgba(8, 14, 20, 0.65) 100%);
    transition: background 0.35s ease;
}

.rm-tour-embed__title {
    font-size: clamp(2.1rem, 3.6vw, 2.7rem);
    font-weight: 700;
    line-height: 1.25;
}

.rm-tour-embed__cta {
    display: inline-block;
    padding: 20px 36px;
    border-radius: 999px;
    font-size: 1.86rem;
    font-weight: 700;
    line-height: 1;
    background: #0ea5b7;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.rm-tour-embed__hint {
    max-width: 68ch;
    font-size: 1.8rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
}

.rm-tour-embed:hover .rm-tour-embed__cover,
.rm-tour-embed:focus-within .rm-tour-embed__cover {
    transform: scale(1.06);
}

.rm-tour-embed:hover .rm-tour-embed__overlay,
.rm-tour-embed:focus-within .rm-tour-embed__overlay {
    background: linear-gradient(180deg, rgba(8, 14, 20, 0.1) 0%, rgba(8, 14, 20, 0.7) 100%);
}

.rm-tour-embed.is-loading .rm-tour-embed__overlay {
    background: rgba(8, 14, 20, 0.78);
}

.rm-tour-embed.is-loading .rm-tour-embed__hint {
    display: none;
}

.rm-tour-embed iframe,
iframe.rm-tour-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

@media (max-width: 767px) {
    .rm-tour-embed {
        min-height: 220px;
        border-radius: 14px;
    }

    .rm-tour-embed__overlay {
        gap: 20px;
        padding: 32px;
    }

    .rm-tour-embed__cta {
        padding: 18px 28px;
        font-size: 1.72rem;
    }
}
