/* === Page News === */
.news-section {
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.news-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 1rem;
}

.news-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.news-card {
  padding: 2rem;
  text-align: left;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 0.5rem;
}

.news-date {
  font-size: 0.9rem;
  opacity: 0.8;
  color: #4F9CF9;
}

.news-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.news-card p {
  line-height: 1.6;
  font-size: 1rem;
  opacity: 0.95;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .news-wrapper {
    padding: 0 1rem;
  }
  .news-card {
    padding: 1.5rem;
  }
}
