@charset "UTF-8";

/* =========================================================
   ACTUALITES
========================================================= */

.news-page{
  padding: 96px 6%;
  background: #f8fafc;
  text-align: left;
}

.news-shell{
  max-width: 1240px;
  margin: 0 auto;
}

.news-intro{
  max-width: 860px;
  margin-bottom: 42px;
}

.news-intro h2{
  font-family: var(--font-cormorant);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.08;
  color: var(--blue);
}

.news-intro h2 em{
  color: var(--gold);
  font-style: italic;
}

.news-intro-text{
  font-size: 1.02rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-top: 8px;
}

.news-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.news-main{
  min-width: 0;
}

.news-featured{
  margin-bottom: 34px;
}

.news-featured-card,
.news-card,
.news-side-card{
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.news-featured-link{
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  color: inherit;
  text-decoration: none;
}

.news-featured-media,
.news-card-media{
  background: #eef2f5;
  overflow: hidden;
}

.news-featured-media picture,
.news-featured-media img,
.news-card-media picture,
.news-card-media img{
  display: block;
  width: 100%;
  height: 100%;
}

.news-featured-media img,
.news-card-media img{
  object-fit: cover;
}

.news-featured-body{
  padding: 30px 28px;
}

.news-featured-body h3,
.news-card-body h3,
.news-side-card h3{
  font-family: var(--font-cormorant);
  color: var(--blue);
}

.news-featured-body h3{
  font-size: 2rem;
  line-height: 1.06;
  margin-bottom: 12px;
}

.news-featured-body p{
  color: var(--gray-600);
  line-height: 1.85;
  font-size: .96rem;
}
.news-grid-sec {
  padding: 0px 6%;
}
.news-grid-sec h2{
  font-family: var(--font-cormorant);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.08;
  color: var(--blue);
}

.news-grid-sec h2 em{
  color: var(--gold);
  font-style: italic;
}

.news-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.news-card-link{
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card-body{
  padding: 24px 22px;
}

.news-card-body h3{
  font-size: 1.45rem;
  line-height: 1.12;
  margin-bottom: 10px;
}

.news-card-body p{
  color: var(--gray-600);
  font-size: .93rem;
  line-height: 1.8;
}

.news-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 12px;
  color: var(--gray-400);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.news-chip{
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.news-readmore{
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.news-sidebar{
  display: grid;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.news-side-card{
  padding: 24px 22px;
}

.news-side-card h3{
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.news-side-card p{
  color: var(--gray-600);
  line-height: 1.8;
  font-size: .93rem;
}

.news-side-list,
.news-links{
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-side-list{
  display: grid;
  gap: 10px;
}

.news-side-list a{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
  text-decoration: none;
}

.news-side-list a:hover,
.news-links a:hover{
  color: var(--blue);
}

.news-links{
  display: grid;
  gap: 12px;
}

.news-links a{
  display: block;
  color: var(--gray-600);
  line-height: 1.65;
  text-decoration: none;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.news-cta-card .btn-primary{
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.news-pagination{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
}

.news-page-link{
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--blue);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
}

.news-page-link.active,
.news-page-link:hover{
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

@media (max-width: 1100px){
  .news-layout{
    grid-template-columns: 1fr;
  }

  .news-sidebar{
    position: static;
    top: auto;
  }
}

@media (max-width: 900px){
  .news-featured-link,
  .news-grid{
    grid-template-columns: 1fr;
  }

  .news-featured-media{
    min-height: 280px;
  }
}

@media (max-width: 640px){
  .news-page{
    padding: 72px 6%;
  }

  .news-featured-body,
  .news-card-body,
  .news-side-card{
    padding: 22px 18px;
  }

  .news-featured-body h3{
    font-size: 1.7rem;
  }

  .news-card-body h3{
    font-size: 1.3rem;
  }
}