/* =============================================================================
   Hero Centered — layout only.
   Typography, color and button styles come from dist/site.css components.
   ============================================================================= */

.hero-centered {
    position: relative;
    min-height: 680px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 20px 120px;
}

.hero-centered-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(14, 16, 46, 0.55) 0%,
        rgba(14, 16, 46, 0.72) 60%,
        rgba(14, 16, 46, 0.82) 100%
    );
}

.hero-centered-inner {
    position: relative;
    z-index: var(--z-raised);
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.hero-centered-kicker {
    margin-bottom: var(--space-5);
    color: #fff;
    font-weight: 400;
}

.hero-centered-title {
    margin-bottom: var(--space-6);
}

.hero-centered-body {
    margin-bottom: var(--space-10);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-centered-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-centered-btn {
    border-radius: 10px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-centered {
        min-height: 520px;
        padding: 140px 20px 80px;
    }

    .hero-centered-actions {
        flex-direction: column;
        align-items: center;
    }
}
