/* ============================= */
/*        ALUMNI NEWS SECTION    */
/* ============================= */

.alumni-news-section {
  padding: 60px 70px;
    background: url("../images/Rectangle\ 319\ \(5\).png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.alumni-news-section h2 {
  font-family: Merriweather;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  letter-spacing: 1%;
  margin-bottom: 30px;
  color: #1C3F94;     /* BLUE */
}

.alumni-news-section h2 span {
  color: #EE1B22;     /* RED */
}

.alumni-news-container {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.alumni-news-card {
  position: relative;
  width: 305px;
  overflow: hidden;
  background: #fff;   /* white card background stays same */
}

/* Card Image */
.alumni-news-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* If you want a label (optional) */
.news-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1C3F94;   /* BLUE */
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: Merriweather;
  font-size: 16px;
  font-weight: 700;
}

/* ---------------------- */
/* RESPONSIVE STYLES      */
/* ---------------------- */

/* Tablet screens */
@media (max-width: 1200px) {
  .alumni-news-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .alumni-news-card {
    width: 45%;   /* 2 cards per row */
  }
}

/* Large mobile */
@media (max-width: 768px) {
  .alumni-news-section {
    padding: 40px 30px;
  }

  .alumni-news-card {
    width: 100%;  
    max-width: 420px;
  }

  .alumni-news-container {
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .alumni-news-section h2 {
    font-size: 28px;
    text-align: center;
  }

  .news-label {
    font-size: 14px;
    padding: 5px 12px;
  }
}
