.mod-header-logo{
max-width: inherit;
}

.social-link.newsletter {
    background-color: #192545; /* même bleu que les autres */
    border-radius: 50%; /* rend le bouton parfaitement rond */
    height: 40px;
    width: 40px;
    padding: 5px;
    text-align: center;
    display: inline-block;
    transition: all 73ms ease-in-out;

}

.social-link.newsletter:hover {
    background-color: #0ca3a3;
}

.social-link.newsletter .fa-envelope-open-text {
    font-size: 20px;
    color: white;
    line-height: 30px; /* centrage vertical */
}
/* ============================================================
   FICHE HÉBERGEMENT
   ============================================================ */

/* ============================================================
   GRILLE EXTÉRIEURE avec zones nommées
   Desktop  : [ gauche | logo  ]
              [ gauche | droite ]
   Mobile   : [ logo   ]
              [ gauche ]
              [ droite ]
   ============================================================ */

.line-hebergement .heberg-outer {
  display: grid;
  grid-template-columns: 55fr 45fr;
  grid-template-areas:
    "left  logo"
    "left  right";
  gap: 0 3rem;
  align-items: start;
}

.line-hebergement .heberg-logo  { grid-area: logo; }
.line-hebergement .heberg-left  { grid-area: left; }
.line-hebergement .heberg-right { grid-area: right; }

/* ============================================================
   LOGO
   ============================================================ */

.line-hebergement .heberg-logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 1rem;
}

.line-hebergement .heberg-logo img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   ENCADRÉ DATES / DISPONIBILITÉS
   ============================================================ */

.line-hebergement .heberg-info-bar {
  display: inline-flex;
  flex-direction: column;
  gap: 0.8rem;
  background: #DFE7D3;
  border-radius: 12px;
  padding: 1.2rem 1.6rem;
  margin-bottom: 2rem;
  max-width: 100%;
}

.line-hebergement .heberg-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.line-hebergement .heberg-info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.3rem;
  color: #132c17;
}

/* ============================================================
   LISTE COORDONNÉES
   ============================================================ */

.line-hebergement .heberg-coords {
  list-style: none;
  padding: 0;
  margin: 0;
}

.line-hebergement .heberg-coords li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.line-hebergement .heberg-coords li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.3rem;
  color: #132c17;
}

.line-hebergement .heberg-coords a {
  color: #6a8b41;
  text-decoration: none;
}

.line-hebergement .heberg-coords a:hover,
.line-hebergement .heberg-coords a:focus {
  text-decoration: underline;
  color: #6a8b41;
}

/* ============================================================
   SÉPARATEUR
   ============================================================ */

.line-hebergement .heberg-separator {
  border: none;
  border-top: 1px solid #bfc9e0;
  margin: 1.5rem 0;
  max-width: 40%;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.line-hebergement .heberg-section {
  margin-bottom: 2rem;
}

.line-hebergement .heberg-note {
  font-style: italic;
  color: #73745f;
}

/* ============================================================
   ENCADRÉ ALERTE
   ============================================================ */

.line-hebergement .heberg-alerte {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #fef9ec;
  border: 2px solid #f0c040;
  border-left: 5px solid #b45309;
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  margin-top: 1.5rem;
}

.line-hebergement .heberg-alerte svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.line-hebergement .heberg-alerte p {
  margin: 0;
}

/* ============================================================
   COLONNE DROITE : carte + photo
   ============================================================ */

.line-hebergement .heberg-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.line-hebergement .heberg-map {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #bfc9e0;
}

.line-hebergement .heberg-map iframe {
  display: block;
  width: 100%;
}

.line-hebergement .heberg-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .line-hebergement .heberg-outer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "left"
      "right";
  }

  .line-hebergement .heberg-logo {
    justify-content: flex-start;
    padding-bottom: 1rem;
  }

  .line-hebergement .heberg-separator {
    max-width: 100%;
  }
}


@media (max-width: 600px) {
  .line-hebergement .heberg-info-bar {
    display: flex;
  }

  .line-hebergement .heberg-alerte {
    flex-direction: column;
    gap: 0.8rem;
  }
}