/* ============================================================
   NEWS - hub (archive) and single post
   ============================================================ */

/* ── HERO (news-hub) ─────────────────────────────────── */
.news-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.news-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239CC4EE' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.news-hero__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.news-hero__eyebrow {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: .5rem;
}
.news-hero__title {
  font-family: var(--font-h);
  font-size: clamp(1.85rem, 4.5vw, 2.8rem);
  font-weight: 700; color: var(--white);
  line-height: 1.18;
}

/* ── LAYOUT ──────────────────────────────────────────── */
.news-hub {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 960px) {
  .news-hub { grid-template-columns: 1fr; gap: 2rem; }
}

.news-hub__intro {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── LIST ────────────────────────────────────────────── */
.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 700px) {
  .news-list { grid-template-columns: 1fr; }
}

.ncard {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.ncard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.ncard__img {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--warm-gray);
}
.ncard__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.ncard:hover .ncard__img img { transform: scale(1.06); }

.ncard__img--placeholder {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--cream) 100%);
}

.ncard__body {
  padding: 1.1rem 1.15rem 1.3rem;
  display: flex; flex-direction: column;
  flex: 1;
}
.ncard__meta {
  display: flex; align-items: center; gap: .5rem;
  font-size: .72rem;
  color: var(--text-light);
  margin-bottom: .45rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ncard__cat {
  display: inline-block;
  padding: .15rem .55rem;
  background: var(--cream);
  color: var(--navy);
  border-radius: var(--r-pill);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.ncard__title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .5rem;
  line-height: 1.3;
}
.ncard__ex {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.ncard__link {
  margin-top: .85rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .03em;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap .25s var(--ease);
}
.ncard:hover .ncard__link { gap: .65rem; color: var(--btn-primary-hover); }

/* ── ASIDE ───────────────────────────────────────────── */
.news-aside {
  position: sticky;
  top: 6rem;
  display: flex; flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 960px) {
  .news-aside { position: static; }
}
.news-aside__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.25rem 1.1rem;
}
.news-aside__title {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--navy-mid);
  margin-bottom: .85rem;
  font-weight: 700;
}
.news-aside ul { list-style: none; padding: 0; margin: 0; }
.news-aside li { margin: 0; }
.news-aside li + li { margin-top: .15rem; }
.news-aside a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .45rem .65rem;
  font-size: .88rem;
  color: var(--text);
  border-radius: var(--r-sm);
  transition: background .2s, color .2s;
}
.news-aside a:hover,
.news-aside a.is-active {
  background: var(--white);
  color: var(--navy);
}
.news-aside__count {
  font-size: .72rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ── PAGINATION ──────────────────────────────────────── */
.nl-pager { margin-top: 2.5rem; }
.nl-pager ul {
  display: flex; flex-wrap: wrap; gap: .4rem;
  list-style: none; padding: 0; margin: 0;
}
.nl-pager a,
.nl-pager span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.25rem; height: 2.25rem; padding: 0 .5rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  font-size: .85rem; color: var(--navy);
  text-decoration: none;
}
.nl-pager a:hover { background: var(--cream); }
.nl-pager span.current {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.news-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
}
