/* =========================
   LATEST NEWS
========================= */
.latest-news {
  padding: 60px 20px;
  background: #f4f6f8;
}

.news-header {
  text-align: center;
  margin-bottom: 40px;
}

.news-header h2 {
  font-size: 28px;
  color: #004080;
}

.news-header p {
  color: #555;
  margin-top: 8px;
}

/* News Grid */
.news-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* News Card */
.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
}

/* Image */
.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Video */
.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Content */
.news-content {
  padding: 20px;
}

.news-date {
  font-size: 13px;
  color: #888;
}

.news-content h3 {
  font-size: 18px;
  color: #004080;
  margin: 8px 0;
}

.news-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Buttons */
.news-btn {
  display: inline-block;
  margin-top: 12px;
  color: #fff;
  background: #004080;
  padding: 8px 18px;
  border-radius: 5px;
  font-size: 14px;
  transition: 0.3s;
}

.news-btn:hover {
  background: #002f5f;
}

/* Footer Button */
.news-footer {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  background: #ffcc00;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.view-all-btn:hover {
  background: #e6b800;
}

/* Responsive */
@media (max-width: 768px) {
  .news-header h2 {
    font-size: 22px;
  }
}
