/************************
 * Cards -- Image      
 * *********************/
.image-card-cardset {
  display: flex;
  flex-flow: row wrap;
  gap: 3rem 2rem;
  justify-content: center;
}

.image-card-cardset > * {
  flex: 1 1 340px;
}

.image-card {
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

.image-card__image img {
  width: 100%;
  display: block;
}

.image-card__content {
  background: white;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.image-card__content.--with-captions {
	padding-top: 1.5rem;
}

.image-card__captions {
	text-transform: uppercase;
	color: #4B4F55;
	font-size: 0.875rem;
}

.image-card__cta {
  font-weight: bold;
}

/************************
 * END Cards -- Image      
 * *********************/

/************************
 * Cards -- Area of Study      
 * *********************/
.aos-grid-3-col {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.aos-card {
  background-color: #002f87;
  color: white;
  max-width: 700px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.aos-card__title {
  color: white;
  font-family: "PT Sans Narrow", "PT Sans", "Roboto", sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.aos-card:hover {
  background-color: hwb(219 0% 54%);
}
.aos-card:hover .arrow-link::before {
  left: 0.5rem;
}
.aos-card:hover .arrow-link--white {
  color: #f0ea9c;
}

.aos-card__categories {
  color: white;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.aos-card__details {
  border-top: 1px solid rgba(109, 197, 232, 0.5);
  padding-top: 1rem;
  margin-top: 3rem;
}

.aos-card__chips {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
}

.aos-chip {
  color: #303538;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  background-color: #f78d2d;
  padding: 0.25em 1em;
  border-radius: 28px;
}

/***** Degree Type Legend ******/
.degree-type-legend {
  background: white;
  border: 1px solid #4b4f55;
  padding: 2rem;
}

.degree-type {
  margin-bottom: 0;
}
.degree-type p {
  line-height: 1.4;
  margin-bottom: 0;
}

.degree-type__title > b {
  font-size: 1rem;
}

.degree-type__description {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

@media screen and (min-width: 600px) {
  .aos-grid-3-col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .aos-card {
    min-height: 250px;
  }

  .aos-card__title {
    font-size: 1.75rem;
  }

  .degree-type__title > b {
    font-size: 1.3125rem;
  }
}
/************************
 * END Cards -- Area of Study      
 * *********************/