.program-announcements {
  position: relative;
  padding: 60px 0 135px;
  background: #f1f2f2;
}

.program-announcements .main-title {
  margin-bottom: 38px;
}

.proan-grid {
  --proan-items: 4;
  --proan-gap: 30px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--proan-items), minmax(0, 1fr));
  grid-gap: var(--proan-gap);
}

.proan-card {
  --proan-card-fc-c1: #65a955;
  --proan-card-fc-c2: #575757;
  --proan-card-bg: #fff;
  --proan-card-content-padding: 24px 30px 30px;
  position: relative;
  background: var(--proan-card-bg);
  height: 100%;
  transition: all 0.5s ease;
  min-height: 339px;
  cursor: pointer;
}

.proan-card > a {
  display: inline-block;
  width: 100%;
}

.proan-card:hover {
  transform: scale(1.02);
}

.proan-card-img {
  overflow: hidden;
  width: 100%;
}

.proan-card-img img {
  width: 100%;
  object-fit: cover;
  height: auto;
}

.proan-card-content {
  min-height: 100px;
  padding: var(--proan-card-content-padding);
  height: 100%;
}

.proan-card-highlight {
  /* font-size: 18px;
  font-weight: 500; */
  font-size: 14px;
  font-weight: 500;
  color: var(--proan-card-fc-c1);
  margin-bottom: 6px;
}

.proan-card-desc {
  /* font-size: 16px;
  line-height: 22px;
  font-weight: 400; */
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: var(--proan-card-fc-c2);
}

.proan-card-strip {
  display: inline-block;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 0;
}
