/* PAGE BASE */
.news-page {
  background-color: #ffffff;
}

/* HERO */
.news-hero {
  padding: 90px 0 60px;
  background:
    linear-gradient(rgba(255,255,255,0.96), rgba(255,255,255,0.96)),
    url("../images/cllabs_logo.png") center / cover no-repeat;
  text-align: center;
}

.news-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0d4aa8;
}

.news-subtitle {
  max-width: 720px;
  margin: 15px auto 0;
  color: #555;
}

/* NEWS SECTION */
.news-section {
  padding: 70px 0;
  background-color: #f8fbff;
}

/* CARD */
.news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-content {
  padding: 22px 20px 26px;
}

.news-date {
  font-size: 0.85rem;
  color: #777;
  display: inline-block;
  margin-bottom: 6px;
}

.news-content h5 {
  font-weight: 600;
  color: #0d4aa8;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 14px;
}

.read-more {
  color: #2e9b45;
  font-weight: 500;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .news-hero {
    padding: 70px 15px 45px;
  }

  .news-title {
    font-size: 2rem;
  }

  .news-section {
    padding: 50px 0;
  }

  .news-card img {
    height: 190px;
  }
}
