/* ============================================================
   HOCKEY HEBDO — style_v2.css
   Modernisation CSS — PHP 5.3 / structure identique conservée
   ============================================================ */

:root {
  --bleu-nuit:   #0d1b3e;
  --bleu-moyen:  #1a3a8a;
  --bleu-clair:  #2a52b0;
  --or:          #E8A020;
  --or-clair:    #FAC750;
  --blanc:       #ffffff;
  --gris-clair:  #f4f5f8;
  --gris-bord:   #e0e2e8;
  --texte:       #1a1c2a;
  --texte-muted: #5a5d6e;
  --font-titre:  'Oswald', sans-serif;
  --font-corps:  'Source Sans 3', sans-serif;
}

/* ===================== RESET CIBLÉ ===================== */
body {
  font-family: var(--font-corps);
  background: #eef0f5;
  color: var(--texte);
  font-size: 14px;
  line-height: 1.5;
}
*, *::before, *::after { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===================== EN-TÊTE ===================== */

/* Image bandeau complète */
.hh-header-image {
  width: 100%;
  display: block;
  line-height: 0;
}
.hh-header-image img {
  display: block;
  width: 1009px;
  height: 157px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   MENU UNIQUE — fusion de l'ancien menu principal + sous-menu
   Remplace : fond_menu.gif, fond_menu2/3.gif, tous les GIFs séparateurs/boutons
   Inclut : liens directs + 2 sous-menus déroulants (Calendrier, Classement)
   ════════════════════════════════════════════ */
.hh-nav {
  background: var(--bleu-nuit);
  border-top: 2px solid var(--or);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1116px;
  margin: 0 auto;
  padding: 0 10px;
  min-height: 38px;
  flex-wrap: wrap;
  gap: 4px;
}

.hh-nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.hh-nav-links > a,
.hh-nav-drop-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 38px;
  padding: 0 10px;
  font-family: var(--font-titre);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
  cursor: pointer;
}
.hh-nav-links > a:hover,
.hh-nav-drop:hover .hh-nav-drop-label {
  color: var(--or);
  border-bottom-color: var(--or);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}
.hh-nav-links > a.active {
  color: var(--or);
  border-bottom-color: var(--or);
  font-weight: 600;
}

/* Sous-menus déroulants (Calendrier, Classement) */
.hh-nav-drop { position: relative; }
.hh-nav-drop-caret { width: 8px; height: 8px; flex-shrink: 0; transition: transform 0.15s; }
.hh-nav-drop:hover .hh-nav-drop-caret { transform: rotate(180deg); }

.hh-nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 175px;
  background: var(--bleu-nuit);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid var(--or);
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 50;
}
.hh-nav-drop:hover .hh-nav-drop-menu,
.hh-nav-drop:focus-within .hh-nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hh-nav-drop-menu a {
  padding: 9px 12px;
  font-family: var(--font-corps);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  text-transform: none;
  letter-spacing: normal;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.hh-nav-drop-menu a:last-child { border-bottom: none; }
.hh-nav-drop-menu a:hover { background: rgba(255,255,255,0.08); color: var(--or); text-decoration: none; }

/* Menu hamburger (rubriques secondaires) */
.hh-burger { position: relative; }
.hh-burger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.09);
  border: none;
  border-radius: 4px;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.hh-burger-btn:hover { background: rgba(255,255,255,0.22); color: #fff; }
.hh-burger.open .hh-burger-btn { background: var(--or); color: var(--bleu-nuit); }

.hh-burger-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  min-width: 190px;
  background: var(--bleu-nuit);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 2px solid var(--or);
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 60;
}
.hh-burger.open .hh-burger-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hh-burger-menu a {
  padding: 9px 12px;
  font-family: var(--font-corps);
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.hh-burger-menu a:hover { background: rgba(255,255,255,0.08); color: var(--or); text-decoration: none; }
.hh-burger-sep { height: 1px; background: rgba(255,255,255,0.12); margin: 2px 0; }
.hh-burger-menu .hh-search-burger {
  align-items: stretch;
  padding: 8px 12px 10px;
  gap: 4px;
}
.hh-burger-menu .hh-search-burger input { width: 100%; }
.hh-burger-menu .hh-search-burger .hh-search-row { width: 100%; }
.hh-burger-menu .hh-search-burger .hh-search-adv { align-self: flex-start; }

/* Réseaux sociaux + recherche + contact, à droite du menu */
.hh-nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hh-social { display: flex; align-items: center; gap: 3px; }
.hh-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 4px;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.75);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.hh-social a:hover              { background: rgba(255,255,255,0.22); color: #fff; text-decoration: none; }
.hh-social a.soc-fb:hover       { background: #1877f2; color: #fff; }
.hh-social a.soc-tw:hover       { background: #1da1f2; color: #fff; }
.hh-social a.soc-ig:hover       { background: #c13584; color: #fff; }
.hh-social a.soc-yt:hover       { background: #ff0000; color: #fff; }
.hh-social a.soc-rss:hover      { background: #f26522; color: #fff; }
.hh-social a svg                { display: block; }

.hh-nav-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }

/* Recherche */
.hh-search {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
.hh-search-row { display: flex; align-items: center; gap: 4px; }
.hh-search input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 3px;
  font-family: var(--font-corps);
  width: 140px;
  outline: none;
  transition: background 0.15s, border-color 0.15s;
}
.hh-search input::placeholder { color: rgba(255,255,255,0.35); }
.hh-search input:focus { background: rgba(255,255,255,0.14); border-color: var(--or); }
.hh-search button {
  background: var(--or);
  border: none;
  color: var(--bleu-nuit);
  font-weight: 600;
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--font-titre);
  letter-spacing: 0.05em;
  transition: background 0.15s;
}
.hh-search button:hover { background: var(--or-clair); }
.hh-search-adv {
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  padding-right: 1px;
  transition: color 0.15s;
}
.hh-search-adv:hover { color: var(--or); text-decoration: underline; }

/* Pub + joueurs SOUS le sous-menu */
.hh-header-pub {
  background: #f8f8f8;
  padding: 6px 0;
  border-bottom: 1px solid var(--gris-bord);
}
.hh-header-pub-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1116px;
  margin: 0 auto;
}
.hh-header-pub .joueur {
  width: 128px; height: 90px;
  object-fit: cover; display: block;
  flex-shrink: 0;
}
.hh-header-pub .pub-slot {
  flex: 1;
  max-width: 728px;
  min-height: 90px;
  display: flex; align-items: center; justify-content: center;
}

/* ===================== PAGE BODY ===================== */
.hh-page-wrap { max-width: 1116px; margin: 0 auto; background: #fff; }

.hh-page-body {
  display: grid;
  grid-template-columns: 156px 650px 310px;
}

/* ===================== COLONNE GAUCHE ===================== */
.hh-col-gauche { padding: 8px 8px; border-right: 1px solid var(--gris-bord); }
.hh-bloc { margin-bottom: 16px; }

.hh-bloc-titre {
  display: flex; align-items: center; gap: 6px;
  border-bottom: 2px solid var(--or);
  padding-bottom: 4px; margin-bottom: 7px;
}
.hh-bloc-titre-puce { width: 6px; height: 6px; background: var(--or); border-radius: 50%; flex-shrink: 0; }
.hh-bloc-titre-text {
  font-family: var(--font-titre); font-size: 12px; font-weight: 600;
  color: var(--bleu-nuit); letter-spacing: 0.05em; text-transform: uppercase;
}

/* Chroniques */
.hh-chrono-list { display: flex; flex-direction: column; }
.hh-chrono-item {
  display: flex; flex-direction: column;
  padding: 5px 0; border-bottom: 1px solid var(--gris-bord);
}
.hh-chrono-item:last-child { border-bottom: none; }
.hh-chrono-cat {
  font-size: 9px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--bleu-moyen); margin-bottom: 1px;
}
.hh-chrono-titre {
  font-size: 11px; color: var(--texte); line-height: 1.3;
  font-weight: 600; transition: color 0.15s;
}
.hh-chrono-item:hover .hh-chrono-titre { color: var(--bleu-moyen); }

/* Flash infos */
.hh-flash-list { display: flex; flex-direction: column; }
.hh-flash-item {
  display: block; padding: 4px 5px;
  border-bottom: 1px solid var(--gris-bord);
  transition: background 0.12s;
}
.hh-flash-item:last-child { border-bottom: none; }
.hh-flash-item:nth-child(odd)  { background: #eef0f7; }
.hh-flash-item:nth-child(even) { background: #fff; }
.hh-flash-item:hover { background: #dce3f5 !important; text-decoration: none; }
.hh-flash-titre { font-size: 11px; color: var(--bleu-nuit); line-height: 1.25; font-weight: 600; }

.hh-flash-all {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 5px; padding: 4px 6px;
  background: var(--bleu-nuit); color: var(--or);
  font-family: var(--font-titre); font-size: 10px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 2px; white-space: nowrap;
  transition: background 0.15s;
}
.hh-flash-all:hover { background: var(--bleu-moyen); text-decoration: none; }
.hh-flash-all.etranger { background: var(--bleu-moyen); }
.hh-flash-all.etranger:hover { background: var(--bleu-clair); }

/* Sondage */
.hh-sondage-question { font-size: 11px; font-weight: 600; color: var(--bleu-nuit); margin-bottom: 7px; line-height: 1.4; }
.hh-sondage-choix { display: flex; flex-direction: column; gap: 5px; }
.hh-sondage-ligne { display: flex; align-items: center; gap: 5px; font-size: 10px; }
.hh-sondage-label { flex: 0 0 46px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hh-sondage-bar-wrap { flex: 1; background: var(--gris-bord); border-radius: 2px; height: 5px; overflow: hidden; }
.hh-sondage-bar { height: 100%; background: var(--bleu-moyen); border-radius: 2px; }
.hh-sondage-pct { font-size: 10px; color: var(--texte-muted); min-width: 26px; text-align: right; }

/* ===================== COLONNE CENTRE ===================== */
.hh-col-centre { padding: 8px 10px; }

/* Actu spéciale — compacte, texte sur image */
.hh-actu-speciale {
  position: relative;
  border-radius: 4px; overflow: hidden;
  margin-bottom: 10px;
  background: var(--bleu-nuit);
  height: 80px;
  display: block;
}
.hh-actu-speciale img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.55;
}
.hh-actu-speciale-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,27,62,0.88) 0%, rgba(13,27,62,0.35) 100%);
  display: flex; align-items: center; padding: 0 14px; gap: 10px;
}
.hh-actu-speciale-tag {
  font-family: var(--font-titre); font-size: 9px; font-weight: 600;
  background: var(--or); color: var(--bleu-nuit);
  padding: 2px 6px; border-radius: 2px;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
}
.hh-actu-speciale-titre {
  font-family: var(--font-titre); font-size: 13px; color: #fff;
  line-height: 1.25; letter-spacing: 0.02em;
}
.hh-actu-speciale:hover .hh-actu-speciale-titre { color: var(--or); }

/* Éditorial — ratio 3:2 */
.hh-edito-wrap { margin-bottom: 10px; }
.hh-edito-card { border-radius: 4px; overflow: hidden; position: relative; background: var(--bleu-nuit); }

.hh-edito-img-box {
  position: relative; width: 100%;
  padding-top: 66.67%; /* ratio 3:2 */
  background: linear-gradient(160deg, var(--bleu-nuit), #1e3a6e, #0d2855);
  overflow: hidden;
}
.hh-edito-img-box img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.hh-edito-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(5,10,30,0.93) 35%);
  padding: 32px 12px 10px;
}
.hh-edito-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.hh-edito-date { font-size: 11px; color: rgba(255,255,255,0.52); }
.hh-edito-match {
  font-family: var(--font-titre); font-size: 12px; color: var(--or);
  text-align: right; max-width: 60%; line-height: 1.2;
}
.hh-edito-titre { font-family: var(--font-titre); font-size: 15px; color: #fff; line-height: 1.25; margin-bottom: 6px; }
.hh-edito-controls { display: flex; align-items: center; justify-content: space-between; }
.hh-edito-lire {
  font-family: var(--font-titre); font-size: 12px; color: var(--or);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.hh-edito-lire:hover { color: var(--or-clair); text-decoration: none; }
.hh-edito-nav { display: flex; align-items: center; gap: 5px; }
.hh-edito-count { font-size: 11px; color: rgba(255,255,255,0.45); }
.hh-edito-btn {
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  width: 22px; height: 22px; border-radius: 2px; cursor: pointer;
  font-size: 13px; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.hh-edito-btn:hover { background: var(--or); color: var(--bleu-nuit); }

.hh-edito-foot { height: 7px; background: var(--bleu-nuit); border-radius: 0 0 4px 4px; margin-bottom: 10px; }

/* CTA interview / galerie */
.hh-cta-row { display: flex; gap: 8px; margin-bottom: 10px; }
.hh-cta {
  flex: 1; display: block; text-align: center; padding: 6px 8px;
  font-family: var(--font-titre); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}
.hh-cta-dark { background: var(--bleu-nuit); color: var(--or); border: 1px solid var(--bleu-nuit); }
.hh-cta-dark:hover { background: var(--bleu-moyen); text-decoration: none; }
.hh-cta-outline { background: transparent; color: var(--bleu-nuit); border: 1px solid var(--bleu-nuit); }
.hh-cta-outline:hover { background: var(--bleu-nuit); color: var(--or); text-decoration: none; }

/* Blocs division */
.hh-div-bloc { margin-bottom: 12px; border: 1px solid var(--gris-bord); border-radius: 4px; overflow: hidden; }

.hh-div-header {
  background: var(--bleu-nuit);
  display: flex; align-items: center; justify-content: space-between; padding: 5px 10px;
}
.hh-div-nom {
  font-family: var(--font-titre); font-size: 13px; font-weight: 600;
  color: var(--or); text-transform: uppercase; letter-spacing: 0.05em;
}
.hh-div-liens { display: flex; }
.hh-div-liens a {
  font-size: 10px; color: rgba(255,255,255,0.6);
  padding: 0 5px; transition: color 0.15s;
}
.hh-div-liens a:hover { color: var(--or); text-decoration: none; }
.hh-div-liens a + a { border-left: 1px solid rgba(255,255,255,0.15); }

.hh-div-content { padding: 7px 8px; background: #fff; }
.hh-div-row { display: flex; gap: 9px; align-items: flex-start; }

/* Photo 1er article — ratio 3:2 */
.hh-div-photo {
  flex-shrink: 0; width: 130px; display: block;
  border: 1px solid var(--gris-bord); border-radius: 3px; overflow: hidden;
  transition: border-color 0.15s;
}
.hh-div-photo:hover { border-color: var(--bleu-moyen); }
.hh-div-photo-ratio {
  position: relative; width: 100%; padding-top: 66.67%;
  background: #d0d5e8; overflow: hidden;
}
.hh-div-photo-ratio img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.hh-div-articles { flex: 1; min-width: 0; }

.hh-article-item {
  display: flex; gap: 6px; align-items: baseline;
  padding: 3px 0; border-bottom: 1px solid var(--gris-bord); font-size: 12px;
}
.hh-article-item:last-child { border-bottom: none; }
.hh-article-date { color: var(--texte-muted); font-size: 10px; min-width: 30px; flex-shrink: 0; }
.hh-article-titre { color: var(--texte); font-weight: 600; line-height: 1.25; transition: color 0.15s; }
.hh-article-titre:hover { color: var(--bleu-moyen); text-decoration: none; }

.hh-div-more {
  display: block; text-align: right; margin-top: 4px;
  font-size: 11px; font-weight: 600; color: var(--or);
  font-family: var(--font-titre); letter-spacing: 0.04em; text-transform: uppercase;
}
.hh-div-more:hover { color: var(--bleu-moyen); text-decoration: none; }

/* ===================== COLONNE DROITE ===================== */
.hh-col-droite { padding: 8px 8px; border-left: 1px solid var(--gris-bord); }

.hh-ticker {
  background: var(--bleu-moyen); border-radius: 3px;
  margin-bottom: 8px; padding: 0 8px;
  height: 22px; line-height: 22px;
  display: block; overflow: hidden;
  font-size: 10px; color: #fff;
  white-space: nowrap;
  position: relative;
}
.hh-ticker-inner {
  display: inline-block;
  white-space: nowrap;
  animation: hh-ticker 25s linear infinite;
  padding-left: 100%;
  vertical-align: middle;
}
@keyframes hh-ticker { from { transform: translateX(0); } to { transform: translateX(-200%); } }

/* ===================== PIED DE PAGE ===================== */
.hh-footer { background: var(--bleu-nuit); text-align: center; padding: 12px; border-top: 3px solid var(--bleu-moyen); }
.hh-footer-pub { display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.hh-footer-pub .joueur { width: 128px; height: 90px; object-fit: cover; display: block; flex-shrink: 0; }
.hh-footer-pub .pub-slot { flex: 1; max-width: 728px; min-height: 90px; display: flex; align-items: center; justify-content: center; }
.hh-footer-liens { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 7px; }
.hh-footer-liens a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.hh-footer-liens a:hover { color: var(--or); text-decoration: none; }
.hh-footer-liens span { color: rgba(255,255,255,0.18); }
.hh-footer-copy { font-size: 10px; color: rgba(255,255,255,0.2); }

/* ===================== PAGES PLEINE LARGEUR (sans colonne gauche) ===================== */
.hh-page-body-wide {
  display: grid;
  grid-template-columns: 1fr 310px;
  align-items: start;
}

.hh-col-wide {
  padding: 10px 8px;
  min-width: 0;
  overflow-x: auto;
}

/* Sur les pages wide, la droite a une largeur fixe */
.hh-page-body-wide .hh-col-droite {
  min-width: 200px;
  width: 310px;
}

/* Titres de section — remplace les GIFs fond_ligne_article.gif */
.hh-section-title {
  display: flex;
  align-items: stretch;
  margin-bottom: 10px;
  border-radius: 3px;
  overflow: hidden;
}
.hh-section-title-text {
  flex: 1;
  background: var(--bleu-nuit);
  color: var(--or);
  font-family: var(--font-titre);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.hh-section-title-bar {
  width: 4px;
  align-self: stretch;
  background: var(--or);
}
/* ===================== BANDEAU RÉSULTATS / TEXTE (live_result.php) =====================
   Déplacé depuis le <style> inline de live_result.php : ce fichier est capturé via
   ob_start() + strip_tags() dans index_v2.php, qui ne laisse passer que
   <a><img><div><span><script> — un <style> inline y était donc vidé de ses balises
   en laissant le CSS brut s'afficher comme texte sur la page.
   ========================================================================================= */
#bandeau-hh {
  background: #1a3a5c;
  width: 100%;
  max-width: 630px;
  height: 30px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 3px;
  font-family: Arial, sans-serif;
}
#bandeau-hh-tag {
  background: #f5a623;
  color: #111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 0 10px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-transform: uppercase;
}
#bandeau-hh-run {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
#bandeau-hh-inner {
  white-space: nowrap;
  position: absolute;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 12px;
  color: #fff;
}
#bandeau-hh-inner .bandeau-score { color: #f5a623; font-weight: 700; }
#bandeau-hh-inner .bandeau-lien { color: #fff; text-decoration: none; }
#bandeau-hh-inner .bandeau-lien:hover { color: #f5a623; }