/* News pages */
.news-hero {
  min-height: 0;
  padding: 58px 24px 46px;
  text-align: center;
}

.news-hero .hero-copy {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.news-hero h1 {
  margin-top: 14px;
  color: #fff;
  font-size: 34px;
  line-height: 1.25;
}

.news-hero .lead {
  max-width: 720px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
}

.news-list-section {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 42px;
  padding-bottom: 70px;
}

.news-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.year-heading {
  padding: 18px 22px 10px;
  border-top: 1px solid var(--line);
  color: var(--brand-strong);
  background: #f8fafc;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

.year-heading:first-child {
  border-top: 0;
}

.news-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 96px 74px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  transition: background var(--speed);
}

.news-item:hover {
  background: #f8fbfd;
}

.news-item time {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.news-cat {
  display: inline-flex;
  justify-content: center;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: #e7f1f7;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.news-item h3 {
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.news-item h3 a {
  color: var(--text);
}

.news-item h3 a:hover {
  color: var(--blue);
}

.article-detail {
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 24px 70px;
}

.article-header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.38;
  letter-spacing: 0;
}

.article-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.article-body {
  margin-top: 28px;
  color: #2d3b4d;
  font-size: 16px;
  line-height: 1.92;
}

.article-body p {
  margin: 16px 0;
}

.article-body .no-content {
  color: var(--muted);
  font-style: italic;
}

.article-footer-link {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 720px) {
  .news-hero {
    padding: 44px 18px 34px;
  }

  .news-hero h1,
  .article-header h1 {
    font-size: 26px;
  }

  .news-list-section {
    padding: 28px 18px 48px;
  }

  .year-heading {
    padding: 16px 18px 8px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 18px;
  }

  .news-cat {
    width: fit-content;
  }

  .article-detail {
    padding: 42px 18px 54px;
  }
}
