.featured-programs {}

.featured-programs .featured-program {
  display: flex;
  gap: 25px;
}

.featured-programs .featured-program__left {
  width: 40%;
}

.featured-programs .featured-program__right {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-programs .featured-program .active {
  opacity: 1;
  z-index: 3;
}

.featured-programs .featured-program__image {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-programs .featured-program__content--wrapper {
  /* position: relative; */
  /* height: 50%; */
  display: grid;
  margin-bottom: 1rem;
}

.featured-programs .featured-program__content {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  position: relative;
  z-index: 2;
  opacity: 0;
  grid-area: 1 / 1;
  transition: opacity 0.3s ease;
}

.featured-programs .featured-program__content--title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.featured-programs .featured-program__content--title .icon {
  color: var(--blue-dk);
  font-size: 35px;
  filter: drop-shadow(1px 1px 4px #00000021);
}

.featured-programs .featured-program__content--title .h3 {
  font-weight: 700;
  color: var(--blue-md);
}

.featured-programs .featured-program__content--content {
  margin-left: 45px;
}

.featured-programs .featured-program__image--wrapper--outter {
  display: inline-block;
  padding: 25px;
  background: var(--blue-gradient);
  border-radius: 20px;
  box-shadow: 3px 3px 10px #00000029;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}

.featured-programs .featured-program__image--wrapper--inner {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  height: 100%;
}

.featured-programs .featured-program__select--wrapper {
  display: flex;
  gap: 15px;
}

.featured-programs .featured-program__select.active {
  display: none;
}

.featured-programs .featured-program__select {
  flex: 1;
  border-radius: 15px;
  border: none;
  background: none;
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 3px 3px 10px #00000029;
  display: inline-block;
  outline: 6px solid transparent;
  outline-offset: -6px;
  transition: outline 0.3s ease-out;
}

.featured-programs .featured-program__select:hover {
  outline: 6px solid var(--blue-md);
}

.featured-programs button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  background: transparent linear-gradient(0deg, #000000 0%, #00000000 33%) 0% 0% no-repeat padding-box;
  z-index: -1;
}

.featured-programs .featured-program__select--title {
  position: absolute;
  z-index: 10;
  bottom: 15px;
  left: 14px;
  padding-right: 12px;
  color: var(--white);
}

@media (max-width: 1200px) {
  .featured-programs .featured-program__content--title .h3 {
    margin-bottom: 0;
  }

  .featured-programs .featured-program__content--content {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .featured-programs .featured-program {
    flex-direction: column;
    align-items: center;
  }

  .featured-programs .featured-program__left {
    width: 100%;
    max-width: 450px;
  }

  .featured-programs .featured-program__right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .featured-programs .featured-program__content--title {
    gap: 0;
    margin-left: -10px;
  }

  .featured-programs .featured-program__content--content {
    margin: 0 24px;
  }

  .featured-programs .featured-program__select--wrapper {
    margin: 1rem 24px;
    flex-wrap: wrap;
  }

  .featured-programs .featured-program__select {
    flex: unset;
    aspect-ratio: unset;
    background: var(--purple-dk);
    padding: 10px 18px;
    border-radius: 30px;
    width: calc(50% - 7.5px);
  }

  .featured-programs .featured-program__content--wrapper {
    margin-bottom: 0rem;
  }

  .featured-programs button::after {
    background: unset;
  }

  .featured-programs .featured-program__select--title {
    position: relative;
    text-align: center;
    bottom: unset;
    left: unset;
    margin: unset;
    padding: unset;
  }

  .featured-programs .featured-program__select img {
    display: none;
  }
}