/* ═══════════════════════════════════════════════════════════════
   EVENT.CSS — Page Événements
   ADN : fond blanc, Anton watermark, #097eeb, Poppins
═══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════
   TICKER DÉFILANT
══════════════════════════════════════ */
.ev-ticker-wrap {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    overflow: hidden;
    height: 64px;
}
.ev-ticker-badge {
    flex-shrink: 0;
    background: #111;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}
.ev-ticker-badge i { color: #097eeb; font-size: 0.9rem; }
.ev-ticker-badge::after {
    content: '';
    position: absolute;
    right: -16px; top: 0; bottom: 0;
    width: 0;
    border-style: solid;
    border-width: 32px 0 32px 16px;
    border-color: transparent transparent transparent #111;
}
.ev-ticker-track-outer {
    flex: 1;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}
.ev-ticker-track {
    display: flex;
    align-items: center;
    height: 64px;
    width: max-content;
    animation: tickerScroll 50s linear infinite;
}
.ev-ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.333%); }
}
.ev-ticker-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px 0 0;
    white-space: nowrap;
}
.ev-ticker-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #097eeb;
    flex-shrink: 0;
    border-left: 2px solid #097eeb;
    padding-left: 10px;
}
.ev-ticker-label i { font-size: 0.7rem; }
/* Toutes les catégories = même style sobre */
.ev-ticker-label-agenda,
.ev-ticker-label-match,
.ev-ticker-label-news { color: #097eeb; }
.ev-ticker-titre {
    font-size: 0.92rem;
    font-weight: 600;
    color: #111;
}
.ev-ticker-date {
    font-size: 0.75rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}
.ev-ticker-sep {
    color: #ddd;
    font-size: 0.7rem;
    padding: 0 4px;
}

/* ══════════════════════════════════════
   EN-TÊTES DE SECTIONS (watermark Anton)
══════════════════════════════════════ */
.ev-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding: 60px 15% 80px;
}
/* Espace spécifique avant le carrousel news */
#actus.ev-text-section {
    padding-bottom: 80px;
    margin-bottom: 0;
}
.ev-text-section .watermark {
    position: absolute;
    font-size: 220px;
    font-family: 'Anton', sans-serif;
    color: #dadada;
    z-index: 0;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}
.ev-text-section h2 {
    font-size: 30px;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════
   CARROUSEL MATCHS — Plein écran
══════════════════════════════════════ */
.matchs-carousel-section { padding: 0; }

.mc-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ── Slides ── */
.mc-track {
    position: relative;
    width: 100%;
    height: 520px;
}
.mc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mc-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* ── Fond ambiance terrain ── */
.mc-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060c18 0%, #0a1628 50%, #060c18 100%);
    overflow: hidden;
}
.mc-bg-halo {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}
.mc-bg-halo.left {
    background: radial-gradient(circle, rgba(9,126,235,0.6), transparent 70%);
    bottom: -200px; left: -100px;
    animation: haloFloat 8s ease-in-out infinite alternate;
}
.mc-bg-halo.right {
    background: radial-gradient(circle, rgba(9,126,235,0.2), transparent 70%);
    top: -200px; right: -100px;
    animation: haloFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes haloFloat {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, 20px) scale(1.1); }
}
/* Lignes parquet */
.mc-bg-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, transparent 49.6%, rgba(255,255,255,0.04) 49.6%, rgba(255,255,255,0.04) 50.4%, transparent 50.4%),
        radial-gradient(ellipse at 50% 50%, transparent 32%, rgba(255,255,255,0.03) 32%, rgba(255,255,255,0.03) 34%, transparent 34%);
}

