/* Bandeau plein écran, contenu centré et typographie fine */
.awinfo { 
  margin-top:0;
}

.awinfo__band{
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* Contenu limité en largeur pour la lecture (pro, "clean") */
.awinfo__inner{
  max-width: 100%;
  padding: 14px 16px 12px;
  color: inherit;
}

.awinfo__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

/* H1 plus discret sur desktop, responsive et lisible */
.awinfo__title{
  margin:0;
  font-weight:650;
  letter-spacing:-0.01em;
  line-height:1.18;
  font-size: clamp(18px, 1.4vw, 28px);
  color: inherit;
}

/* Bouton info : petit, fin, style "chip" */
.awinfo__btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.02);
  color: inherit;
  cursor:pointer;
  user-select:none;
  transition: background .15s ease, border-color .15s ease, transform .05s ease;
}

.awinfo__btn:hover{
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.22);
}

.awinfo__btn:active{ transform: translateY(1px); }

.awinfo__btn:focus-visible{
  outline: 2px solid rgba(0,0,0,.28);
  outline-offset: 2px;
}

.awinfo__btnText{
  font-size: 13px;
  line-height: 1;
  opacity: .92;
}

/* Détails : largeur confortable, texte fin, interlignage */
.awinfo__details{
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.08);
  font-size: 15px;
  line-height: 1.65;
  max-width: 920px;
}

/* Titres éventuels dans le contenu */
.awinfo__details h2,
.awinfo__details h3{
  margin: 12px 0 6px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.awinfo__details h2{ font-size: 18px; font-weight: 650; }
.awinfo__details h3{ font-size: 16px; font-weight: 650; }

.awinfo__details p{
  margin: 0 0 10px;
  opacity: .92;
}

.awinfo__details strong{ font-weight: 650; }

/* Indice visuel quand c'est ouvert */
.awinfo.is-open .awinfo__btn{
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.28);
}

/* Mobile : compact */
@media (max-width: 480px){
  .awinfo__inner{ padding: 12px 14px 10px; }
  .awinfo__btnText{ display:none; }
  .awinfo__details{ font-size: 14.5px; }
}

/* Dark mode */
@media (prefers-color-scheme: dark){
  .awinfo__band{ border-bottom-color: rgba(255,255,255,.12); }
  .awinfo__btn{
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.05);
  }
  .awinfo__btn:hover{
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.26);
  }
  .awinfo__details{ border-top-color: rgba(255,255,255,.12); }
  .awinfo__btn:focus-visible{ outline-color: rgba(255,255,255,.28); }
}
