.news-hero {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.6rem 1.1rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.news-hero__content h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.news-hero__content p {
  color: #475569;
  line-height: 1.65;
}

.news-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #2563eb;
  font-weight: 600;
}

.news-hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.news-hero__cta,
.news-hero__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.news-hero__cta {
  background: #2563eb;
  color: #fff;
}

.news-hero__ghost {
  border: 1px solid #cbd5f5;
  color: #1e293b;
  background: #fff;
}

.news-hero__meta {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.news-hero__meta p {
  margin: 0;
  color: #0f172a;
  font-weight: 600;
}

.news-hero__meta ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: #475569;
  line-height: 1.6;
}

.news-posts {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.1rem 2rem;
}

.news-posts__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.news-posts__header h2 {
  margin: 0;
}

.news-posts__eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 0.2rem;
}

.news-posts__secondary {
  text-decoration: none;
  color: #2563eb;
  font-weight: 600;
}

.news-posts__empty {
  padding: 1.2rem 0;
  color: #475569;
}

.news-posts__grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
}

.news-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.news-card--featured {
  grid-column: span 2;
}

.news-card__date {
  margin: 0;
  font-size: 0.85rem;
  color: #94a3b8;
}

.news-card h3 {
  margin: 0;
  color: #0f172a;
}

.news-card__summary,
.news-card__content,
.news-card__footer {
  color: #475569;
}

.news-card__content {
  white-space: pre-line;
  line-height: 1.65;
}

.news-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.9rem;
}

body.dark-mode .news-hero__content h1,
body.dark-mode .news-hero__meta p,
body.dark-mode .news-card h3 {
  color: #f8fafc;
}

body.dark-mode .news-hero__content p,
body.dark-mode .news-hero__meta ul,
body.dark-mode .news-posts__empty,
body.dark-mode .news-card__summary,
body.dark-mode .news-card__content,
body.dark-mode .news-card__footer {
  color: #cbd5e1;
}

body.dark-mode .news-hero__ghost {
  border-color: rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
  background: #0f172a;
}

body.dark-mode .news-hero__meta,
body.dark-mode .news-card {
  background: #0f172a;
  border-color: rgba(148, 163, 184, 0.2);
}

body.dark-mode .news-card__date,
body.dark-mode .news-posts__eyebrow {
  color: #94a3b8;
}

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

  .news-card--featured {
    grid-column: span 1;
  }
}

/* Compact public news shells */
.news-hero {
  gap: 0.95rem;
  padding: 1.25rem 0.95rem 0.85rem;
}

.news-hero__actions {
  gap: 0.55rem;
}

.news-hero__cta,
.news-hero__ghost {
  padding: 0.65rem 1.05rem;
  border-radius: 10px;
}

.news-hero__meta {
  border-radius: 10px;
  padding: 0.85rem;
}

.news-posts {
  padding: 0.65rem 0.95rem 1.5rem;
}

.news-posts__grid {
  gap: 0.75rem;
}

.news-card {
  border-radius: 10px;
}

@media (max-width: 640px) {
  .news-hero {
    padding: 1rem 0.7rem 0.7rem;
  }

  .news-posts {
    padding: 0.55rem 0.7rem 1.2rem;
  }
}
