/* ============================================
   PROGRAM HIGHLIGHTS
   ============================================ */

.program-highlights {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.program-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.program-highlight-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 517px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
}

.highlight-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 296px;
  background: linear-gradient(to bottom, rgba(0, 76, 69, 0) 0%, rgba(0, 76, 70, 1) 100%);
  z-index: 1;
}

.highlight-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.highlight-title {
  font-size: var(--header-medium);
  line-height: var(--header-medium-lh);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  width:50%;
}

.highlight-badges {
  display: flex;
  gap: var(--space-sm);
}

.highlight-badges ul  {
  margin:0;
  padding:0;
  list-style-type: none;
  display:flex;
  flex-direction: row;;
  gap: 1em;
}

.highlight-badges ul li {
  background-color: rgba(255, 255, 255, 0.16);
  padding: 8px;
  border-radius: 4px;
  font-size: var(--body-small);
  line-height: var(--body-small-lh);
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
}

/* ============================================
   TABLET (max-width: 1024px)
   ============================================ */

@media (max-width: 1024px) {
  .program-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MOBILE (max-width: 767px)
   ============================================ */

@media (max-width: 767px) {
  .program-highlights-grid {
    grid-template-columns: 1fr;
  }

  .program-highlight-card {
    min-height: 335px;
    padding: var(--space-sm);
  }

  .highlight-content {
    gap: var(--space-sm);
  }

  .highlight-title {
    width:50%;
  }
}