/* ── Badges haut ── */
.mc-badges {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 48px 0;
}
.mc-badge-comp {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.7rem; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px; border-radius: 30px;
}
.mc-badge-comp i { color: #097eeb; }
.mc-badge-date {
    display: inline-flex; align-items: center; gap: 7px;
    background: #097eeb;
    color: #fff;
    font-size: 0.72rem; font-weight: 700;
    padding: 8px 18px; border-radius: 30px;
    box-shadow: 0 4px 20px rgba(9,126,235,0.5);
}

/* ── Corps équipes VS ── */
.mc-body {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 10%;
    gap: 20px;
    flex: 1;
}

.mc-team {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mc-team.left { align-items: flex-start; }
.mc-team.right { align-items: flex-end; text-align: right; }

.mc-team-avatar {
    width: 88px; height: 88px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem; letter-spacing: 1px;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.mc-team-avatar.dom {
    background: linear-gradient(135deg, #097eeb, #0056b3);
    box-shadow: 0 12px 40px rgba(9,126,235,0.5);
    border-color: rgba(9,126,235,0.4);
}
.mc-team-avatar.ext {
    background: linear-gradient(135deg, #1f2937, #374151);
}
/* Logo image dans l'avatar */
.mc-team-avatar img {
    width: 72%; height: 72%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
}
.mc-team-name {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}
.mc-team-role {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* VS central */
.mc-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.mc-vs-ring {
    width: 90px; height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(9,126,235,0.4);
    display: flex; align-items: center; justify-content: center;
    background: rgba(9,126,235,0.08);
    box-shadow: 0 0 40px rgba(9,126,235,0.2), inset 0 0 20px rgba(9,126,235,0.05);
}
.mc-vs-label {
    font-family: 'Anton', sans-serif;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 4px;
}
.mc-vs-time {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 3px;
    background: rgba(9,126,235,0.7);
    backdrop-filter: blur(8px);
    padding: 6px 22px;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(9,126,235,0.4);
}

/* ── Footer : lieu ── */
.mc-footer {
    position: relative;
    z-index: 10;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.mc-footer-lieu,
.mc-footer-full-date {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: rgba(255,255,255,0.55);
    font-weight: 500;
}
.mc-footer-lieu i    { color: #097eeb; }
.mc-footer-full-date i { color: rgba(255,255,255,0.3); }

/* ── Flèches ── */
.mc-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 20;
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    color: #fff; font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.mc-arrow:hover {
    background: #097eeb;
    border-color: #097eeb;
    transform: translateY(-50%) scale(1.1);
}
.mc-prev { left: 28px; }
.mc-next { right: 28px; }

/* ── Dots + barre de progression ── */
.mc-controls {
    position: absolute;
    bottom: 64px;
    left: 50%; transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.mc-dots {
    display: flex;
    gap: 8px;
}
.mc-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none; cursor: pointer;
    background: rgba(255,255,255,0.25);
    transition: background 0.3s, transform 0.3s, width 0.3s;
    padding: 0;
}
.mc-dot.active {
    background: #097eeb;
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(9,126,235,0.6);
}
.mc-progress-bar {
    width: 120px; height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.mc-progress-fill {
    height: 100%;
    width: 0%;
    background: #097eeb;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(9,126,235,0.6);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .mc-track { height: 480px; }
    .mc-body  { padding: 0 5%; gap: 12px; }
    .mc-team-name { font-size: 1.1rem; }
    .mc-team-avatar { width: 64px; height: 64px; font-size: 1.3rem; }
    .mc-vs-ring { width: 68px; height: 68px; }
    .mc-vs-time { font-size: 1.6rem; }
    .mc-badges { padding: 20px 24px 0; }
    .mc-footer { padding: 14px 24px; gap: 20px; flex-wrap: wrap; }
    .mc-arrow  { width: 40px; height: 40px; font-size: 0.85rem; }
    .mc-prev   { left: 12px; }
    .mc-next   { right: 12px; }
}
@media (max-width: 600px) {
    .mc-track { height: 520px; }
    .mc-body  { grid-template-columns: 1fr; grid-template-rows: auto auto auto; padding: 0 8%; text-align: center; }
    .mc-team.left, .mc-team.right { align-items: center; text-align: center; }
    .mc-center { flex-direction: row; justify-content: center; gap: 12px; }
    .mc-footer { flex-direction: column; gap: 8px; }
}

/* ══════════════════════════════════════
   ÉVÉNEMENTS — image bg + cartes flottantes
══════════════════════════════════════ */
.ev-agenda-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

/* Photo de couverture */
.ev-agenda-cover {
    position: relative;
    height: 440px;
    width: 100%;
    overflow: hidden;
}
.ev-agenda-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    animation: evBgZoom 40s infinite alternate;
}
@keyframes evBgZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}
/* Dégradé qui descend vers le blanc pour la transition */
.ev-agenda-cover::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.45) 50%,
        rgba(244,244,244,0.95) 100%
    );
}

/* Cartes posées sur le bas de la photo */
.ev-floating-cards {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    padding: 0 15%;
    margin-top: -140px;
}

.ev-float-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px -10px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s;
}
.ev-float-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.ev-float-card:hover {
    box-shadow: 0 28px 60px -10px rgba(9,126,235,0.2);
    transform: translateY(-6px);
}
.ev-float-card:nth-child(2) { transition-delay: 0.1s; }
.ev-float-card:nth-child(3) { transition-delay: 0.2s; }

.ev-float-card-img {
    position: relative;
    background: transparent;
    overflow: hidden;
}
.ev-float-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Placeholder quand pas d'image */
.ev-float-card-img-ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #097eeb; font-size: 2.5rem;
}

.ev-date-tag {
    position: absolute; bottom: 10px; left: 10px;
    background: #097eeb; color: #fff;
    font-size: 0.68rem; font-weight: 700;
    padding: 5px 12px; border-radius: 20px;
    display: flex; align-items: center; gap: 5px;
    box-shadow: 0 4px 12px rgba(9,126,235,0.4);
}
.ev-float-card-body { padding: 20px 22px 22px; }
.ev-float-card-body h3 {
    font-size: 1rem; font-weight: 800; color: #111;
    margin-bottom: 8px;
    display: flex; align-items: center; gap: 8px;
    line-height: 1.3;
}
.ev-float-card-body h3::before {
    content: '';
    display: inline-block;
    width: 3px; height: 18px; flex-shrink: 0;
    background: #097eeb; border-radius: 2px;
}
.ev-float-card-body p { font-size: 0.82rem; color: #777; line-height: 1.6; }
.ev-float-card-cta {
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 12px; font-size: 0.78rem; font-weight: 700;
    color: #097eeb; text-decoration: none; transition: gap 0.2s;
}
.ev-float-card-cta:hover { gap: 10px; }

/* ══════════════════════════════════════
   CARROUSEL NEWS — Éditorial
══════════════════════════════════════ */
.nc-wrapper {
    position: relative;
    width: 100%;
    margin-top: 32px;
    margin-bottom: 60px;
}

/* ── Track + slides ── */
.nc-track {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}
.nc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}
.nc-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* ── Slide AVEC image ── */
.nc-bg-img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    animation: ncZoom 14s ease-in-out infinite alternate;
}
@keyframes ncZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}
.nc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.6) 35%,
        rgba(0,0,0,0.15) 65%,
        transparent 100%
    );
}
.nc-content-img {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8% 60px 10%;
    max-width: 55%;
}

