/* ================================================================
   Velora Spotlight
   ================================================================ */

/* ── Grid layout ────────────────────────────────────────────── */
.vspot {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
}

.vspot--reverse-yes .vspot {
    direction: rtl;
}
.vspot--reverse-yes .vspot > * {
    direction: ltr;
}

/* ── Visual ─────────────────────────────────────────────────── */
.vspot-visual {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: none;
    background-color: #0B0C0E;
}

.vspot-image {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

/* ── Badge ──────────────────────────────────────────────────── */
.vspot-badge {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 18px;
    background-color: #CCFF02;
    color: #0B0C0E;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 7px;
}

/* ── Copy ───────────────────────────────────────────────────── */
.vspot-copy {
    display: flex;
    flex-direction: column;
}

.vspot-kicker {
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #CCFF02;
}

.vspot-heading {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-stretch: 125%;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: -0.02em;
    font-size: clamp(34px, 4.6vw, 60px);
    color: #F4F5F2;
    margin: 14px 0 0;
}

.vspot-heading .em {
    color: #CCFF02;
}

.vspot-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #A7ADB5;
    margin: 18px 0 0;
    max-width: 44ch;
}

/* ── Spec rows ──────────────────────────────────────────────── */
.vspot-specs {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.vspot-spec-row {
    display: grid;
    align-items: baseline;
    grid-template-columns: 28px 1fr auto;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vspot-spec-row .sri {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #CCFF02;
}

.vspot-spec-row .srl {
    font-size: 14px;
    color: #A7ADB5;
    line-height: 1.4;
}

.vspot-spec-row .srl b {
    color: #F4F5F2;
    font-weight: 600;
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.vspot-spec-row .srv {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-stretch: 110%;
    font-size: 26px;
    color: #F4F5F2;
    white-space: nowrap;
}

.vspot-spec-row .srv .u {
    font-size: 16px;
    color: #CCFF02;
}

/* ── CTA ────────────────────────────────────────────────────── */
.vspot-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.vspot-btn-primary,
.vspot-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.vspot-btn-primary {
    background-color: #CCFF02;
    color: #0B0C0E;
    border: none;
}

.vspot-btn-primary svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.vspot-btn-primary:hover svg {
    transform: translateX(3px);
}

.vspot-btn-ghost {
    background-color: transparent;
    color: #F4F5F2;
    border: 1px solid rgba(255,255,255,0.25);
}

.vspot-btn-ghost:hover {
    border-color: #F4F5F2;
}

/* ── Tablet ─────────────────────────────────────────────────── */
@media (max-width: 1039px) {
    .vspot {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vspot-image {
        height: 400px;
    }

    .vspot-desc {
        max-width: 100%;
    }
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .vspot {
        gap: 24px;
    }

    .vspot-image {
        height: 300px;
    }

    .vspot-heading {
        font-size: 32px;
        line-height: 0.95;
    }

    .vspot-spec-row {
        grid-template-columns: 24px 1fr auto;
        gap: 12px;
        padding: 14px 0;
    }

    .vspot-spec-row .srv {
        font-size: 22px;
    }

    .vspot-cta {
        flex-direction: column;
    }

    .vspot-btn-primary,
    .vspot-btn-ghost {
        justify-content: center;
        width: 100%;
    }
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .vspot-btn-primary svg {
        transition: none;
    }
}
