/* ============================================================
   Executive Mobility — autoplaying background video (no controls)
   contained within the page container, with a headline, subtitle
   and a stat row overlaid.
   ============================================================ */

.huc-executive {
    padding: 3rem 0;
}

.huc-executive-frame {
    position: relative;
    min-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--huc-blue-clr);
    box-shadow: 0 16px 40px rgba(var(--huc-blue-rgb), 0.16);
}

.huc-executive-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.huc-executive-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
            rgba(var(--huc-blue-rgb), 0.65) 0%,
            rgba(var(--huc-blue-rgb), 0.25) 45%,
            rgba(var(--huc-blue-rgb), 0.75) 100%);
}

.huc-executive-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    padding: 3rem 2.5rem 2rem;
}

.huc-executive-copy {
    max-width: 560px;
}

.huc-executive-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--huc-white-clr);
}

.huc-executive-subtitle {
    margin: 0;
    max-width: 460px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(var(--huc-white-rgb), 0.82);
}

.huc-executive-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
}

.huc-executive-stats__item {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--huc-white-clr);
}

.huc-executive-stats__sep {
    width: 1px;
    height: 32px;
    background-color: rgba(var(--huc-white-rgb), 0.35);
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
    .huc-executive-frame {
        min-height: 420px;
        border-radius: 16px;
    }

    .huc-executive-content {
        min-height: 420px;
        padding: 2.25rem 1.5rem 1.75rem;
        gap: 2rem;
    }

    .huc-executive-stats {
        gap: 0.75rem 1.1rem;
    }

    .huc-executive-stats__item {
        font-size: 0.8rem;
    }

    .huc-executive-stats__sep {
        height: 26px;
    }
}

@media (max-width: 575.98px) {
    .huc-executive {
        padding: 2rem 0;
    }

    .huc-executive-frame {
        min-height: 380px;
        border-radius: 14px;
    }

    .huc-executive-content {
        min-height: 380px;
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .huc-executive-subtitle {
        font-size: 0.8125rem;
    }

    .huc-executive-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .huc-executive-stats__sep {
        display: none;
    }
}
