/**
 * ATS Service - Extra pagina Formazione
 * Caricato DOPO chi-siamo.css (page_css = ['chi-siamo','formazione']).
 */

/* ===== MASCHERA BLU DELL'HERO (fra sfondo e testo) ===== */
.page-hero { position: relative; background-position: center center;}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 102, 0.60); /* velo blu in trasparenza */
    z-index: 1;
}
.page-hero__inner {
    position: relative;
    z-index: 2; /* testo sopra la maschera */
}

/* ===== DIVISORIO: fascia immagine a tutta larghezza (pulita) ===== */
.page-band {
    width: 100%;
    height: 250px;            /* altezza originale del sorgente */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Sfondo grigio chiaro per la sezione video, per staccarla */
.about-video--alt {
    background: var(--gray-50);
}

@media (max-width: 768px) {
    .page-band { height: 250px; }
}