#nextBooking {

  min-height: calc(100vh - 30px);
  display: flex;
  align-items: center;

}

#nextBooking .overlay-blue {

  background-image: linear-gradient(rgba(3, 33, 58, 0.7), rgba(3, 33, 58, 0.7)),
    url('/msmedias/font-de-mer-dieppe.jpg');
}

#nextBooking .article-inner {
  position: relative;
  max-width: 96%;
  width: 1200px;
  padding: 0 50px;
  border: 5px solid var(--orange);
  text-align: center;
}

#nextBooking .article-content {
  position: relative;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#nextBooking .article-content div {}

#nextBooking .article-content div.calendar {
  flex: 1
}

#nextBooking .article-title,
#nextBooking .button {

  flex: 0 0 120px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#nextBooking h2 {
  font-size: 3rem;
}

#nextBooking .calendar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

#nextBooking .day-month {
  width: 100%;
  border: 4px solid var(--navy-blue);
  border-radius: 15px;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;

  flex-direction: column;

}

#nextBooking .month {
  background-color: var(--orange);
  color: white;
  padding: 5px 0;
  flex: 0
}

#nextBooking .day {
  color: white;
  padding: 5px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3.5rem;
  font-weight: bold;
}



#nextBooking .time {
  min-width: 140px;
}

#nextBooking a.btn {
  font-size: 2.5rem;
  font-weight: bold;
  border-radius: 50px;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1;
  padding-bottom: 12px;
}

#nextBooking .details {
  text-align: left;
  padding-left: 20px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  border-left: 7px solid white;
}

#nextBooking .details .title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #ff9900;
  ;
}

#nextBooking .details .summary {
  font-size: 2rem;
  color: #ffffff;

}

#nextBooking .details .description {
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.5;
  padding-left: 80px;
}