.artistes-hero-cta {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 60vh;
    padding: clamp(40px, 8vw, 120px) clamp(20px, 6vw, 120px);
    background-color: #111111;
    background-image: var(--hero-bg-desktop);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-sizing: border-box;
}

.artistes-hero-cta.is-fullwidth {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.artistes-hero-cta.is-no-bg {
    background-image: none;
    background: linear-gradient(135deg, #111111 0%, #242424 100%);
}

.artistes-hero-cta__overlay {
    position: absolute;
    inset: 0;
    background: #000000;
    pointer-events: none;
    z-index: 1;
}

.artistes-hero-cta__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.artistes-hero-cta__content {
    position: relative;
    max-width: 960px;
    z-index: 2;
}

.artistes-hero-cta.is-center .artistes-hero-cta__content {
    margin: 0 auto;
    text-align: center;
}

.artistes-hero-cta__badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.artistes-hero-cta__title {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin: 0 0 16px;
    color: #fff;
}

.artistes-hero-cta__subtitle {
    font-size: clamp(16px, 2.2vw, 22px);
    line-height: 1.5;
    margin: 0 0 28px;
    max-width: 720px;
}

.artistes-hero-cta.is-center .artistes-hero-cta__subtitle {
    margin-left: auto;
    margin-right: auto;
}

.artistes-hero-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
}

.artistes-hero-cta.is-center .artistes-hero-cta__actions {
    justify-content: center;
}

.artistes-hero-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.artistes-hero-cta__button:hover,
.artistes-hero-cta__button:focus {
    transform: translateY(-1px);
}

.artistes-hero-cta__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.artistes-hero-cta__stat-value {
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .artistes-hero-cta {
        min-height: 50vh;
        background-image: var(--hero-bg-mobile, var(--hero-bg-desktop));
    }

    .artistes-hero-cta__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .artistes-hero-cta.is-center .artistes-hero-cta__actions {
        align-items: center;
    }
}
