@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1F2937;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 5rem;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3, h4 {
  margin: 0 0 0.75em;
  line-height: 1.2;
  color: #1F2937;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
}

h3 {
  font-size: clamp(1.15rem, 0.8vw + 1rem, 1.4rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 0.75rem 1.25rem;
  background: #FFFFFF;
  color: #0A5A66;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-120%);
}
.skip-link:focus-visible {
  transform: translateY(0);
}

main:focus {
  outline: none;
}

p {
  margin: 0 0 1rem;
}

a {
  color: #0D7A8A;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms ease;
}
a:hover {
  color: #0A5A66;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

img.avatar {
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: 3rem;
}
@media (min-width: 768px) {
  .section {
    padding-block: 5rem;
  }
}

.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding-block: 0.875rem;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1F2937;
  text-decoration: none;
}
.site-header__brand:hover {
  color: #0D7A8A;
}

.site-header__logo {
  height: 2.25rem;
  width: auto;
  display: block;
}

.site-header__toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  transition: background 200ms ease;
}
.site-header__toggle:hover {
  background: #E6F4F6;
}
.site-header__toggle:focus-visible {
  outline: 2px solid #0D7A8A;
  outline-offset: 2px;
}
@media (min-width: 768px) {
  .site-header__toggle {
    display: none;
  }
}

.site-header__toggle-icon,
.site-header__toggle-icon::before,
.site-header__toggle-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #1F2937;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease, background 200ms ease;
}

.site-header__toggle-icon {
  position: relative;
}
.site-header__toggle-icon::before, .site-header__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.site-header__toggle-icon::before {
  top: -7px;
}
.site-header__toggle-icon::after {
  top: 7px;
}

.site-header.is-nav-open .site-header__toggle-icon {
  background: transparent;
}
.site-header.is-nav-open .site-header__toggle-icon::before {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-nav-open .site-header__toggle-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  width: 100%;
  display: none;
  flex-direction: column;
  padding-top: 0.75rem;
  gap: 0.25rem;
  border-top: 1px solid #E5E7EB;
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  .site-nav {
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    padding-top: 0;
    border-top: 0;
    margin-top: 0;
  }
}

.site-header.is-nav-open .site-nav {
  display: flex;
}

.site-nav__link {
  color: #1F2937;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.625rem 0.5rem;
  border-radius: 6px;
  border-bottom: 2px solid transparent;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}
.site-nav__link:hover {
  color: #0D7A8A;
  background: #E6F4F6;
}
.site-nav__link.is-active {
  color: #0D7A8A;
  border-bottom-color: #0D7A8A;
  text-decoration: none;
}
@media (min-width: 768px) {
  .site-nav__link {
    padding: 0.25rem 0;
    border-radius: 0;
  }
  .site-nav__link:hover {
    background: transparent;
  }
}

.site-nav__item--dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .site-nav__item--dropdown {
    display: block;
  }
}

.site-nav__dropdown-toggle {
  font-family: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .site-nav__dropdown-toggle {
    width: auto;
  }
}

.site-nav__caret {
  width: 0.45em;
  height: 0.45em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 1px;
  transform: rotate(45deg);
  margin-top: -0.18em;
  transition: transform 200ms ease;
}

.site-nav__item--dropdown.is-open .site-nav__caret {
  transform: rotate(225deg);
  margin-top: 0.12em;
}

.site-nav__dropdown {
  display: none;
  flex-direction: column;
}

.site-nav__item--dropdown.is-open .site-nav__dropdown {
  display: flex;
}

.site-nav__dropdown-link {
  color: #1F2937;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 200ms ease, background 200ms ease;
}
.site-nav__dropdown-link:hover {
  color: #0D7A8A;
  background: #E6F4F6;
}
.site-nav__dropdown-link.is-active {
  color: #0D7A8A;
  font-weight: 600;
}

.site-nav .site-nav__dropdown-link {
  padding-left: 1.5rem;
}

