/*=============================================
=            GLOBAL & UTILITIES               =
=============================================*/
.highlights-wrapper .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.highlights-wrapper .desktop-only {
  display: none;
}
.highlights-wrapper .mobile-only {
  display: block;
}
.highlights-wrapper .desktop-break {
  display: none;
}

@media (min-width: 1024px) {
  .highlights-wrapper .desktop-only {
    display: block;
  }
  .highlights-wrapper .mobile-only {
    display: none;
  }
  .highlights-wrapper .desktop-break {
    display: block;
  }
}

/*=============================================
=                 BREADCRUMBS                 =
=============================================*/
.highlights-wrapper .breadcrumbs {
  background-color: #fafafa;
}
.highlights-wrapper .breadcrumbs-container {
  display: flex;
  align-items: center;
}
.highlights-wrapper .breadcrumbs__current-page {
  padding: 0.75rem;
}
.highlights-wrapper .breadcrumbs__current-page p {
  color: #404040;
  font-size: 0.875rem;
  font-weight: 500;
}

/*=============================================
=               BANNER SECTION                =
=============================================*/
.highlights-wrapper .banner-section {
  background-image: url("/assets/img/highlights/banner-section.png");
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  padding-top: 2.5rem;
  padding-bottom: 0;
  margin-bottom: 0;
}
.highlights-wrapper .banner-section__container {
  height: auto;
}
.highlights-wrapper .banner-section__layout {
  display: flex;
  flex-direction: column;
}
.highlights-wrapper .banner-section__text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: 2rem;
}
.highlights-wrapper .banner-section__title {
  color: white;
  font-weight: 700;
  font-size: 2.5rem; /* 40px */
  line-height: 3.5rem; /* 56px */
}
.highlights-wrapper .banner-section__description {
  color: white;
  font-weight: 500;
}
.highlights-wrapper .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.highlights-wrapper .feature-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: #262626;
  font-weight: 600;
  font-size: 1.125rem;
}
.highlights-wrapper .feature-item__icon {
  flex-shrink: 0;
}
.highlights-wrapper .banner-section__rocket-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}
.highlights-wrapper .banner-section__rocket-image img {
  width: 12rem; /* 192px */
  height: 489px; /* This seems specific, maintaining it */
}

@media (min-width: 1024px) {
  .highlights-wrapper .banner-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-bottom: 5rem;
  }
  .highlights-wrapper .banner-section__layout {
    flex-direction: row;
    gap: 1.5rem;
  }
  .highlights-wrapper .banner-section__text-content {
    width: 66.6667%;
  }
  .highlights-wrapper .banner-section__title {
    font-size: 3.75rem; /* 60px */
  }
  .highlights-wrapper .banner-section__rocket-image {
    margin-top: -2.5rem;
  }
}

/*=============================================
=               PROCESS SECTIONS              =
=============================================*/
.highlights-wrapper .process-section {
  margin-bottom: 2.5rem;
}
.highlights-wrapper .process-section__header {
  margin-bottom: 2rem;
}
.highlights-wrapper .process-section__title {
  font-weight: 700;
  font-size: 2rem; /* 32px */
  line-height: 2.75rem; /* 44px */
  color: #262626;
}
.highlights-wrapper .process-section__image-wrapper img {
  width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .highlights-wrapper .process-section {
    margin-bottom: 5rem;
  }
  .highlights-wrapper .process-section__header {
    margin-bottom: 3.75rem;
  }
  .highlights-wrapper .process-section__title {
    font-size: 2.5rem; /* 40px */
    line-height: 3.5rem; /* 56px */
    text-align: center;
    color: #262626;
  }
}
