* {
  margin: 0;
  padding: 0;
}

.notable-alumni-section {
  padding: 60px 70px;
  text-align: center;
  background: url("../images/Rectangle\ 525.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* TITLE */
.section-title {
  text-align: left;
  font-family: Merriweather;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 1%;
  color: #1c3f94; /* BLUE */
  margin-bottom: 15px;
}

.section-title span {
  color: #ee1b22; /* RED */
}

/* GRID */
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* CARD */
.alumni-card {
  text-align: center;
  padding: 15px;
}

/* IMAGE */
.alumni-img {
  position: relative;

  /* height: 260px; */
  overflow: hidden;
}

.alumni-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* CORNERS */
.corner {
  position: absolute;
  width: 35px;
  height: 35px;
  z-index: 10;
}

/* TEXT */
.alumni-card h3 {
  margin-top: 15px;

  color: #1c3f94;

  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;

  letter-spacing: 1%;
  /* BLUE */
}

.alumni-card .role {
  color: #ee1b22; /* RED */

  margin: 4px 0 8px;

  font-family: Poppins;
  font-weight: 400;
  font-style: Italic;
  font-size: 20px;

  letter-spacing: 1%;
}

.alumni-card .desc {
  line-height: 1.4;

  color: #1c3f94;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;

  letter-spacing: 1%;
  text-align: center;
}

/* ============================= */
/*        RESPONSIVE FIXES       */
/* ============================= */

/* Large Tablets */
@media (max-width: 1200px) {
  .notable-alumni-section {
    padding: 50px 50px;
  }

  .section-title {
    font-size: 32px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .alumni-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .alumni-img {
    /* height: 240px; */
  }

  .section-title {
    font-size: 30px;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .notable-alumni-section {
    padding: 40px 30px;
  }

  .section-title {
    font-size: 28px;
  }

  .alumni-img {
    /* height: 220px; */
  }

  .alumni-card h3 {
    font-size: 18px;
  }

  .alumni-card .role {
    font-size: 14px;
  }

  .alumni-card .desc {
    font-size: 13px;
  }
}

/* Mobile Portrait (Single Column) */
@media (max-width: 600px) {
  .alumni-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .notable-alumni-section {
    padding: 35px 20px;
  }

  .section-title {
    font-size: 24px;
    text-align: center;
  }

  .alumni-img {
    /* height: 200px; */
  }

  .corner {
    width: 28px;
    height: 28px;
  }
}

/* Extra Small Devices */
@media (max-width: 400px) {
  .alumni-img {
    /* height: 180px; */
  }

  .section-title {
    font-size: 22px;
  }

  .alumni-card h3 {
    font-size: 16px;
  }

  .alumni-card .desc {
    font-size: 12px;
  }
}
