.news-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.nav-btn {
  font-size: 20px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.nav-btn:hover {
  transform: scale(1.1);
}

/* Мобільна версія */
@media (max-width: 768px) {
  .news-nav {
    justify-content: center;
  }
}
