/* ========================
RESET DE BASE
=========================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ===================================================
/* SEO : ÉLÉMENTS INVISIBLES MAIS LISIBLES PAR GOOGLE 
=================================================== */
.seo-hidden {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ========================
TYPOGRAPHIE
=========================== */
body {
	font-family: 'Roboto', sans-serif;
	background-color: #050505;
	color: #fff;
	line-height: 1.6;
}

a {
	color: #fff;
	text-decoration: none;
	font-weight: lighter;
}

a:hover {
	opacity: 0.8;
}

span {
	color: #fff;
}

h2 {
	font-weight: lighter;
	margin-bottom: 10px;
	font-size: 1.6rem;
	color: #e30613;
}

p {
	font-size: 0.95rem;
	color: #fff;
	font-weight: lighter;
}
/* =========================
SÉCURITÉ ANCIENS NAVIGATEURS
=========================== */
@supports not (position: sticky) {
	.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	}
}
/* ========================
TITRES
=========================== */
.column.left h2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.column.left h2 .see-more {
	font-size: 0.95rem;
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
}

.column.left h2 .see-more:hover {
	color: #e30613;
}
/* ========================
HEADER
=========================== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #E30613;
}

/* ========================
HEADER CORPS
=========================== */
.header-corps {
    display: flex;
    align-items: center;
    width: 75%;
    margin: 0 auto;
}

/* ========================
LOGO
=========================== */
.header-left .logo {
    height: 50px;
}

/* ========================
MENU DESKTOP
=========================== */
.main-nav {
    display: flex;
    margin-left: 15px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.menu li {
    position: relative;
}

.menu li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 5px;
    transition: color 0.3s;
}

.menu li a:hover {
    color: #cccccc;
}

/* ========================
SOUS-MENUS DESKTOP
=========================== */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #e30613;
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    display: none;
    z-index: 1000;
    flex-direction: column;
}

.has-submenu:hover .submenu {
    display: flex;
}
/* ========================
RÉSEAUX SOCIAUX
=========================== */
.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.header-right a {
    color: #fff;
    margin-left: 15px;
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.header-right a:hover {
    opacity: 0.7;
}

.social-newsletter {
    margin-left: 10px;
    color: #fff;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.social-newsletter:hover {
    opacity: 0.7;
}
/* ========================
BURGER MOBILE
=========================== */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    margin-left: 20px;
}

.burger span {
    display: block;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}
/* ========================
MENU MOBILE FULL HEIGHT GAUCHE
=========================== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #1c1c1c;
    z-index: 2000;
    transition: left 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    padding-top: 0;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.mobile-nav ul li a {
    color: #fff;
    padding: 15px 20px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.mobile-nav ul li a:hover {
    color: #e30613;
}

/* ========================
CONTENU PRINCIPAL
=========================== */
.site-content {
    width: 100%;
    margin-bottom: 40px;
}
/* ========================
SECTIONS
=========================== */
.section {
    padding: 40px 20px;
}

.section.alt {
    background: #0d0d0d;
    margin-bottom: 20px;
}
/* ========================
CONTAINER
=========================== */
.container {
    max-width: 1200px;
    margin: auto;
}
/* ========================
DEUX COLONNES
=========================== */
.two-columns {
    display: flex;
    gap: 90px;
}
/* ========================
COLONNES
=========================== */
.column {
    flex: 1;
}
/* ========================
TEXTE
=========================== */
.column p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-top: 20px;
}
/* ========================
BLOC À LA UNE
=========================== */
.featured-article {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
}

.featured-article img {
    width: 100%;
    height: 270px;
    display: block;
    border-radius: 12px;
}

.featured-article p {
    margin: 35px 0 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s, opacity 0.3s;
}

