/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: "Segoe UI", sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.7;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ===== HEADINGS ===== */
h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
  color: #2f6f3e;
  /* text-transform: uppercase; */
}

/* ===== ABOUT TEXT ===== */
.about-text {
  /* max-width: 900px; */
  margin: auto;
  text-align: justify;
  line-height: 1.8;
  font-size: 15px;
}

/* ===== THEMES SECTION ===== */
#whats-new {
  /* background: #f4f6f5; */
  background-color: #f8f8f8;
  /* padding: 60px 0; */
}

/* ===== GRID ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ===== CARD ===== */
.news-item {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* .news-item:hover {
  transform: translateY(-6px);
} */

/* ===== IMAGE ===== */
.news-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
}

/* ===== TAG ===== */
.tag {
  display: inline-block;
  margin: 10px 0 5px;
}

.tag a {
  color: #0078c3;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* ===== TITLE ===== */
.news-item h3 {
  font-size: 15px;
  line-height: 1.5;
  color: #111;
}

.sdg-alignment-image {
  display: flex;
  justify-content: center;
  /* align-items: center;  */
  /* margin-top: 30px; */
  padding: 30px 0px;
}

.sdg-alignment-image img {
  width: 100%; /* responsive */
  /* height: 500px; */
  /* height: auto; */
  /* max-height: 450px; */
  object-fit: cover;
  border-radius: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}