/* ── Slide SANS image ── */
.nc-content-noimg {
    position: absolute; inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 15%;
    overflow: hidden;
}
.nc-noimg-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.nc-noimg-watermark {
    position: absolute;
    font-family: 'Anton', sans-serif;
    font-size: 260px;
    color: #f0f0f0;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
.nc-noimg-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #097eeb;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nc-noimg-label::before {
    content: '';
    display: inline-block;
    width: 40px; height: 2px;
    background: #097eeb;
    border-radius: 2px;
}

/* ── Éléments communs ── */
.nc-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.nc-badge {
    background: #097eeb;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.nc-badge.dark { background: #111; }

.nc-date-chip {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    display: flex; align-items: center; gap: 6px;
    font-weight: 500;
}
.nc-date-chip.dark { color: #999; }
.nc-date-chip i { font-size: 0.7rem; }

.nc-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    color: #fff;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative; z-index: 2;
}
.nc-title.dark { color: #111; }

.nc-excerpt {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative; z-index: 2;
    max-width: 480px;
}
.nc-excerpt.dark { color: #555; }

.nc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 10px 24px;
    border-radius: 30px;
    transition: background 0.3s, border-color 0.3s, gap 0.2s;
    position: relative; z-index: 2;
    width: fit-content;
}
.nc-cta:hover { background: rgba(255,255,255,0.15); gap: 14px; }
.nc-cta.dark {
    color: #097eeb;
    border-color: #097eeb;
}
.nc-cta.dark:hover { background: #097eeb; color: #fff; }

/* ── Miniatures ── */
.nc-thumbs {
    display: flex;
    align-items: stretch;
    background: #111;
}
.nc-thumb {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
}
.nc-thumb:last-child { border-right: none; }
.nc-thumb:hover { background: rgba(255,255,255,0.05); }
.nc-thumb.active { background: rgba(9,126,235,0.15); }

.nc-thumb-img {
    width: 52px; height: 40px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.25s;
}
.nc-thumb.active .nc-thumb-img,
.nc-thumb:hover  .nc-thumb-img { opacity: 1; }

.nc-thumb-noimg {
    width: 52px; height: 40px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 1rem;
    flex-shrink: 0;
}
.nc-thumb-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    line-height: 1.3;
    transition: color 0.25s;
}
.nc-thumb.active .nc-thumb-title,
.nc-thumb:hover  .nc-thumb-title { color: #fff; }

/* Barre de progression par miniature */
.nc-thumb-bar {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 0%;
    background: #097eeb;
    box-shadow: 0 0 8px rgba(9,126,235,0.6);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nc-track { height: 480px; }
    .nc-content-img { padding: 40px 8%; }
    .nc-content-noimg { padding: 0 8%; }
    .nc-thumbs { flex-wrap: wrap; }
    .nc-thumb { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 600px) {
    .nc-track { height: 420px; }
    .nc-title { font-size: 1.8rem; }
    .nc-thumbs { display: none; }
}

/* ══════════════════════════════════════
   EMPTY STATES
══════════════════════════════════════ */
.ev-empty {
    text-align: center; padding: 60px 20px;
    background: #fafafa; border-radius: 12px; border: 2px dashed #eee;
    margin: 0 15% 80px;
}
.ev-empty i { font-size: 2.5rem; margin-bottom: 16px; display: block; color: #ddd; }
.ev-empty p  { font-size: 0.9rem; color: #bbb; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1200px) {
    .ev-floating-cards, .actus-section { padding-left: 8%; padding-right: 8%; }
    .ev-text-section { padding-left: 8%; padding-right: 8%; }
    .ev-empty { margin-left: 8%; margin-right: 8%; }
}
@media (max-width: 900px) {
    .ev-floating-cards { padding-left: 5%; padding-right: 5%; margin-top: -80px; }
    .ev-agenda-cover   { height: 320px; }
    .actu-owner, .actu-owner.reverse { flex-direction: column; gap: 30px; }
    .actu-owner-img, .actu-owner-content { width: 100%; }
    .scoreboard-body { grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; }
    .scoreboard-team.ext { justify-content: flex-start; }
    .scoreboard-team-info.right { text-align: left; }
    .scoreboard-score-wrap { justify-content: center; }
    .scoreboard-list, .actus-section { padding-left: 5%; padding-right: 5%; }
    .ev-text-section p.watermark { font-size: 120px; line-height: 140px; }
    .ev-empty { margin-left: 5%; margin-right: 5%; }
    .scoreboard-footer { flex-direction: column; gap: 6px; }
}
@media (max-width: 600px) {
    .ev-float-card-body h3 { font-size: 0.92rem; }
    .scoreboard-score { font-size: 2.2rem; }
    .scoreboard-vs-label { font-size: 1.6rem; }
    .scoreboard-team-initial { width: 42px; height: 42px; font-size: 1.1rem; }
    .actu-owner-content h3 { font-size: 1.5rem; }
    .ev-floating-cards { grid-template-columns: 1fr; }
}

/* ── Card duo (2 images) ─────────────────────────────────── */
.ev-float-card--duo {
    grid-column: span 2;
}
.ev-duo-imgs {
    display: flex;
    width: 100%;
}
.ev-duo-imgs img {
    width: 50%;
    height: auto;
    display: block;
    object-fit: cover;
}
.ev-duo-imgs img:first-child {
    border-right: 3px solid #fff;
}
@media (max-width: 768px) {
    .ev-float-card--duo {
        grid-column: span 1;
    }
    .ev-duo-imgs {
        flex-direction: column;
    }
    .ev-duo-imgs img {
        width: 100%;
    }
    .ev-duo-imgs img:first-child {
        border-right: none;
        border-bottom: 3px solid #fff;
    }
}
