/* ============================================
   LIVE — Voucher Selection hero
   ============================================ */

.live-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-primary-dark, #2a2259);
    background-image: url('../images/live/bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.live-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(10, 8, 40, 0.35) 0%, rgba(10, 8, 40, 0.75) 100%);
}

/* Content */
.live-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 140px 24px 100px;
    text-align: left;
}

.live-hero-title-img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 0 32px;
}

.live-hero-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
    max-width: 460px;
    margin: 0 0 36px;
}

/* Actions */
.live-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.live-hero-cta {
    display: inline-block;
    padding: 16px 32px;
    background: var(--color-primary, #362C72);
    color: var(--color-text-white, #fff);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 28px rgba(54, 44, 114, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.live-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(54, 44, 114, 0.55);
}

.live-hero-link {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.live-hero-link:hover {
    color: var(--color-text-white, #fff);
}

/* Mobile */
@media (max-width: 768px) {
    .live-hero-content {
        max-width: 100%;
        padding: 120px 20px 60px;
        text-align: center;
    }

    .live-hero-title-img {
        max-width: 260px;
        margin: 0 auto 24px;
    }

    .live-hero-text {
        max-width: 100%;
        margin: 0 auto 32px;
    }

    .live-hero-actions {
        width: 100%;
        align-items: center;
    }

    .live-hero-cta {
        width: 100%;
        text-align: center;
    }
}
