:root {
  --color-primary: #2563eb;
  --color-secondary: #1e293b;
  --color-background: #f8fafc;
  --color-text: #0f172a;

  --font-main: 'Verdana';

  --max-width: 1200px;
}

/* =========================
   RESET SIMPLE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE
========================= */
body {
  font-family: var(--font-main);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}


.tab {
  text-decoration: none;
  color: black;
  padding: 10px 15px;
}

.tab.active {
 color: #d25345;
 text-decoration: underline;
 text-underline-offset: 6px;
}
/* =========================
   LAYOUT
========================= */

.header-container {
  display: flex;                 
  align-items: center;           
  justify-content: space-between; 
  padding: 0 20px;               /* espace horizontal global du header */
}

.logo img {
  height: 95px;
  padding-top: 10px;             /* padding en haut */
  padding-left: 10px;            /* padding à gauche */
}

.header,
.footer {
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
}

.nav {
  max-width: var(--max-width);
  color:  #535252;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
 margin-left: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 500;
}

.nav-links a:hover {
  color: #d25345;
  text-decoration: underline;
  text-underline-offset: 6px;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}



/* =========================
   BANNER
========================= */


.banner {
  width: 100%;
  margin-bottom: 0;
  overflow: hidden;
  line-height: 0;            /* supprime l’espace sous l’image inline */
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   BLOC INFO 2 COLONNES DATES
========================= */
.info-block-dates {
  max-width: var(--max-width);
  margin: 4rem auto;
  padding: 2rem;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.info-dates-left .dates-title {
  font-size: 1.25rem; /* taille du titre */
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: #ffe4e1;

  border-bottom: 2px solid #ffe4e1; 
  display: inline-block;            
  padding-bottom: 0.25rem;        
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;          
  
  background-color: var(--color-accent);
  padding: 1rem 1.5rem;  
  border-radius: 12px;    
  color: white;
  padding-top: 0;
}

.grid-4 .box {
  border: 0px solid rgba(255, 255, 255, 0.15); 
  padding: 0.5rem 0.75rem;                     
  border-radius: 8px;
}

.grid-4 h3 {
  font-size: 1.1rem;  
  margin-bottom: 0.2rem; 
}

.grid-4 p {
  font-size: 0.95rem;  
  line-height: 1.3;    
  margin: 0;
}

/* Encadré rouge */
.info-dates-left {
  background-color: #d25345; /* rouge orangé */
  color: white;
  padding: 2rem;
  border-radius: 8px;
}

.info-dates-left h2 {
  margin-bottom: 1rem;
}

/* Barre verticale */
.divider {
  width: 2px;
  height: 100%;
  background-color: #e5e7eb;
}

/* Texte droite */
.info-dates-right {
  font-size: 1rem;
  color: #334155;
}



/* =========================
   Community members
========================= */
/* Section globale */
.community-members-block {
  width: 100%;
  padding: 20px; /* padding autour de la section */
  box-sizing: border-box;
}

/* Titre de section */
.community-members-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Grille des membres */
.community-members-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 colonnes sur desktop */
  gap: 20px; /* espace entre les items */
  width: 100%; /* prend toute la largeur */
  box-sizing: border-box;
}

/* Chaque carte membre */
.members-item {
  background-color: #f9f9f9; /* optionnel pour encadré */
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  font-size: 0.85rem;
}

/* Image de profil */
.members-item .profile-img {
  width: 80px;   /* taille réduite */
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 8px;
}

/* Titres */
.members-item h3 {
  font-size: 0.9rem;
  margin: 5px 0;
}

/* Paragraphes */
.members-item p {
  font-size: 0.8rem;
  line-height: 1.2;
  margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .community-members-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes sur écran moyen */
  }
}

@media (max-width: 900px) {
  .community-members-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
  }
}

@media (max-width: 600px) {
  .community-members-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes */
  }
}

@media (max-width: 400px) {
  .community-members-grid {
    grid-template-columns: repeat(1, 1fr); /* 1 colonne */
  }
}


/* =========================
   SECTION VIDEO JAPC 
========================= */
.video-teaser-block {
  display: grid;
  grid-template-columns: 1fr 1fr; /* deux colonnes égales */
  gap: 2rem;
  max-width: var(--max-width);
  margin: 4rem auto;
  padding: 0 1rem;
  align-items: start;
}

.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;   /* garde un ratio standard pour la vidéo */
  background-color: #575555;  /* au cas où la vidéo ne charge pas */
  border-radius: 12px;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.text-container h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #575555;;
}

.text-container p {
  font-size: 1rem;
  line-height: 1.5;
  color: #575555;;
}