.featured-article:hover p {
    color: #ccc;
    opacity: 0.8;
}
/* ========================
BLOC EN CE MOMENT
=========================== */
.now-playing {
    margin-top: 15px;
    overflow: hidden;
}
/* ========================
IFRAME
=========================== */
.now-playing iframe {
    width: 100%;
    height: 150px;
    border: 0;
    display: block;
}
/* ========================
CONTENEUR MÉTÉO
=========================== */
.meteo h2 {
    margin-bottom: 15px;
}
/* ========================
GRILLE DES PRÉVISIONS
=========================== */
.forecast-container {
    display: flex;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
}
/* ========================
CARTE JOUR
=========================== */
.forecast-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1c1c1c;
    border-radius: 8px;
    padding: 12px 20px;
    width: 100%;
    max-width: 165px;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 20px;
}
/* ========================
NOM DU JOUR
=========================== */
.day-name {
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 5px;
}
/* ========================
ICÔNE MÉTÉO
=========================== */
.forecast-day img {
    width: 40px;
    height: 40px;
    margin: 5px 0;
}
/* ========================
DESCRIPTION MÉTÉO
=========================== */
.condition {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 5px;
}
/* ========================
TEMPÉRATURE
=========================== */
.temp {
    font-weight: 600;
    color: #fff;
}
/* ========================
NOS ÉMISSIONS
=========================== */
.emissions-grid {
    display: flex;
    gap: 30px;
    width: 100%;
}

/* Carte émission */
.emission-item {
    display: block;
    overflow: hidden;
    flex: 1;
    text-decoration: none;
    transition: transform 0.3s;
}

.emission-item img {
    width: 100%;
    height: 160px;
    display: block;
    border-radius: 5px;
}

.emission-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 12px 0;
}

