/* NEWS */
.news{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:42px;
  align-items:start;
}
.news__featured-img{
  width:100%;
  aspect-ratio: 16/9;
  object-fit:cover;
  border-radius:2px;
}
.news__meta{
  margin-top:16px;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}
.news__meta.green{color:var(--green)}
.news__h{
  margin:10px 0 8px;
  font-size:22px;
  line-height:1.25;
  font-weight:700;
}
.news__date{
  font-size:13px;
  color:var(--muted);
}

.newsItem{
  display:grid;
  grid-template-columns: 1fr 180px;
  gap:18px;
  align-items:center;
  padding:4px 0;
}
.newsItem__thumb{
  width:100%;
  aspect-ratio: 16/9;
  object-fit:cover;
  border-radius:2px;
}
.newsItem__meta{
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:8px;
}
.newsItem__meta.green{color:var(--green)}
.newsItem__h{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.35;
  font-weight:700;
}
.newsItem__date{font-size:13px;color:var(--muted)}
.news__divider{height:1px;background:rgba(0,0,0,.18); margin:18px 0}

/* NEWS ARCHIVE */
.newsArchive{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:32px;
  margin-top:24px;
}

.newsCard{
  background:#f4f6fb;
  border-radius:16px;
  overflow:hidden;
  transition:.25s ease;
}

.newsCard:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.12);
}

.newsCard__link{
  display:block;
}

.newsCard__media{
  width:100%;
  aspect-ratio: 16 / 9;
  overflow:hidden;
  background:#e6eaf4;
}

.newsCard__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.newsCard__placeholder{
  width:100%;
  height:100%;
  background:linear-gradient(135deg, #e6eaf4, #f7f9ff);
}

.newsCard__body{
  padding:18px 20px 20px;
}

.newsCard__meta{
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.newsCard__title{
  margin:0 0 12px;
  font-size:18px;
  line-height:1.3;
  font-weight:800;
  text-transform:uppercase;
  color:#1f2f8c;
}

.newsCard__excerpt{
  font-size:14px;
  line-height:1.6;
  color:#555b6b;
  margin-bottom:14px;
}

.newsCard__date{
  font-size:12px;
  color:var(--muted);
}

.pagination{
  margin-top:32px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:36px;
  height:36px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.15);
  font-size:13px;
  font-weight:700;
}

.pagination .current{
  background:#1f2f8c;
  color:#fff;
  border-color:#1f2f8c;
}
