/* =======================
   NEWS PAGE
   ======================= */

/* HERO */
.page-hero.news-hero {
  background: url('../images/banners/news_banner.jpg') center/cover no-repeat;
}

/* MAIN SECTION */
.news-page {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.news-page header {
  max-width: 800px;
  margin: 0 auto 40px;
}

.news-page header h2 {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 10px;
  font-weight: 600;
}

.news-page header p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

/* CARD */
.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.news-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background-color: #eee;
}

.news-card h3 {
  color: var(--green);
  margin: 14px 15px 6px;
  font-size: 1.1rem;
  font-weight: 600;
}

.news-card p {
  margin: 0 15px 10px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.news-date {
  display: block;
  margin: 0 15px 15px;
  font-size: 0.9rem;
  color: #888;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .news-page header h2 { font-size: 1.7rem; }
  .news-page header p { font-size: 0.95rem; }
  .news-card img { height: 200px; }
}
