/**
 * ATS Service - Extra pagina Assistenza H24
 * Caricato DOPO chi-siamo.css (page_css = ['chi-siamo','assistenza']).
 */

/* ===== MASCHERA BLU DELL'HERO (fra sfondo e testo) ===== */
.page-hero { position: relative; }
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 102, 0.60);
    z-index: 1;
}
.page-hero__inner {
    position: relative;
    z-index: 2;
}

/* ===== AZIONI H24 ===== */
.h24-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

.h24-note {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.inline-link {
    color: var(--ats-secondary);
    font-weight: var(--font-weight-medium);
    text-decoration: underline;
}
.inline-link:hover { color: var(--ats-secondary-dark); }

/* ===== CTA A DUE BOTTONI ===== */
.about-cta__buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== COSA COMPRENDE: griglia feature ===== */
.h24-title {
    text-align: center;
    margin-bottom: var(--space-10);
}

.h24-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: var(--space-6);
}

.h24-feature {
    background: var(--bg-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-6);
    transition: all var(--transition-base);
}
.h24-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.h24-feature h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2);
}
.h24-feature p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
}
