/*! Styles responsive pour le pattern Hero Banner 5 */

/* Conteneur principal */

.is-hero-5-container {
  background-color: var(--wp--custom--theme-500);
  padding: var(--wp--custom--spacer-m-fluid) 0 0 0 !important;
}

.is-hero-5-content {
  padding-top: var(--wp--custom--spacer-xl-fluid) !important;
  padding-bottom: var(--wp--custom--spacer-xl-fluid) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--wp--custom--spacer-m-fluid);
  
}

.is-hero-5-content, .is-hero-5-image {
  width: 50%;
}

.is-hero-5-title-container {
  color: var(--wp--custom--secondary-500);
}

.is-hero-5-description {
  color: var(--wp--custom--false-white);
}

/* Responsive - Tablette */
@media (max-width: 1024px) {
  .is-hero-5-content, .is-hero-5-image {
    width: 100%;
  }
  
  .is-hero-5-content {
    padding: var(--wp--custom--spacer-l-fluid) var(--wp--custom--spacer-fluid);
  }
  
  .is-hero-5-content ul {
    gap: var(--wp--custom--spacer-xs);
  }
  
  .is-hero-5-content ul li {
    font-size: 0.95rem;
  }
  
  .is-hero-5-content ul li img {
    width: 20px;
    height: 20px;
  }
}

/* Responsive - Mobile large */
@media (max-width: 768px) {
  .is-hero-5-content {
    padding: var(--wp--custom--spacer-l-fluid) var(--wp--custom--spacer-s-fluid);
  }
  
  .is-hero-5-content {
    flex-direction: column;
    gap: var(--wp--custom--spacer-m) !important;
  }
  
  .is-hero-5-content .wp-block-column {
    flex-basis: 100% !important;
  }
  
  /* Premier bloc colonne (texte) */
  .is-hero-5-content .wp-block-column:first-child {
    display: flex;
    flex-direction: column;
  }
  
  .is-hero-5-content .wp-block-column:first-child h2 {
    margin-right: 0 !important;
  }
  
  .is-hero-5-content .wp-block-column:first-child ul {
    margin-bottom: var(--wp--custom--spacer-s);
  }
  
  .is-hero-5-content .wp-block-column:first-child .wp-block-buttons {
    justify-content: center;
  }
  
  /* Deuxième bloc colonne (image) */
  .is-hero-5-content .wp-block-column:last-child figure {
    margin: 0 auto;
    max-width: 90%;
  }
}

/* Responsive - Mobile petit */
@media (max-width: 480px) {
  .is-hero-5-content {
    padding: var(--wp--custom--spacer-m-fluid) var(--wp--custom--spacer-xs-fluid);
  }
  
  .is-hero-5-content h2 {
    font-size: clamp(1.5rem, 1.25rem + 1.25vw, 1.75rem);
  }
  
  .is-hero-5-content ul li {
    font-size: 0.9rem;
    gap: var(--wp--custom--spacer-xs);
  }
  
  .is-hero-5-content ul li img {
    width: 18px;
    height: 18px;
  }
  
  .is-hero-5-content .wp-block-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .is-hero-5-content .wp-block-button {
    width: 100%;
  }
  
  .is-hero-5-content .wp-block-button__link {
    width: 100%;
    text-align: center;
  }
}
