.welcome-container { text-align: center; margin-bottom: 40px; }
.welcome-title {
    font-family: "Grold", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 2.4em;
    font-weight: 700;
}

.search-layout--centered {
    grid-template-columns: 1fr;
    justify-items: center;
}

.hero-banner{
    position: relative;
    left: 50%; right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 80px;
    width: 100vw; height: 500px;
    overflow: hidden; z-index: 1;
}
.hero-bg   { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-text {
    position: absolute; top: 25%; left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; text-align: center;
    font-size: 2.5rem; font-weight: bold;
    text-shadow: 0 2px 10px rgba(0,0,0,.7);
    width: 80%;
}

/* ========== RESPONSIVE ========== */

/* Tablette */
@media (max-width: 900px) {

    .hero-banner {
        height: 400px;
        margin-bottom: 60px;
    }

    .hero-text {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .welcome-title {
        font-size: 1.8em;
    }

    .hero-banner {
        height: 300px;
        margin-bottom: 40px;
    }

    .hero-text {
        font-size: 1.5rem;
        width: 90%;
    }

    body > .main-container > section:first-of-type {
        margin-top: 80px !important;
    }
}