@media (min-width: 768px) {
  .site-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 14rem;
    padding: 0.5rem;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    z-index: 60;
  }
  .site-nav__item--dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.75rem;
  }
  .site-nav__item--dropdown:hover .site-nav__dropdown,
  .site-nav__item--dropdown:focus-within .site-nav__dropdown,
  .site-nav__item--dropdown.is-open .site-nav__dropdown {
    display: flex;
  }
  .site-nav__item--dropdown:hover .site-nav__caret,
  .site-nav__item--dropdown:focus-within .site-nav__caret {
    transform: rotate(225deg);
    margin-top: 0.12em;
  }
  .site-nav .site-nav__dropdown-link {
    padding-left: 0.75rem;
  }
}
.site-footer {
  background: #0A5A66;
  color: #FFFFFF;
  padding-block: 3rem 1.5rem;
  margin-top: 4rem;
}

.site-footer a {
  color: #FFFFFF;
  text-decoration: none;
}
.site-footer a:hover {
  color: #5EB8C5;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-footer__col h4 {
  color: #FFFFFF;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__col ul li {
  margin-bottom: 0.5rem;
}

.site-footer__legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  opacity: 0.85;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.site-footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.social-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}
.social-icon:hover {
  background: #5EB8C5;
  color: #0A5A66;
  transform: translateY(-1px);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  line-height: 1.2;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn--cta {
  background: #FBBF24;
  color: #1F2937;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.btn--cta:hover {
  background: #F59E0B;
  color: #1F2937;
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: #0D7A8A;
  border: 2px solid #0D7A8A;
  padding-block: calc(0.75rem - 2px);
  padding-inline: calc(1.5rem - 2px);
}
.btn--outline:hover {
  background: #0D7A8A;
  color: #FFFFFF;
  text-decoration: none;
}

.hero {
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 95% 5%, rgba(94, 184, 197, 0.95), transparent 55%), radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255, 255, 255, 0.22), transparent 60%), linear-gradient(135deg, #0A5A66 0%, #0D7A8A 100%);
  color: #FFFFFF;
  padding-block: 4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    padding-block-start: 3rem;
    padding-block-end: 5rem;
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

.hero::before {
  top: -15%;
  right: -8%;
  width: 45%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle, rgba(94, 184, 197, 0.55), transparent 65%);
}

.hero::after {
  bottom: -40%;
  left: -10%;
  width: 60%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle, rgba(94, 184, 197, 0.5), transparent 65%);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__inner {
  display: block;
}

.hero__content {
  display: flow-root;
}

.hero__content h1 {
  color: #FFFFFF;
}

.hero__content .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.hero__photo-wrap {
  display: contents;
}

.hero__photo {
  display: none;
}
@media (min-width: 768px) {
  .hero__photo {
    display: block;
    float: right;
    width: 32rem;
    height: auto;
    margin-bottom: -5rem;
    shape-outside: var(--hero-shape);
    shape-image-threshold: 0.5;
    shape-margin: 1rem;
    filter: drop-shadow(0 6px 28px rgba(6, 46, 52, 0.45));
  }
}

.course-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * (3rem + 2rem));
}
@media (min-width: 768px) {
  .course-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: calc(-1 * (5rem + 2rem));
  }
}

