@charset "UTF-8";
/* VARIABLES */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  right: -6rem;
  top: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(176, 122, 72, 0.1);
  z-index: 0;
}
@media (min-width: 1024px) {
  .hero::before {
    width: 28rem;
    height: 28rem;
  }
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__titre {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.08;
  margin: 0 0 1.4rem;
}
.hero__texte {
  color: #5F6878;
  line-height: 1.7;
  margin: 0 0 2rem;
}
.hero__texte p {
  margin: 0;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__media {
  position: relative;
  padding: 1.5rem 1.5rem 0 0;
}
@media (min-width: 1024px) {
  .hero__media {
    padding: 2rem 2rem 0 0;
  }
}
.hero__media::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 74%;
  border: 1.5px solid #B07A48;
  border-radius: 4px;
  z-index: 0;
}
.hero__media .image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.blog-filtres {
  padding-top: 0;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .blog-filtres {
    padding-bottom: 4rem;
  }
}
.blog-filtres__liste {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filtre {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid rgba(0, 37, 105, 0.25);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #002569;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.filtre:hover {
  border-color: #002569;
  background: rgba(0, 37, 105, 0.06);
  color: #002569;
}
.filtre--actif {
  background: #002569;
  color: #FBFAF6;
  border-color: #002569;
}
.filtre--actif:hover {
  background: #002569;
  color: #FBFAF6;
}

.blog-articles {
  background: #F0ECE3;
  padding-top: 4rem;
}
@media (min-width: 1024px) {
  .blog-articles {
    padding-top: 6rem;
  }
}
@media (min-width: 1188px) {
  .blog-articles {
    padding-top: 7rem;
  }
}
.blog-articles__grille {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .blog-articles__grille {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.blog-articles__vide {
  color: rgba(95, 104, 120, 0.6);
  font-style: italic;
}

.article {
  background: #FBFAF6;
  border: 1px solid rgba(95, 104, 120, 0.1);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
@media (min-width: 768px) {
  .article {
    flex: 0 1 calc(50% - 0.75rem);
  }
}
@media (min-width: 1024px) {
  .article {
    flex: 0 1 calc(33.333% - 1rem);
  }
}
.article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 37, 105, 0.1);
}
.article__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
}
.article__categorie {
  font-weight: 700;
  color: #B07A48;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.article__categorie::before {
  content: "· ";
}
.article__date {
  color: rgba(95, 104, 120, 0.5);
}
.article__titre {
  font-size: 1.15rem;
  font-weight: 600;
  color: #002569;
  line-height: 1.35;
  margin: 0 0 0.8rem;
}
.article__extrait {
  color: rgba(95, 104, 120, 0.65);
  line-height: 1.65;
  flex: 1;
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
}
.article__lien {
  font-weight: 500;
  color: #002569;
  text-decoration: none;
  transition: color 0.2s;
  align-self: flex-start;
  font-size: 0.9rem;
}
.article__lien::after {
  content: "";
  position: absolute;
  inset: 0;
}
.article__lien:hover {
  color: #B07A48;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 3px;
  border: 1.5px solid rgba(0, 37, 105, 0.18);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #002569;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-pagination a:hover {
  background: rgba(0, 37, 105, 0.06);
  border-color: rgba(0, 37, 105, 0.4);
}
.blog-pagination .current {
  background: #002569;
  color: #FBFAF6;
  border-color: #002569;
}
.blog-pagination .dots {
  border-color: transparent;
  background: transparent;
  cursor: default;
  color: rgba(0, 37, 105, 0.4);
}