/* =========================================================
   NEWS / INFO HUB LIST PAGES
   Both pages share this stylesheet. Hero + grid overrides only;
   the .news-card component itself comes from global style.css.
   ========================================================= */

/* =========================================================
   PAGE HERO — title + intro
   ========================================================= */
.nl-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: clamp(40px, 5vw, 60px);
  background: #fff;
  border-bottom: 1px solid var(--border);
  clip-path: inset(0);
  overflow: hidden;
}

.nl-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.nl-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(28, 25, 23, .07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 80% 50%, #000 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 80% 50%, #000 30%, transparent 95%);
}

.nl-hero__bg-glow {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(28, 25, 23, .14) 0%,
      rgba(28, 25, 23, .04) 40%,
      rgba(28, 25, 23, 0) 70%);
  filter: blur(40px);
  transform: translateY(-50%);
  animation: nl-glow 8s ease-in-out infinite alternate;
}

@keyframes nl-glow {
  0% {
    opacity: .6;
    transform: translateY(-50%) scale(.9);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
  }
}

.nl-hero>.container {
  position: relative;
  z-index: 1;
}

.nl-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(36px, 5vw, 56px);
  font-size: var(--t-xs);
  color: var(--text-muted);
}

.nl-crumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

.nl-crumbs a:hover {
  color: var(--text);
}

.nl-crumbs i {
  font-size: .75rem;
  color: var(--text-light);
}

.nl-crumbs span {
  color: var(--text);
  font-weight: 500;
}

.nl-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 16px;
}

.nl-hero__meta::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--text-muted);
}

.nl-hero__title {
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 14px;
  max-width: 760px;
}

.nl-hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 640px;
}

/* =========================================================
   GRID — uses global .news-card; we just provide the section
   wrapper background and spacing.
   The grid layout itself (.news__grid) is from global style.css.
   ========================================================= */
.nl-list {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--bg-soft);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .nl-hero {
    padding-top: calc(var(--header-h) + 24px);
  }
}