.course-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.course-card--tinted {
  background: #CFE9EE;
}
.course-card h3 {
  color: #0A5A66;
  margin-bottom: 0.5rem;
}
.course-card p {
  color: #1F2937;
  margin: 0;
}
.course-card .course-card__hook {
  font-weight: 600;
}
.course-card .course-card__cta {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.course-card .course-card__tag {
  font-size: clamp(1.725rem, 1.2vw + 1.5rem, 2.1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0A5A66;
}

.about {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 768px) {
  .about {
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
  }
}

.about__photo {
  display: block;
  width: min(100%, 240px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  background: #E6F4F6;
  border: 8px solid #E6F4F6;
  margin-inline: auto;
}

.reviews-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 1.5rem;
}
.review-card blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  color: #1F2937;
}
.review-card cite {
  font-style: normal;
  font-weight: 600;
  color: #0D7A8A;
}
.review-card .review-card__course {
  font-weight: 400;
  color: #6B7280;
}

.reviews-carousel {
  --per-view: 1;
  --rc-gap: 1.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .reviews-carousel {
    --per-view: 2;
  }
}
@media (min-width: 1024px) {
  .reviews-carousel {
    --per-view: 3;
  }
}

.reviews-carousel__viewport {
  overflow: hidden;
  flex: 1 1 0;
  min-width: 0;
  touch-action: pan-y;
  cursor: grab;
}

.reviews-carousel.is-dragging .reviews-carousel__viewport {
  cursor: grabbing;
}
.reviews-carousel.is-dragging .reviews-carousel__track {
  user-select: none;
}

.reviews-carousel__track {
  display: flex;
  gap: var(--rc-gap);
  align-items: stretch;
  transition: transform 0.4s ease, opacity 0.25s ease;
  will-change: transform;
}

.js .reviews-carousel:not(.is-ready) .reviews-carousel__track {
  opacity: 0;
}

.reviews-carousel__track > .review-card,
.reviews-carousel__track > .diploma {
  flex: 1 0 calc((100% - (var(--per-view) - 1) * var(--rc-gap)) / var(--per-view));
  margin: 0;
}

.reviews-carousel--diplomas {
  --per-view: 2;
  --rc-gap: 1rem;
}
@media (min-width: 768px) {
  .reviews-carousel--diplomas {
    --per-view: 3;
  }
}

.reviews-carousel__stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.reviews-carousel.is-arrows-outside .reviews-carousel__stage {
  display: block;
}

.reviews-carousel.is-arrows-outside .reviews-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.reviews-carousel.is-arrows-outside .reviews-carousel__btn.reviews-carousel__btn--prev {
  right: 100%;
  margin-right: 1.25rem;
}
.reviews-carousel.is-arrows-outside .reviews-carousel__btn.reviews-carousel__btn--next {
  left: 100%;
  margin-left: 1.25rem;
}

.reviews-carousel__btn {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid #0D7A8A;
  background: #0D7A8A;
  color: #FFFFFF;
  display: none;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, opacity 200ms ease;
}
@media (min-width: 1024px) {
  .reviews-carousel__btn {
    display: grid;
  }
}
.reviews-carousel__btn svg {
  width: 1.1rem;
  height: 1.1rem;
}
@media (hover: hover) {
  .reviews-carousel__btn:hover:not(:disabled) {
    background: #FFFFFF;
    color: #0D7A8A;
    border-color: #0D7A8A;
  }
}
.reviews-carousel__btn:disabled {
  opacity: 0.3;
  cursor: default;
  box-shadow: none;
}
.reviews-carousel__btn:focus-visible {
  outline: 2px solid #0D7A8A;
  outline-offset: 2px;
}
.reviews-carousel__btn[hidden] {
  display: none;
}

.reviews-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.reviews-carousel__dots[hidden] {
  display: none;
}

.reviews-carousel__dot {
  width: 0.6rem;
  height: 0.6rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #E5E7EB;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.reviews-carousel__dot.is-active {
  background: #0D7A8A;
  transform: scale(1.25);
}
.reviews-carousel__dot:focus-visible {
  outline: 2px solid #0D7A8A;
  outline-offset: 2px;
}

.landing-hero {
  position: relative;
  background: radial-gradient(ellipse 80% 70% at 95% 5%, rgba(94, 184, 197, 0.9), transparent 55%), radial-gradient(ellipse 60% 60% at 10% 95%, rgba(94, 184, 197, 0.5), transparent 60%), radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255, 255, 255, 0.18), transparent 60%), linear-gradient(135deg, #0A5A66 0%, #0D7A8A 100%);
  color: #FFFFFF;
  padding-block: 3rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .landing-hero {
    padding-block: 4.5rem;
  }
}

.landing-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 35%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 184, 197, 0.5), transparent 65%);
  filter: blur(25px);
  pointer-events: none;
  z-index: 0;
}

.landing-hero > * {
  position: relative;
  z-index: 1;
}

.landing-hero + .section {
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .landing-hero + .section {
    padding-top: 2.5rem;
  }
}

