 /* ====== Base Styles ====== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Manrope:wght@400;500;600&display=swap');

* {
   
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}.news-updates {
  background-color: #f9fafb;
  padding: 80px 5%;
  text-align: center;
}

.mcdp-section-title {
  font-size: 2rem;
  color: #003366;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.mcdp-underline {
  display: block;
  width: 90px;
  height: 4px;
  background-color: #003366;
  margin: 10px auto 0;
  border-radius: 2px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 360px; /* optional max width */
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.news-content {
  padding: 22px;
  text-align: left;
}

.news-content h3 {
  font-size: 1.15rem;
  color: #003366;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more {
  display: inline-block;
  color: #003366;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.read-more:hover {
  color: #003366;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .news-card img {
    height: 180px;
  }

  .news-content h3 {
    font-size: 1rem;
  }

  .news-content p {
    font-size: 0.9rem;
  }
}
.lang-switch {
  font-weight: 600;
  color: #003366;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  margin-right: 30px;
}

.lang-switch:hover {
  color: #003366;
  text-shadow: 0 0 8px rgba(41, 72, 105, 0.5);
}
