/* ==================================================================
   OPM Debarras - bandeau bleu au-dessus de l'en-tete : nom et ville,
   adresse, telephone, note Google. Sur telephone, les quatre
   informations restent affichees, sur trois lignes.
   ================================================================== */
.opm-bandeau{background:#1257AD;color:#FFFFFF}
.opm-bandeau-in{
  max-width:min(1600px,100%);box-sizing:border-box;margin:0 auto;
  padding:9px clamp(18px,4vw,56px);
  display:flex;align-items:center;gap:8px 26px;flex-wrap:wrap;
  font-family:'Bricolage Grotesque',system-ui,-apple-system,Segoe UI,sans-serif;
  font-size:13.5px;line-height:1.3;
}
.opm-bandeau-nom{font-weight:800;letter-spacing:.02em}
.opm-bandeau-adr{font-weight:600;color:rgba(255,255,255,.92)}
.opm-bandeau-tel{color:#FFFFFF;font-weight:800;text-decoration:none;white-space:nowrap}
.opm-bandeau-tel:hover{text-decoration:underline}
.opm-bandeau .opm-avis{margin-left:auto}

@media (max-width:900px){
  .opm-bandeau-in{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:5px 14px;padding:8px clamp(18px,5vw,40px)}
  .opm-bandeau-nom{align-self:center}
  .opm-bandeau-tel{justify-self:end}
  .opm-bandeau-adr{grid-column:1/-1;font-size:13px}
  .opm-bandeau .opm-avis{grid-column:1/-1;justify-self:start;margin-left:0}
}