.landing-hero__inner h1 {
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}
.landing-hero__inner .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 48rem;
}
.landing-hero__inner a {
  color: #FFFFFF;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.prose {
  max-width: 60rem;
  margin-inline: auto;
}
.prose > :first-child {
  margin-top: 0;
}
.prose h2 {
  margin-top: 2.5rem;
}
.prose h3 {
  margin-top: 2rem;
}
.prose ul, .prose ol {
  padding-left: 1.5rem;
}
.prose li {
  margin-bottom: 0.5rem;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 1.5rem;
}
.prose table th, .prose table td {
  padding: 0.75rem 1rem;
  border: 1px solid #E5E7EB;
  text-align: left;
}
.prose table th {
  background: #E6F4F6;
  color: #0A5A66;
}

.prose__cta {
  margin-top: 2.5rem;
  text-align: center;
}

.prose__table-scroll {
  overflow-x: auto;
}
.prose__table-scroll table {
  min-width: 34rem;
}

@media (max-width: 639px) {
  .prose__table-scroll--stacked {
    overflow-x: visible;
  }
  .prose__table-scroll--stacked table {
    display: grid;
    grid-template-columns: 1fr max-content;
    min-width: 0;
    border: 1px solid #E5E7EB;
  }
  .prose__table-scroll--stacked table thead,
  .prose__table-scroll--stacked table tbody,
  .prose__table-scroll--stacked table tr {
    display: contents;
  }
  .prose__table-scroll--stacked table th,
  .prose__table-scroll--stacked table td {
    border: 0;
    border-bottom: 1px solid #E5E7EB;
    padding: 0.6rem 0.85rem;
  }
  .prose__table-scroll--stacked table tbody tr:last-child th,
  .prose__table-scroll--stacked table tbody tr:last-child td {
    border-bottom: 0;
  }
  .prose__table-scroll--stacked table th:first-child,
  .prose__table-scroll--stacked table td:first-child {
    display: flex;
    align-items: center;
    grid-column: 1;
    grid-row: span 2;
    border-right: 1px solid #E5E7EB;
  }
  .prose__table-scroll--stacked table th:nth-child(2),
  .prose__table-scroll--stacked table td:nth-child(2),
  .prose__table-scroll--stacked table th:nth-child(3),
  .prose__table-scroll--stacked table td:nth-child(3) {
    grid-column: 2;
    text-align: right;
  }
  .prose__table-scroll--stacked table th:nth-child(2),
  .prose__table-scroll--stacked table td:nth-child(2) {
    padding-bottom: 0.15rem;
    border-bottom: 0;
  }
  .prose__table-scroll--stacked table th:nth-child(3),
  .prose__table-scroll--stacked table td:nth-child(3) {
    padding-top: 0;
  }
}

.prose__divider {
  border: 0;
  border-top: 1px solid #E5E7EB;
  margin-top: 3.5rem;
}

