.news-feed {
  margin-top: 28px;
}

.news-feed-empty {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.news-feed-link {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  transition: all 0.2s ease;
  margin-top: 24px;
}

.news-feed-link:hover {
  background: #ffffff;
  color: #000000;
}

.news-feed-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.news-feed-card {
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.news-feed-card:hover {
  transform: scale(1.02);
}

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

@media (max-width: 768px) {
  .news-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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