ul {
  margin-top: 1rem;      /* espace avec le texte précédent */
  padding-left: 3rem;    /* indentation plus forte */
  list-style-type: disc; /* puces rondes */
}



.separator {
  border: none;               
  height: 1px;                
  background-color: #777474;   
  width: 100%;                
  margin: 2rem 0;             
}

/* Titre centré */
.section-title {
  text-align: left;
  font-size: 1.5rem;
  margin: 0 0 2rem 3rem;
  margin-bottom: 2rem;
  color: #d25345;
}

/* Grille images 6 en ligne */
.image-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 images sur desktop */
  gap: 1rem;
  margin: 0 0 2rem 4rem;
  align-items: center;
  justify-items: center;
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}


/* =========================
   HERO
========================= */
.hero {
  text-align: center;
  padding: 4rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 2rem;
  color: #475569;
}

/* =========================
   BOUTONS
========================= */
.btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  display: inline-block;
  font-weight: 600;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* =========================
   SECTIONS
========================= */
section {
  margin-bottom: 4rem;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* =========================
   FOOTER
========================= */
.footer {
  width: 100%;
  background-color: #303031; /* gris foncé */
  color: #252526;           /* texte clair */
  padding: 3rem 1rem;
}

.footer-container {
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap; /* permet le responsive */
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #8d8e90;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: #8d8e90;
}

.footer-logos {
  display: flex;
  gap: 1rem; /* espace entre chaque logo */
  margin-top: 1rem;
}

.footer-logos img {
  width: 32px;       /* taille uniforme */
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* optionnel : rend les logos blancs sur fond sombre */
  transition: transform 0.3s;
}

.footer-logos a:hover img {
  transform: scale(1.1); /* effet léger au survol */
}

.legal-mentions p {
  font-size: 0.65rem;
  line-height: 1.5;
  margin: 0;
  color: #8d8e90;
  text-align: center;
}


/* =========================
   PROGRAMME
========================= */

.programme {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.programme-title {
  font-size: rem;
  margin-bottom: 3rem;
}

/* Conteneur principal */
.programme-day-1 {
  display: grid;
  grid-template-columns: 60px 1fr; /* frise | contenu */
  gap: 2rem;
  display: flex;
  align-items: stretch; /* frise = même hauteur que le contenu */
}


/* Conteneur principal */
.programme-day-2 {
  display: grid;
  grid-template-columns: 60px 1fr; /* frise | contenu */
  gap: 2rem;
  display: flex;
  align-items: stretch; /* frise = même hauteur que le contenu */
}

/* Sidebar */
.programme-sidebar {
  background-color: #d25345;
  width: 80px;
  display: flex;
  justify-content: center;
  padding-top: 40px; /* aligne avec le premier item */
  box-sizing: border-box;
}

.programme-sidebar-2 {
  background-color: #bb665c;
  width: 80px;
  display: flex;
  justify-content: center;
  padding-top: 40px; /* aligne avec le premier item */
  box-sizing: border-box;
}

/* Frise */
.programme-frise {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

/* Barre verticale */
.programme-frise::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 50px;
  width: 2px;
  background-color: #fff;
}

/* Texte vertical */
.frise-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  margin: 20px 0;
  padding: 10px 0;
  background-color: #d25345;
  z-index: 1;
}

.frise-text-2 {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  margin: 20px 0;
  padding: 10px 0;
  background-color: #bb665c;
  z-index: 1;
}


/* Points */
.frise-point {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}

.frise-point.top {
  margin-bottom: auto;
}

.frise-point.bottom {
  margin-top: auto;
  margin-bottom: 30px;
}

/* Contenu programme */
.programme-content {
  flex: 1;
  padding: 10px;
}

/* Items */
.programme-item {
  margin-bottom: 20px;
}

/* Contenu texte */
.programme-content {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

/* Élément du programme */
.programme-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: #111827;  
  text-decoration: underline;
  text-underline-offset: 6px;
  color: #777474;   
}

.programme-item p {
  font-size: 0.9rem;
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

.programme-item p2 {
  font-size: 0.8rem;
  font-style: italic;
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

/* =========================
    INSCRIPTION PAGE STYLE
========================= */
.inscription-warning {
  font-size: 1.2rem;
  color:  #bb665c;;
  text-align: center;
}


/* =========================
    CONTACT PAGE STYLE
========================= */

.text-blocks {
  max-width: var(--max-width);
  margin: 3rem auto;
  padding: 0 1rem;

  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.text-block {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.2rem;
}

.text-block-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.logo-1 img {
   width: 25%;
  height: auto;
}
.logo-2 img {
   width: 12%;
  height: auto;
}

.text-block h3 {
  color:  #535252;
  font-size: 1.1rem;
  font-weight: 600;
}

.text-content {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}


/* =========================
    ARCHIVE PAGE STYLE
========================= */

.page-title {
  font-size: 1.8rem;
  color:  #bb665c;
  text-align: center;
  margin-bottom: 10px;

}

.auth-buttons {
  display: flex;                /* active flexbox */
  flex-direction: column;       /* empile les boutons verticalement */
  align-items: center;          /* centre horizontalement */                /* espace entre les boutons */
}

.archives-list p {
  text-align: center;
  margin-bottom: 20px;
}

.alert-banner {
  width: 100%;               /* largeur totale de la page */
  background-color: #f28b82; /* rouge clair */
  color: #ffffff;            /* texte blanc */
  text-align: left;           /* texte aligné à gauche */
  padding: 6px 20px;          /* moins épais verticalement, et padding horizontal pour décaler le texte */
  font-weight: bold;          /* texte en gras */
  font-size: 1.1rem;            /* taille de police normale */
  box-sizing: border-box;     /* inclut padding dans la largeur */
  margin-bottom: 10px;
}

/* Conteneur général */
.image-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
  width: 90%;
}

/* Chaque rangée renommée en .replays-list */
.replays-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Chaque image + légende */
.replays-list figure {
  flex: 1 1 calc(25% - 20px); /* 4 images par ligne */
  margin: 0;
  text-align: center;
}

/* Images proportionnelles, pas tronquées */
.replays-list img {
  width: 100%;   /* largeur du conteneur figure */
  height: auto;  /* garde le ratio naturel */
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.replays-list img:hover {
  transform: scale(1.05);
}

/* Légendes cliquables */
.replays-list figcaption {
  margin-top: 8px;
}

.replays-list figcaption a {
  color: #f28b82;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.replays-list figcaption a:hover {
  color: #f28b82;
  text-decoration: underline;
}
.replays-list-2 {
  display: flex;
  justify-content: center; /* centre les images */
  flex-wrap: wrap;
  gap: 20px; /* même espace que .replays-list */
  max-width: 1000px; /* largeur totale similaire à .replays-list */
  margin: 0 auto; /* centre le bloc */
}

.replays-list-2 figure {
  flex: 1 1 calc(25% - 20px); /* même largeur que les images de .replays-list */
  max-width: 250px; /* limite la taille max pour ne pas être trop grande */
  margin: 0;
  text-align: center;
}

.replays-list-2 img {
  width: 100%; /* remplit le figure */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.replays-list-2 img:hover {
  transform: scale(1.05);
}
/* Style général des boutons */
.auth-buttons button,
.auth-buttons a#link-private {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
/* Bouton Se connecter */
#btn-login {
  background-color: #007bff; /* Bleu moderne */
  color: #fff;
}

#btn-login:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  transform: translateY(-2px);
}

/* Bouton Se déconnecter */
#btn-logout {
  background-color: #dc3545; /* Rouge professionnel */
  color: #fff;
}

#btn-logout:hover {
  background-color: #a71d2a;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
  transform: translateY(-2px);
}

/* =========================
   REPLAY PAGE
========================= */
.replay-nav {
  text-align: center;
  margin: 2rem 0;
}

.btn-back {
  display: inline-block;
  padding: 10px 24px;
  background-color: #f28b82;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.btn-back:hover {
  background-color: #d25345;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(210, 83, 69, 0.35);
  color: #fff;
}

/* --- Sessions replay --- */
.replay-session {
  max-width: var(--max-width);
  margin: 0 auto 1.5rem auto;
  padding: 0 1.5rem;
}

.replay-session-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #d25345;
  border-left: 4px solid #d25345;
  padding-left: 0.75rem;
  margin-bottom: 0.5rem;
}

