/* ==========================================================================
   Calendrier ML Voyages
   Author: Christophe Delire
   Version: 1.1
   Date: 2025-10-18
   ========================================================================== */

.mlv_calendrier_wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    background: #f6fafe;
    border-top: 3px solid #004773;
}

.mlv_calendrier_mois {
    background: #ffffff;
    border: 1px solid #ddeaf4;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

.mlv_calendrier_mois h3 {
    font-size: 20px;
    color: #004773;
    text-align: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddeaf4;
    padding-bottom: 5px;
}

.mlv_jours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mlv_jours > li {
    margin-bottom: 15px;
}

.mlv_jours > li > strong {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #004773;
    margin-bottom: 5px;
    border-left: 4px solid #004773;
    padding-left: 8px;
}

.mlv_jours ul {
    list-style: none;
    margin: 0;
    padding: 0 0 0 12px;
}

.mlv_jours ul li {
    margin-bottom: 5px;
}

.mlv_jours ul li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mlv_jours ul li a:hover {
    color: #004773;
}

.mlv_vide {
    text-align: center;
    font-style: italic;
    color: #888;
    margin: 20px 0 0;
}



/* Badges types de déplacement */
.mlv_badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 8px;
  margin-right: 6px;
  vertical-align: middle;
  color: white;
}

.mlv_icon_img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    vertical-align: middle;
}

.mlv_slider_cta {
  position: absolute;
  bottom: 135px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.mlv_slider_cta a {
  background-color: #004773;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.mlv_slider_cta a:hover {
  background-color: #0069a3;
}

/* Responsive : masquer le bouton sur mobile */
@media screen and (max-width: 768px) {
  .mlv_slider_cta {
    display: none;
  }
}
/* Responsive corrections */
@media (max-width: 768px) {
  .mlv_calendrier_mois {
    width: 100% !important;
  }
}
