.article_images_right {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 16px !important;
  height: 700px;
  width: 100%;
}
.article_images_right img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.btn-cta-devis {
  position: absolute;
  bottom: 15px;
  left: 125px;
  z-index: 10;
}

.btn-standard {
  background-color: var(--orangeocre);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px 4px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn-standard:hover {
  background-color: var(--marron);
}

.btn-standard .btn-texte {
  white-space: nowrap;
}

.btn-standard .picto-right-next {
  width: 40px;
  height: 40px;
  transition: transform 0.5s ease-in-out;
}

.btn-standard .picto-right-nex:hover {
  transform: rotate(360deg); /* Rotation complète au survol */
}

.bref_region {
  width: 1120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 36px 57px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  margin-top: 60px;
  margin-bottom: 60px;
}

.bref_region .resume-region {
  width: 100%;
  height: 60px;
  display: inline-flex;
  justify-content: space-between;
}

.bref_region .picto {
  position: relative;
  width: 46px;
  height: 46px;
}

.bref_region .resume-titre {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.bref_region .titre-texte {
  position: relative;
  width: 175px;
  height: 24px;
  margin-top: -1px;
  font-family: "Poppins-Regular", Helvetica;
  font-weight: 400;
  color: var(--orangeocre);
  font-size: 12px;
  letter-spacing: 0;
  line-height: normal;
  text-transform: uppercase;
}

.bref_region .titre-valeur {
  position: relative;
  width: 175px;
  height: 24px;
  font-family: "Poppins-SemiBold", Helvetica;
  font-weight: 600;
  color: var(--bleumarine);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.bref_region .itineraires_region,
.bref_region .duree_region,
.bref_region .prix_region,
.bref_region .transport_region {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.blog-article-textes_images_2 {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  grid-template-rows: repeat(2, 350px) !important;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.first_block_resume {
  background-color: var(--bgsection);
}
.blog-article-textes_images_3 {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  grid-template-rows: repeat(2, 350px) !important;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.titre-paragraphe {
  margin-bottom: 20px !important;
}

sup {
  font-size: 0.5em;
}

@media screen and (max-width: 1119px) {
  #weather {
    right: 30px;
    position: relative;
    top: -5px;
    width: 300px;
  }
  .weather-icons {
    left: 0px;
  }
  /* .weather-info {
        width: 200px!important; 
    } */
  .bref_region {
    width: 90%;
    height: auto;
    justify-content: flex-start !important;
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .bref_region .resume-region {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 47px;
  }

  .bref_region .itineraires_region,
  .bref_region .duree_region,
  .bref_region .prix_region,
  .bref_region .transport_region {
    display: flex;
  }
}

/*************************** WEATHER CSS *********************************/
.weather-info {
  flex: 1; /* Prend l'espace restant */
  text-align: left;
  color: aliceblue;
  display: flex;
  flex-wrap: wrap;
}
.weather-icon {
  margin-left: 10px;
  width: auto;
  height: auto;
  color: #333;
}

.weather-icons {
  position: relative;
  left: -10px;
}

/* Style des valeurs météo */
.valeur-meteo {
  font-size: 3em;
  font-weight: bold;
  color: aliceblue;
}
#weather {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 300px;
  margin: 0 auto;
}

.weather-card {
  display: flex;
  background-color: #f0f6f7;
  /* Couleur de fond */
  color: #fff;
  /* Couleur du texte */
  border-radius: 16px;
  /* Coins arrondis */
  padding: 20px;
  max-width: 1120px;
  margin: 20px auto;
  overflow: hidden;
  height: 265px;
}

.weather-overview {
  position: relative;
  /* Nécessaire pour positionner l'overlay */
  flex: 1;
  padding: 20px;
  /* Image de fond */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 1;
}

.weather-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  /* Applique un flou */
  z-index: -1;
  /* Assure que l'overlay est derrière le texte */
}
.ob_nord {
  background: url("../img/resume/nord/nord.jpg") no-repeat center/cover;
}
.ob_sud {
  background: url("../img/resume/sud/sud.jpg") no-repeat center/cover;
}
.ob_ouest {
  background: url("../img/resume/ouest/ouest.jpg") no-repeat center/cover;
}
.ob_est {
  background: url("../img/resume/est/est.jpg") no-repeat center/cover;
}

.weather-overview h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.weather-icon {
  width: 125px;
}

.weather-details {
  display: flex;
  flex-direction: column;
  color: var(--blancblanc);
  text-transform: capitalize;
  font-size: 0.9rem;
  width: auto;
}

.weather-details-temps {
  color: var(--blancblanc);
  text-transform: capitalize;
  font-size: 0.9rem;
  width: auto;
}

.valeur-meteo {
  font-size: 3em;
  font-weight: bold;
  color: var(--blancblanc) !important;
  margin-bottom: 5px;
  margin-right: 5px;
}

.titre-meteo {
  font-size: 0.8em;
  color: #fff;
  font-family: var(--font-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  position: relative;
}

.temperature-info {
  font-size: 2rem;
}

.monthly-weather {
  display: flex;
  flex: 2;
  justify-content: space-between;
  padding: 20px;
  background-color: #073138;
  /* Couleur de fond des mois */
  font-family: var(--font-primary);
}

.month {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  /* width: 16%; */
  border-left: 1px solid #0f4a51;
  padding: 10px;
  justify-content: space-between;
}

.month:first-child {
  border-left: none;
}

.month span {
  margin-bottom: 5px;
  font-size: 14px;
  text-align: center;
}

.month-lib {
  border-bottom: 0.5px solid #0f4a51;
  padding-bottom: 10px;
  color: #a09c9c;
}

.month .max-temp {
  color: #00b29d;
  /* Couleur du texte de la température maximale */
  font-size: 18px;
  font-weight: bold;
  position: relative;
  top: 10px;
}

.month .up-temp {
  position: relative;
  top: 7px;
}

.month .min-temp {
  color: #006a63;
  /* Couleur du texte de la température minimale */
  font-size: 14px;
  position: relative;
  top: 12px;
}

.month .down-temp {
  position: relative;
  top: 11px;
}

.month-icon {
  width: 80px;
  margin: 5px 0;
  position: relative;
  top: 0;
}

@media screen and (max-width: 1119px) {
  .weather-card {
    display: block;
    height: auto;
    margin: 10px;
  }

  .monthly-weather {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}

@media screen and (max-width: 375px) {
  .month:nth-child(odd) {
    border-left: none;
  }
  .monthly-weather {
    flex-wrap: wrap;
  }
  .weather-icons {
    left: 0;
  }
  .weather-icon {
    width: 100px;
  }
  .valeur-meteo {
    font-size: 18px;
  }
}
