.separation-haut-page {
    height: 5rem;
}

.section-haut-page {
    padding-top: 2rem;
}

.section-alerte {
    padding-top: 0;
}

.titre-section {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.titre-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 3px;
    background: currentColor;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.titre-section:hover::after {
    width: 5rem;
}

.titre-section-blanc {
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.titre-section-blanc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.titre-section-blanc:hover::after {
    width: 5rem;
}

.nombre-highlight {
    font-weight: 800;
    font-size: 1.15em;
}

.texte-blanc {
    color: white;
}

.champ-recherche {
    width: 100%;
}

.champ-recherche .mud-input-outlined {
    border-radius: 0.75rem;
    transition: box-shadow 0.3s ease;
}

.champ-recherche .mud-input-outlined:focus-within {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.champ-recherche-blanc .mud-input-outlined {
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
}

.champ-recherche-blanc .mud-input-label {
    color: rgba(255, 255, 255, 0.8);
}

.grille-informateurs-wrapper,
.grille-communes-wrapper,
.grille-camins-wrapper,
.grille-cossi-wrapper,
.grille-autres-wrapper {
    border-radius: 1rem;
    overflow: hidden;
}

.carte-informateur-item,
.carte-commune-item,
.carte-camin-item,
.carte-cossi-item,
.carte-video-item,
.carte-photo-item {
    transition: transform 0.3s ease;
}

.carte-informateur-item:hover,
.carte-commune-item:hover,
.carte-camin-item:hover,
.carte-cossi-item:hover,
.carte-video-item:hover,
.carte-photo-item:hover {
    transform: translateY(-3px);
}

.bloc-informateurs,
.bloc-communes,
.bloc-livre,
.bloc-informateurs-plein,
.bloc-colonne,
.bloc-camins-contenu,
.bloc-cossi-contenu,
.bloc-autres-contenu {
    display: flex;
    flex-direction: column;
}

.bloc-informateurs,
.bloc-communes,
.bloc-livre,
.bloc-informateurs-plein,
.bloc-colonne {
    height: 100%;
}

.contenu-fond-media {
    padding: 1rem;
}

.carte-fond {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1024px) {
    .separation-haut-page {
        height: 4rem;
    }

    .section-haut-page {
        padding-top: 1.5rem;
    }

    .contenu-fond-media {
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .separation-haut-page {
        height: 3rem;
    }

    .section-haut-page {
        padding-top: 1rem;
    }

    .titre-section,
    .titre-section-blanc,
    .texte-blanc {
        text-align: center;
    }

    .titre-section::after,
    .titre-section-blanc::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contenu-fond-media {
        padding: 0.5rem;
    }

    .carte-informateur-item:hover,
    .carte-commune-item:hover,
    .carte-camin-item:hover,
    .carte-cossi-item:hover,
    .carte-video-item:hover,
    .carte-photo-item:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .separation-haut-page {
        height: 2rem;
    }

    .section-haut-page {
        padding-top: 0.75rem;
    }

    .titre-section,
    .titre-section-blanc {
        font-size: 1.25rem;
    }

    .nombre-highlight {
        font-size: 1.1em;
    }
}