/* ==========================================================================
   THEME-COLLEGE-GRID  —  Featured / Eligible colleges
   ========================================================================== */

.theme-college-grid {
  padding: 100px 0;
  background: #fff;
}

.theme-college-grid--yellow {
  background: var(--highlight-light);
}

.theme-college-grid .container {
  max-width: var(--container);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.theme-college-grid__title {
  font-family: var(--serif);
  font-size: var(--h1);
  font-weight: 600;
  line-height: 1.26;
  letter-spacing: -0.01em;
  color: var(--brand);
  margin: 0 0 12px;
  text-align: center;
}

.theme-college-grid__subtitle {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--brand);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.theme-college-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 60px 0 40px;
}

.theme-college-grid__card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.theme-college-grid__img {
  overflow: hidden;
  margin-bottom: 12px;
  clip-path: polygon(100% 0, 100% 80%, 90% 100%, 0 100%, 0 0);
}

.theme-college-grid__img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.theme-college-grid__card a:hover .theme-college-grid__img img {
  transform: scale(1.04);
}

.theme-college-grid__name {
  margin: 0;
  color: var(--MSSF-New-Site-Dark-Green, #004F42);

/* MSSF H6 */
  font-size: 23px;
  font-style: normal;
  font-weight: 550;
  line-height: 150%; /* 34.5px */
}

.theme-college-grid__cta {
  display: flex;
  justify-content: center;
}

.theme-college-grid__cta .btn-layout.green-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans-condensed);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand);
  border: 2px solid var(--brand);
  background: transparent;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background .2s, color .2s;
}

.theme-college-grid__cta .btn-layout.green-outline:hover {
  background: var(--brand);
  color: #fff;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {
  .theme-college-grid__title {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .theme-college-grid {
    padding: 48px 0;
  }

  .theme-college-grid__title {
    font-size: 36px;
  }

  .theme-college-grid__subtitle {
    font-size: 18px;
  }

  .theme-college-grid__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .theme-college-grid__img img {
    height: 180px;
  }
  .theme-college-grid__name { font-size: 20px }
}

@media (max-width: 520px) {
  .theme-college-grid {
    padding: 36px 0;
  }

  .theme-college-grid__title {
    font-size: 28px;
  }

  .theme-college-grid__grid {
    grid-template-columns: 1fr;
  }

  .theme-college-grid__cta .btn-layout.green-outline {
    font-size: 16px;
    padding: 12px 24px;
  }
}