.emission-item p {
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.emission-item:hover h3 {
    color: #ccc;
}
/* ========================
FORMULAIRE CONTACT
=========================== */
form {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 21px;
    max-width: 100%;
    margin: 40px 0;
    box-sizing: border-box;
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Champs du formulaire */
form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    border-color: #4551A9;
    outline: none;
}

form textarea {
    resize: vertical;
    min-height: 140px;
}

/* Bouton principal */
form button {
    justify-self: start;
    background: #E30613;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, opacity 0.3s;
}

form button:hover {
    opacity: 0.7;
}

/* Messages */
.form-error {
    background: #fdecea;
    color: #d93025;
    padding: 5px 15px;
    border-radius: 6px;
}

.form-success {
    background: #e6f4ea;
    color: #188038;
    padding: 5px 15px;
    border-radius: 6px;
}

/* Champs alternatifs (si utilisés ailleurs) */
input,
textarea {
    width: 100%;
    padding: 12px;
    margin: 6px 0 16px 0;
    border: 1px solid #E30613;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Bouton alternatif */
button.btn {
    background: #E30613;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

button.btn:hover {
    background: #050505;
}

/* Infos contact */
.info-contact {
    margin-bottom: 20px;
}

.info-contact i {
    color: #fff;
    margin-right: 8px;
}

/* Carte */
.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}
/* ======================
ARIANE
========================= */
.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #fff;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}
/* ======================
PAGES
========================= */
.descriptions-pages {
    margin-top: 30px;
}

.container.full-width h1 {
    margin-bottom: 30px;
    font-size: 1rem;
}

.container.full-width h5 {
    margin-top: 35px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 700;
}

.container.full-width p {
    margin-bottom: 10px;
}

.container.full-width a {
    color: #fff;
    text-decoration: none;
    background: none;
}

.container.full-width a:hover {
    color: #ccc;
}

.container.full-width p[style] {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #aaa;
}
/* ======================
PAGES ACTU
========================= */
.breadcrumb-actus {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* ======================
TAGS
========================= */
.article-tags {
    margin: 30px 0 12px;
}

.article-tags .tag {
    background: #E30613;
    color: #fff;
    padding: 4px 10px;
    margin-right: 6px;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* ======================
BOUTONS DE PARTAGE
========================= */
.share-buttons {
    margin: 12px 0 20px;
    font-size: 0.9rem;
}

.share-buttons span {
    margin-right: 10px;
}

.share-buttons a {
    margin-right: 10px;
    color: #E30613;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.share-buttons a:hover {
    transform: scale(1.2);
}
/* =======================
SIDEBAR ARTICLES LIÉS
========================== */
.sidebar-related h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #E30613;
}

.sidebar-related ul {
    list-style: none;
    padding: 0;
}

.sidebar-related ul li {
    margin-bottom: 6px;
}

.sidebar-related ul li a {
    color: #fff;
    text-decoration: none;
}

.sidebar-related ul li a:hover {
    text-decoration: underline;
}

/* =======================
SIDEBAR LOCALISATION
========================== */
.sidebar-location {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #fff;
}

.sidebar-location i {
    color: #E30613;
    margin-right: 6px;
}
/* ======================
GRILLE ACTUALITÉS
========================= */
.actus-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-between;
    margin-top: 40px;
    width: 100%;
}

.actu-item {
    flex: 1 1 calc(25% - 19px);
    max-width: 300px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
    padding: 0;
}

.img-wrapper {
    width: 100%;
    height: 155px;
    overflow: hidden;
    border-radius: 5px;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.actu-item h3,
.actu-item p,
.actu-date {
    margin-left: 0;
    font-size: 0.95rem;
    margin-top: 5px;
}
/* ======================
ARTICLE INDIVIDUEL
========================= */
.article-image {
    margin: 30px 0;
    width: 100%;
    max-width: 800px;
    display: block;
}

.article-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
    margin: 15px 0;
}

/* Métadonnées */
.article-meta {
    margin: 10px 0 20px;
    color: #777;
    font-size: 0.9rem; /* suppression du doublon */
    display: flex;
    gap: 12px;
}

/* Sous-titre */
.article-subtitle {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #e30613;
}

/* Texte principal */
.article-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #f5f5f5;
}

.article-text p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

/* Date */
.actu-date {
    font-size: 0.8rem;
    color: #777;
    margin: 6px 0 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.actu-date i {
    font-size: 0.8rem;
    color: #999;
}

/* Carte événement */
.event-map {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #555;
}

.event-map p {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #ccc;
}
/* ========================
BOUTONS DE PARTAGE
=========================== */
.share-buttons {
    margin: 30px 0;
    font-size: 1rem;
}

.share-buttons span {
    margin-right: 10px;
    color: #fff;
}

.share-buttons a {
    margin-right: 8px;
    color: #E30613;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.share-buttons a:hover {
    transform: scale(1.2);
}

/* Bouton événement */
.btn-event {
    display: inline-block;
    padding: 10px 20px;
    background: #E30613;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    margin: 15px 0;
    transition: background 0.2s ease;
}

.btn-event:hover {
    background: #c20510;
}

/* Liste autres événements */
.autres-evenements {
    list-style: none;
    padding: 0;
}
/* =====================
MENU JOURS
======================== */
.programme-jours-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 30px;
}

.programme-jours-menu li {
	background: #E30613;
	border-radius: 5px; 
}

.programme-jours-menu a {
    display: inline-block;
    padding: 8px 19px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    background: #E30613;
    transition: opacity 0.3s ease;
}

.programme-jours-menu a:hover,
.programme-jours-menu a.active {
    background: #E30613;
    color: #fff;
    opacity: 0.6;
}
/* =================================
GRILLE PROGRAMMES
==================================== */
.grille-horaire {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.horaire-bloc {
    padding-top: 10px;
}

.programme-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    position: relative;
    width: 97%;
    margin-bottom: 40px;
}

/* Heure */
.programme-item .heure {
    font-weight: bold;
    font-size: 1.6em;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.programme-item .heure .point-rouge {
    width: 20px;
    height: 20px;
    background-color: #E30613;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Image */
.programme-item .programme-image {
    max-width: 100%;
    width: 100%;
    height: 320px;
    aspect-ratio: 3 / 2;
    margin-bottom: 10px;
}

/* Contenu */
.programme-item .contenu {
    text-align: left;
    max-width: 520px;
}

.programme-item .contenu h3 {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 4px;
}

.programme-item .contenu p {
    font-size: 1em;
    color: #fff;
    line-height: 1.5;
}

/* Badge "En ce moment" */
.badge-now {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #FF4C4C;
    color: #fff;
    font-size: 0.75em;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
}
/* =================================
PAGE EQUIPE
==================================== */
.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    margin-top: 5%;
}

.team-member {
    flex: 0 0 32.33%;
    box-sizing: border-box;
    text-align: left;
    margin-bottom: 20px;
}

/* Photo */
.team-photo {
    position: relative;
    width: 100%;
    max-width: 365px;
    overflow: hidden;
    border-radius: 5px;
}

.team-photo img {
    width: 100%;
    height: 195px;
    display: block;
}

/* Overlay photo */
.team-photo .overlay-photo {
    position: absolute;
    top: 30%;
    left: 38%;
    width: 64%;
    height: auto;
    transform: translate(-60%, -25%);
    pointer-events: none;
}

/* Logo */
.team-photo .logo-photo {
    position: absolute;
    top: -3%;
    left: 271px;
    width: 24%;
    height: auto;
    pointer-events: none;
}

/* Texte overlay */
.text-overlay {
    position: absolute;
    right: 7px;
    bottom: 3%;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    background: #111;
    padding: 5px;
    border-radius: 5px;
    pointer-events: none;
}
/* ================================
C'ÉTAIT QUOI CE TITRE
================================ */
.historique-container {
    margin-top: 20px;
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.historique-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
}

.historique-table th,
.historique-table td {
    padding: 12px 15px;
    text-align: left;
    font-size: 0.95rem;
    color: #fff;
    border-bottom: 1px solid #ddd;
}

.historique-table th {
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1;
}

/* Hover */
.historique-table tbody tr {
    transition: background-color 0.3s ease;
}

.historique-table tbody tr:hover {
    background-color: rgba(70,81,169,0.1);
}

/* Image */
.historique-table img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

/* Texte de mise à jour */
.last-update-text {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #555;
}
/* ========================
A LA UNE
=========================== */
.publication-date {
    font-size: 0.9rem;
    margin-top: 5px;
    margin-bottom: 15px;
}

/* Colonnes */
.two-columns {
    display: flex;
    flex-wrap: wrap;
}

.left-column {
    flex: 2;
    min-width: 300px;
}

.right-column {
    flex: 1;
    min-width: 200px;
}

/* Images */
.left-column img,
.right-column img {
	width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    margin-bottom: 40px;
    border-radius: 6px;
}

/* Texte */
.left-column p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Encarts pub */
.pub {
    border: none;
    padding: 0;
    text-align: center;
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.pub h1 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
/* ========================
NOS PARTENAIRES
=========================== */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-top: 30px;
}

.partner-card {
    flex: 1 1 calc(25% - 20px);
    max-width: 250px;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Logo */
.partner-logo-container {
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px;
}

/* Texte */
.partner-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #fff;
}

.partner-info p {
    font-size: 0.95rem;
    color: #fff;
    margin-top: 0;
}
/* ========================
BLOQUE À PROPOS
=========================== */
.footer-about {
    width: 100%;
    background-color: #e30613;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
}

.footer-about h3 {
    margin-bottom: 15px;
    font-size: 24px;
    text-transform: uppercase;
}

.footer-about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.5;
}
/* ========================
FOOTER
=========================== */
.site-footer {
    background-color: #050505;
    padding: 50px 20px;
    color: #fff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
}
/* ========================
COLONNES FOOTER
=========================== */
.footer-col h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* ========================
LISTES FOOTER
=========================== */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #e30613;
}
/* ========================
LOGO FOOTER
=========================== */
.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}
/* ========================
COPYRIGHT
=========================== */
.copyright {
    margin-top: 15px;
    font-size: 0.85rem;
}
/* =========================================================
   RESPONSIVE GLOBAL
   ========================================================= */

