/* HERO  */
/* #hero {
  height: calc(100vh - 60px);
  background: url('/wp-content/uploads/2025/10/outdoor-experiences.jpg');
} */

#hero .ast-container {
  height: 100%;
}

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 4rem;
}

.hero-content-wrapper h1 {
  font-size: 3rem;
}

.hero-content-wrapper h1 span {
  color: var(--color_pink);
}

.hero-subtitle {
  font-size: 2rem;
  color: var(--color_pink);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-content-wrapper p {
  text-align: center;
  font-size: 1.2rem;
}

/* / HERO  */

/* AFFILIATIONS  */
#affiliations {
  background-color: var(--color_black_800);
}

.affiliation-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  transition: var(--common_transition);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--light_border_color);
  height: 100%;
  background-color: var(--color_black_600);
}

.affiliation-card img {
  width: 60%;
}

.affiliation-card .affiliation-title {
  text-align: center;
  color: var(--color_white_opacity_80);
  font-weight: 600;
}

#affiliations .ast-full-width>p {
  color: var(--color_white_opacity_65);
  font-size: 1.2rem;
  text-align: center;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}

@media screen and (max-width: 575px) {
  .affiliation-card {
    padding: 20px 10px;
    gap: 1.3rem;
  }
}

/* / AFFILIATIONS  */

/* DEGREE PATHWAY */
#degree_pathway {
  background-color: var(--color_black_800);
}

#degree_pathway .section-primary-title-wrapper p {
  text-align: center;
  max-width: 1000px;
}

.tab-toggler {
  background-color: var(--color_black_600);
  padding: 8px;
  border-radius: 40px;
  width: max-content;
  margin: 0 auto 2rem;
}

.tab-toggler button {
  color: var(--color_white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  background-color: transparent;
}

.tab-toggler button.active {
  background-image: var(--bg-gradient);
}

.pathway-content-wrapper {
  background-color: var(--color_black);
  padding: 2rem;
  display: flex;
  /* border: 1px solid var(--light_border_color); */
  border-radius: var(--radius);
  gap: 2rem;
}

.pathway-content {
  padding: 1.4rem;
  border-radius: var(--radius);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color_white_opacity_80);
  border: 1px solid var(--color_pink);
  background-color: var(--color_black_600);
  box-shadow: var(--pink_shadow);
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.pathway-content small {
  font-size: .9rem;
  font-weight: normal;
}

.degree-content-wrapper {
  background-color: var(--color_black);
  padding: 2rem;
  border-radius: var(--radius);
}

.degree-content-wrapper h3 {
  font-size: 1.5rem;
  color: var(--color_white_opacity_80);
  font-weight: 600;
}

.degree-content-wrapper p {
  color: var(--color_white_opacity_65);
}

.degree-content-wrapper ul li {
  color: var(--color_white_opacity_65);
}

.pathway-wrapper {
  margin-bottom: 2rem;
}

.pathway-notice {
  color: var(--color_white_opacity_80);
  font-style: italic;
}

.degree-pathway:not(.active) {
  display: none;
}

@media screen and (max-width: 575px) {
  .pathway-content-wrapper {
    padding: 1rem;
    flex-direction: column;
  }

  .pathway-content {
    font-size: 1rem;
  }

  .degree-content-wrapper {
    padding: 1.3rem;
  }

  .degree-content-wrapper h3 {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 400px) {
  .tab-toggler {
    padding: 5px;
  }

  .tab-toggler button {
    font-size: 13px;
  }
}

/* / DEGREE PATHWAY */

/* KEY FEATURES */
#key_features {
  background-color: var(--color_light_brown);
}

.key-feature-card {
  padding: 1.2rem 1.2rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--color_pink);
  box-shadow: var(--pink_shadow);
  height: 100%;
  background-color: var(--color_white);
}

.key-feature-card figure {
  position: relative;
  isolation: isolate;
  cursor: pointer;
}

.key-feature-card figure .expand-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--common_transition);
}

.key-feature-card figure:hover img {
  filter: brightness(0.7);
}

.key-feature-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  transition: var(--common_transition);
}

.key-feature-card figure:hover .expand-icon svg path {
  fill: var(--color_white);
}

.expand-icon svg {
  width: 40px;
  height: 40px;
}

.key-feature-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.key-feature-card p {
  margin-bottom: 0;
}

.key-feature-card ul {
  margin-bottom: 0;
}

#key_feature_modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#key_feature_modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: unset;
  z-index: 10;
}

.key-feature-modal-card {
  width: 50rem;
  max-width: 94%;
  height: 34rem;
  padding: 1.3rem;
  border-radius: var(--radius);
  position: relative;
  background-color: var(--color_white);
}

.key-feature-modal-card>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
}



@media screen and (max-width: 575px) {
  .key-feature-card img {
    height: 150px;
  }

  #key_features .mobile-simple-carousel {
    padding-bottom: 4px;
  }

  .key-feature-modal-card {
    height: 18rem
  }
}

/* / KEY FEATURES */

/* TRADITIONAL BUSINESS */
#traditional_business {
  background-color: var(--color_black_800);
}

.traditional-business p {
  color: var(--color_white_opacity_80);
}

.traditional-business ul>li {
  color: var(--color_white_opacity_80);
}

/* / TRADITIONAL BUSINESS */

/* IDEAL BUSINESS  */
#ideal_business {
  background-color: var(--color_black_800);
}

#ideal_business p,
#ideal_business ul li {
  color: var(--color_white_opacity_80);
}

#ideal_business img {
  height: 20rem;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

@media screen and (max-width: 575px) {
  #ideal_business img {
    height: 18rem;
  }
}

/* / IDEAL BUSINESS  */