/* ================================================================
   SINGLE-NEWS.CSS — Страница новости
   ================================================================ */

.news-single-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--clr-text);
  margin-bottom: 40px;
}
.news-single-content p  { font-size: 16px; margin-bottom: 14px; }
.news-single-content h2 { margin: 28px 0 12px; }
.news-single-content img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

/* Галерея */
.news-single-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.news-gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f0f4f8;
}
.news-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.news-gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 575px) {
  .news-single-gallery { grid-template-columns: 1fr; }
}
