.news-page {
  padding: 48px 0 80px;
}

.news-page__header {
  margin-bottom: 40px;
}

.news-page__heading {
  padding-bottom: 10px;
}

.news-page__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-page__empty {
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

.news-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: 16px;
  color: var(--color-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}

.news-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.news-card__img-wrap {
  flex: 0 0 200px;
  width: 200px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
}

.news-card__img-wrap--empty {
  display: none;
}

.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.news-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-md);
  line-height: var(--leading-tight);
  color: var(--color-secondary);
  transition: color 0.15s ease;
}

.news-card:hover .news-card__title {
  color: var(--color-primary);
}

.news-card__excerpt {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--color-text-muted);
  margin: 0;
}

.news-card__date {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: auto;
}

@media (max-width: 600px) {
  .news-card {
    flex-direction: column;
  }

  .news-card__img-wrap {
    flex: none;
    width: 100%;
    height: 180px;
  }

  .news-page__header {
    flex-direction: column;
  }
}
