#swiper-salle-seminaires {
  .swiper-slide.salle-seminaire {
    display: flex;
    align-items: center;
    background-color: #272727;
  }
  .img-slide {
    width: 55%;
    display: flex;
  }
  .txt-slide {
    width: 45%;
    padding: 7%;
    hr {
      border-color: #fbfbfb;
    }
    .h4,
    p {
      color: #fbfbfb;
    }
    .infos-salle-seminaire {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 40px;
    }

    .info-salle-seminaire {
      display: flex;
      align-items: center;
      gap: 20px;
      .img-container {
        width: 60px;
      }
    }
  }

  .swiper-pagination {
    position: relative;
    bottom: 0;
    .swiper-pagination-bullet {
      background: #ede7e7;
      opacity: 1;
    }
    .swiper-pagination-bullet-active {
      background: #0252c6;
    }
  }

  .button-prev-salle,
  .button-next-salle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #0252c6;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .button-prev-salle {
    left: 0;
  }
  .button-next-salle {
    right: 0;
  }

  .button-prev-salle:after,
  .button-next-salle:after {
    font-family: ETmodules !important;
    font-size: 20px;
    color: #ede7e7;
  }

  .button-next-salle:after {
    content: '5';
  }
  .button-prev-salle:after {
    content: '4';
  }
}

@media screen and (max-width: 767px) {
  #swiper-salle-seminaires {
    .swiper-slide.salle-seminaire {
      flex-direction: column;
    }
    .img-slide {
      width: 100%;
    }
    .txt-slide {
      width: 80%;
    }
  }
}
/*show all actus*/
.actu-container {
  .all {
    display: flex;
    gap: 2%;
    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 30px;
    width: 100%;
  }

  .navigation.pagination.actualites {
    text-align: center;
    margin: 40px 0;
    width: 100%;
  }

  /* Liste de pagination */
  .navigation.pagination.actualites .page-numbers {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
  }

  /* Liens de pagination */
  .navigation.pagination.actualites .page-numbers li a,
  .navigation.pagination.actualites .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 7px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    color: #bcc3c8;
    border: 2px solid #bcc3c8;
    transition: all 0.3s ease;
  }

  /* Hover sur les liens */
  .navigation.pagination.actualites .page-numbers li a:hover {
    background-color: #c69955;
    color: #012036;
    border-color: #c69955;
    transform: translateY(-2px);
  }

  /* Page active */
  .navigation.pagination.actualites .page-numbers li span.current {
    background-color: #c69955;
    color: #012036;
    border-color: #c69955;
  }

  /* Points de suspension */
  .navigation.pagination.actualites .page-numbers li span.dots {
    border: none;
    padding: 0 8px;
  }

  /* Boutons précédent/suivant */
  .navigation.pagination.actualites .page-numbers li a.prev,
  .navigation.pagination.actualites .page-numbers li a.next {
    font-size: 14px;
    padding: 0 16px;
  }
}

.cat-actualites,
.cat-evenements {
  display: none;
}
.cat-actualites.show,
.cat-evenements.show {
  display: block;
}

.btn-category-actus-wrapper {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(178, 137, 89, 0.3);
  padding-bottom: 0;
}

.btn-category-actus-wrapper {
  display: flex;
  gap: 8px;
}

.btn-category-actus {
  border: 1px solid #b28959;
  color: #b28959;
  background: none;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* État actif - fond doré */
.btn-category-actus.active {
  background: #b28959;
  color: #fff;
}

/* Hover sur inactif */
.btn-category-actus:not(.active):hover {
  background: rgba(178, 137, 89, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(178, 137, 89, 0.2);
}

/* Icônes */
.btn-category-actus::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#btn-evenements::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B28959' stroke-width='1.5'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

#btn-evenements.active::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

#btn-actualites::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B28959' stroke-width='1.5'%3E%3Cpath d='M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2'/%3E%3Cpath d='M18 14h-8'/%3E%3Cpath d='M15 18h-5'/%3E%3Cpath d='M10 6h8v4h-8V6Z'/%3E%3C/svg%3E");
}

#btn-actualites.active::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5'%3E%3Cpath d='M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2'/%3E%3Cpath d='M18 14h-8'/%3E%3Cpath d='M15 18h-5'/%3E%3Cpath d='M10 6h8v4h-8V6Z'/%3E%3C/svg%3E");
}

/* Focus accessibilité */
.btn-category-actus:focus-visible {
  outline: 2px solid #b28959;
  outline-offset: 3px;
}
