/* Fix mobile UX + header logo (Trousse d'Audrey)
   - Assure l'affichage complet du logo dans le header
   - Évite tout recadrage/coupure liée à des règles conflictuelles
*/

.top-header{ overflow: visible; }

.top-header--trousse .trousse-brand-logo{
  width: 440px !important;       /* logo x2 */
  max-width: 92vw !important;    /* ne dépasse pas l'écran */
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

@media (max-width: 520px){
  .top-header{ padding-left: 12px; padding-right: 12px; }
  .top-header--trousse .trousse-brand-logo{
    width: 92vw !important;
    max-width: 92vw !important;
  }
}