/* ========================
   ≤ 992px — tablette paysage
   ========================= */
@media (max-width: 992px) {

    /* --- HEADER --- */
    .header-corps {
        width: 95%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .menu {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
    }

    .menu li a {
        padding: 8px 4px;
        font-size: 0.95rem;
    }

    .header-right a {
        margin-left: 10px;
        font-size: 1.05rem;
    }

    /* --- LAYOUT GLOBAL --- */
    .section {
        padding: 30px 18px;
    }

    .two-columns {
        display: flex;
        gap: 35px;
        align-items: flex-start;
    }

    /* --- EMISSIONS --- */
    .emissions-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .emission-item {
        flex: 1 1 calc(50% - 20px);
        min-width: 260px;
    }

    /* --- PARTENAIRES --- */
    .partners-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .partner-card {
        flex: 1 1 calc(33.33% - 20px);
        min-width: 220px;
    }

    /* --- ACTUALITÉS --- */
    .actu-item {
        flex: 1 1 calc(33.33% - 20px);
        min-width: 260px;
    }

    /* --- EQUIPE --- */
    .team-member {
        flex: 0 0 48%;
        max-width: 48%;
    }

    /* --- FOOTER --- */
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: flex-start;
    }

    /* --- METEO (tablette paysage) --- */
    .forecast-container {
        display: flex;
        gap: 10px;
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .forecast-day {
        max-width: 134px;
        min-width: 120px;
        scroll-snap-align: start;
    }
}

/* ========================
   ≤ 768px — tablette portrait / mobile
   ========================= */
@media (max-width: 768px) {

    /* --- HEADER --- */
    .header {
        padding: 8px 12px;
    }

    .header-corps {
        width: 100%;
        max-width: 100%;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-left .logo {
        height: 45px;
        width: auto;
    }

    .main-nav {
        display: none;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .burger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* --- LAYOUT GLOBAL --- */
    .section,
    .container,
    .site-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .site-content {
        margin-bottom: 30px;
    }

    article {
        margin-bottom: 40px;
    }

    .two-columns {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    /* --- TITRES --- */
    h2 {
        font-weight: 400;
        margin-bottom: 10px;
        font-size: 0.98rem;
        color: #e30613;
    }

    .column.left h2 {
        font-size: 0.98rem;
    }

    .section.alt {
        background: none;
        margin-bottom: 0;
    }

    /* --- IMAGES GENERALES --- */
    /* On évite les hauteurs fixes, on travaille à l'aspect-ratio pour le CLS & LCP */
    .img-wrapper {
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: 5px;
        position: relative;
    }

    .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .left-column img,
    .right-column img,
    .featured-article img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-radius: 5px;
    }

    /* --- EMISSIONS --- */
    .emissions-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .emission-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .emission-item img {
        width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        display: block;
        border-radius: 5px;
        object-fit: cover;
    }

    /* --- METEO --- */
    .forecast-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: 100%;
    }

    .forecast-day {
        width: 100%;
        max-width: 100%;
    }

    /* --- ACTUALITÉS --- */
    .actus-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .actu-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* --- PROGRAMMES --- */
    .programme-item .programme-image {
        width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        border-radius: 5px;
        overflow: hidden;
    }

    .programme-item .programme-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* --- EQUIPE --- */
    .team-container {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: space-between;
        margin-top: 10%;
    }

    .team-member {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .team-photo {
        position: relative;
        width: 100%;
        max-width: none;
        overflow: hidden;
        border-radius: 5px;
    }

    .team-photo img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    /* --- PARTENAIRES --- */
    .partners-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .partner-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* --- FOOTER --- */
    .footer-container {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .container.full-width a {
        color: #fff;
        text-decoration: none;
        background: none;
        font-size: 0.7rem;
    }

