/* Composant Partenaires */

#partenaires {
  background-color: #FFF;
  padding: 2rem 0;
}

#partenaires h2 {
  text-align: center;
  margin-bottom: 1rem;
}

/* Composant Actu */

#blog .bloc-3 img {
  width: 100%;
}

#blog .bloc-1 {
  margin-bottom: 1rem;
}

#blog .bloc-3 h3 {
  font-size: 18px;
  margin: 0.5rem 0;
}

#blog .btn-sec {
  display: flex;
  justify-content: flex-end;
  font-weight: 800;
  text-decoration: underline;
  margin-top: 1rem;
}

/* Composant Collaborateur */

#collaborateur {
  background-color: #FFF;
  padding-bottom: 0;
}

#collaborateur .bloc-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

#collaborateur .bloc-1>* {
  text-align: center;
  max-width: 70%;
}

#collaborateur .bloc-1 h2 {
  margin-bottom: 1rem;
}

#collaborateur .bloc-3 .collab {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F9F7F6;
  padding: 2rem;
  margin: 1rem 0;
  gap: 0.5rem;
}

#collaborateur .bloc-3 .collab * {
  text-align: center;
  margin: 0;
}

#collaborateur .bloc-3 .collab .photo {
  border-radius: 50%;
}

#collaborateur .bloc-3 .collab h4 {
  color: #3F9B26;
  font-weight: 700;
}

#collaborateur .bloc-3 .collab .poste {
  font-size: 18px;
  font-weight: 700;
}

#collaborateur .bloc-3 .collab a::before {
  content: url('/wp-content/themes/Oxano/images/linkedin.svg');
}

/* Composant Témoignage */

#temoignage {
  background-color: #FFF;
}

#temoignage .bloc-1 {
  margin-bottom: 1rem;
}

#temoignage .bloc-1 H2 {
  text-align: center;
}

#temoignage .card {
  background-color: #F2F0ED;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  margin: 0 1rem;
  gap: 0.5rem;
}

#temoignage .card * {
  text-align: center;
}

#temoignage .card img {
  width: auto;
  border-radius: 50%;
}

#temoignage .card h3 {
  color: #3F9B26;
}

#temoignage .card .societe {
  font-weight: 700;
  font-size: 18px;
}

#temoignage .card p {
  margin: 0;
}

/* Composant Formation */

#formation {
  background-color: #FFF;
}

#formation .bloc-1 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

#formation .bloc-1 * {
  max-width: 70%;
}

/* Filtres */
.bloc-filtres {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 30px;
  width: 100%;
  justify-content: center;
}

.filtre-btn {
  padding: 8px 20px;
  border: 1px solid #192562;
  background: transparent;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.filtre-btn:hover,
.filtre-btn.active {
  background: #192562;
  color: #fff;
}

/* Loader */
.is-loading {
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Pagination */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  width: 100%;
}

.page-btn {
  padding: 8px 16px;
  border: 1px solid #192562;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
  background: #192562;
  color: #fff;
}

.prev-btn,
.next-btn {
  font-weight: 600;
}