body.news-page {
  font-family: "Inter", sans-serif;
  color: #e5e7eb;
  margin: 0;
  min-height: 100vh;
  background: #111827;
  overflow-x: hidden;
}

#dynamic-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 20px;
}

.news-header a {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.news-header a:hover {
  text-decoration: underline;
}

.news-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}

.news-card {
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(17, 24, 39, 0.35);
}

.news-title {
  margin: 0 0 20px;
  line-height: 1.2;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  color: #fde68a;
}

.news-gallery {
  display: grid;
  gap: 14px;
}

.news-photo {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.news-photo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.38);
}

.news-footer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(229, 231, 235, 0.85);
}
