.news-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  color: inherit;
  display: flex;
  flex-direction: column;
}

.news-card[hidden] {
  display: none;
}

.news-thumb {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
}

.news-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.news-body h3 {
  min-height: 64px;
}

.news-body p {
  flex: 1;
}

.news-meta {
  color: var(--gray-500);
  font-size: var(--text-sm);
  margin-bottom: 14px;
}

.read-more {
  color: var(--gold-500);
  font-size: var(--text-sm);
  font-weight: 900;
}

.empty-news {
  color: var(--gray-500);
  padding: 32px 0;
  text-align: center;
}

.report-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.report-article {
  padding: 34px;
}

.report-article h2 {
  color: var(--gray-900);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.35;
  margin: 18px 0 16px;
}

.report-article h3 {
  color: var(--gray-900);
  margin: 30px 0 12px;
}

.report-article p {
  color: var(--gray-700);
  line-height: 1.9;
}

.report-article img {
  border-radius: var(--radius-md);
  margin: 26px 0 4px;
  width: 100%;
}

.report-list {
  color: var(--gray-700);
  display: grid;
  gap: 10px;
  line-height: 1.8;
  margin: 0;
  padding-left: 20px;
}

.report-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.report-side {
  padding: 26px;
  position: sticky;
  top: 108px;
}

.report-side h3 {
  color: var(--gray-900);
  margin-bottom: 18px;
}

.report-side dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.report-side dt {
  color: var(--gray-500);
  font-size: var(--text-sm);
  font-weight: 800;
}

.report-side dd {
  color: var(--gray-900);
  margin: -8px 0 4px;
}

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

  .report-side {
    position: static;
  }
}