.replay-videos {
  list-style: none;
  padding-left: 1.25rem;
}

.replay-videos li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.replay-videos li::before {
  content: '▸ ';
  color: #d25345;
}

.replay-videos a {
  color: #374151;
  text-decoration: none;
  transition: color 0.2s ease;
}

.replay-videos a:hover {
  color: #d25345;
  text-decoration: underline;
}

.replay-empty {
  font-size: 0.9rem;
  color: #8d8e90;
  font-style: italic;
  padding-left: 1.25rem;
}

/* =========================
   MENTIONS LEGALES
========================= */
.mentions-legales {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.mentions-legales h2 {
  font-size: 1.2rem;
  color: #d25345;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.mentions-legales p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

.legal-mentions a {
  color: #f28b82;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.legal-mentions a:hover {
  color: #fff;
}

/* =========================
   RESPONSIVE – TABLETTE
========================= */
@media (max-width: 768px) {

  /* --- Header & Nav --- */
  .header-container {
    flex-direction: column;
    padding: 0 10px;
  }

  .logo img {
    height: 70px;
    padding-left: 0;
  }

  .nav {
    padding: 0.5rem 0;
    margin: 0;
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .tab {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  /* --- Sections générales --- */
  section {
    margin-bottom: 2rem;
  }

  section h2 {
    font-size: 1.4rem;
  }

  /* --- Bloc info dates --- */
  .info-block-dates {
    grid-template-columns: 1fr;
    margin: 2rem auto;
    padding: 1rem;
    gap: 1.5rem;
  }

  .divider {
    width: 100%;
    height: 1px;
  }

  .grid-4 h3 {
    font-size: 0.95rem;
  }

  .grid-4 p {
    font-size: 0.85rem;
  }

  /* --- Video teaser --- */
  .video-teaser-block {
    grid-template-columns: 1fr;
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .text-container h2 {
    font-size: 1.3rem;
  }

  /* --- Partenaires --- */
  .image-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 1rem 2rem 1rem;
  }

  .section-title {
    margin: 0 0 1.5rem 1rem;
    font-size: 1.2rem;
  }

  /* --- Footer --- */
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .footer-logos {
    justify-content: center;
  }

  /* --- Programme --- */
  .programme-sidebar,
  .programme-sidebar-2 {
    width: 50px;
  }

  .frise-text,
  .frise-text-2 {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }

  .programme-item h3 {
    font-size: 1rem;
  }

  .programme-item p {
    font-size: 0.85rem;
  }

  .programme-item p2 {
    font-size: 0.75rem;
  }

  /* --- Replays / Archives --- */
  .replays-list figure,
  .replays-list-2 figure {
    flex: 1 1 calc(50% - 20px);
  }

  .page-title {
    font-size: 1.3rem;
    padding: 0 1rem;
  }

  .inscription-warning {
    font-size: 1rem;
    padding: 0 1rem;
  }

  /* --- Hero --- */
  .hero h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  /* --- Contact logos --- */
  .logo-1 img {
    width: 40%;
  }

  .logo-2 img {
    width: 20%;
  }
}

/* =========================
   RESPONSIVE – MOBILE
========================= */
@media (max-width: 480px) {

  /* --- Header & Nav --- */
  .logo img {
    height: 60px;
  }

  .nav {
    padding: 0.4rem 0;
  }

  .nav-links {
    gap: 0.25rem;
  }

  .tab {
    padding: 5px 8px;
    font-size: 0.8rem;
  }

  /* --- Bloc info dates --- */
  .info-block-dates {
    padding: 0.75rem;
    margin: 1.5rem auto;
  }

  .info-dates-left {
    padding: 1rem;
  }

  .grid-4 {
    grid-template-columns: 1fr;
    padding: 0.5rem;
  }

  .info-dates-right {
    font-size: 0.9rem;
  }

  /* --- Community members --- */
  .community-members-title {
    font-size: 1.1rem;
  }

  .members-item .profile-img {
    width: 60px;
    height: 60px;
  }

  /* --- Video teaser --- */
  .text-container h2 {
    font-size: 1.1rem;
  }

  .text-container p {
    font-size: 0.9rem;
  }

  ul {
    padding-left: 1.5rem;
  }

  /* --- Partenaires --- */
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 0.75rem 1.5rem 0.75rem;
  }

  .section-title {
    margin: 0 0 1rem 0.75rem;
    font-size: 1.1rem;
  }

  /* --- Footer --- */
  .footer {
    padding: 2rem 0.75rem;
  }

  .footer-column h3 {
    font-size: 1rem;
  }

  .footer-column p {
    font-size: 0.85rem;
  }

  .legal-mentions p {
    font-size: 0.6rem;
    padding: 0 0.5rem;
  }

  /* --- Programme --- */
  .programme-sidebar,
  .programme-sidebar-2 {
    width: 40px;
    padding-top: 20px;
  }

  .frise-text,
  .frise-text-2 {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    padding: 6px 0;
  }

  .programme-content {
    padding: 5px;
  }

  .programme-item h3 {
    font-size: 0.9rem;
  }

  .programme-item p {
    font-size: 0.8rem;
  }

  .programme-item p2 {
    font-size: 0.7rem;
  }

  /* --- Replays / Archives --- */
  .replays-list figure,
  .replays-list-2 figure {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .alert-banner {
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  /* --- Contact logos --- */
  .logo-1 img {
    width: 50%;
  }

  .logo-2 img {
    width: 25%;
  }
}