.prose__note {
  background: #E6F4F6;
  border-left: 4px solid #0D7A8A;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}
.prose__note > :first-child {
  margin-top: 0;
}
.prose__note > :last-child {
  margin-bottom: 0;
}

.prose--justify p {
  text-align: justify;
  hyphens: auto;
}

.text-media {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: center;
  margin-block: 2rem;
}
@media (min-width: 768px) {
  .text-media {
    grid-template-columns: 1fr 18rem;
    gap: 2.5rem;
  }
}

@media (min-width: 768px) {
  .text-media--media-left {
    grid-template-columns: 18rem 1fr;
  }
  .text-media--media-left .text-media__media {
    order: -1;
  }
}

@media (min-width: 768px) {
  .landing-hero--photo-right .lead {
    max-width: min(48rem, 100% - 19.5rem);
  }
}

.text-media--hero-overlap {
  align-items: start;
}
@media (min-width: 768px) {
  .text-media--hero-overlap .text-media__media {
    position: relative;
    z-index: 2;
    margin-top: -16rem;
  }
}
.text-media--hero-overlap .text-media__media img {
  width: 74%;
  margin-inline: auto;
  -webkit-mask-image: linear-gradient(to bottom, #000 76%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 76%, transparent 100%);
  filter: none;
}

.text-media--wide-media .text-media__media--cutout img {
  width: 83%;
  margin-inline: auto;
  -webkit-mask-image: linear-gradient(to bottom, #000 76%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 76%, transparent 100%);
  filter: none;
}

@media (min-width: 768px) {
  .text-media--wide-media {
    grid-template-columns: 1fr 24rem;
  }
}
@media (min-width: 768px) {
  .text-media--wide-media.text-media--media-left {
    grid-template-columns: 24rem 1fr;
  }
}

.text-media__text > :first-child {
  margin-top: 0;
}
.text-media__text > :last-child {
  margin-bottom: 0;
}

.text-media__media {
  margin: 0;
}
.text-media__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.text-media__media figcaption {
  margin-top: 0.6rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}

.text-media__media--cutout {
  display: none;
}
@media (min-width: 768px) {
  .text-media__media--cutout {
    display: block;
  }
}
.text-media__media--cutout img {
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 6px 20px rgba(6, 46, 52, 0.18));
}

.text-media__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.text-media__pair img {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}

.includes-panel {
  margin-block: 2rem;
}

.includes-panel__text > :first-child {
  margin-top: 0;
}
.includes-panel__text > :last-child {
  margin-bottom: 0;
}

.includes-panel__cta {
  margin: 1.75rem 0 0;
  text-align: center;
}

.check-list {
  list-style: none;
  padding-left: 0;
}
@media (min-width: 768px) {
  .check-list {
    columns: 2;
    column-gap: 2.5rem;
  }
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  break-inside: avoid;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0D7A8A;
  font-weight: 700;
}

.format-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-block: 1.75rem;
}
@media (min-width: 768px) {
  .format-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.format-grid > .format-card {
  margin-block: 0;
}

.format-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin-block: 1.75rem;
}
.format-card h3 {
  margin-top: 0;
  color: #0A5A66;
}
.format-card > :last-child {
  margin-bottom: 0;
}

.special-offer {
  background: none;
  border: 1px dashed #E5E7EB;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  margin-block: 3rem;
}
.special-offer h2 {
  margin-top: 0;
  font-size: 1.25rem;
}
.special-offer > :last-child {
  margin-bottom: 0;
}

.review-card blockquote p {
  margin: 0 0 0.75rem;
}
.review-card blockquote p:last-child {
  margin-bottom: 1rem;
}

.video-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-block: 1.5rem 2rem;
}
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.video-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0A5A66;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__link {
  align-self: flex-start;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0D7A8A;
  text-decoration: none;
}
.video-card__link:hover {
  text-decoration: underline;
}

.faq-section__heading {
  margin-top: 3rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-block: 1.5rem 0;
}

.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  background: #FFFFFF;
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.faq-item[open] {
  border-color: #5EB8C5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: #0A5A66;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 200ms ease, color 200ms ease;
}
.faq-item > summary::-webkit-details-marker {
  display: none;
}
.faq-item > summary:hover {
  background: #E6F4F6;
}
.faq-item > summary:focus-visible {
  outline: 2px solid #0D7A8A;
  outline-offset: -2px;
}
.faq-item > summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: #0D7A8A;
  transition: transform 200ms ease;
}

.faq-item[open] > summary {
  background: #E6F4F6;
}
.faq-item[open] > summary::after {
  transform: rotate(45deg);
}

.faq-item__body {
  padding: 0.25rem 1.25rem 1.25rem;
}
.faq-item__body > :first-child {
  margin-top: 0;
}
.faq-item__body > :last-child {
  margin-bottom: 0;
}
.faq-item__body h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  color: #0A5A66;
}

.diplomas-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-block: 1.5rem 2rem;
}
@media (min-width: 768px) {
  .diplomas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.diploma {
  margin: 0;
}
.diploma img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}
.diploma figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #6B7280;
  text-align: center;
}

.diploma__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
@media (hover: hover) {
  .diploma__trigger:hover img {
    border-color: #0D7A8A;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(6, 46, 52, 0.88);
}

.lightbox__img {
  max-width: min(100%, 52rem);
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1F2937;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__flip {
  flex: 0 0 auto;
  padding: 0.6rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1F2937;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}
@media (hover: hover) {
  .lightbox__flip:hover {
    background: #FFFFFF;
  }
}

body.has-lightbox {
  overflow: hidden;
}

/*# sourceMappingURL=app-7d1043473d.output.css.map */
