/* ==========================================================
   COSTA DESIGN SYSTEM â€” SECTION HEADER
   ========================================================== */

.cst-section-header {
  width: min(100%, var(--cst-section-header-max-width, 1000px));
  margin: 0 auto 62px;
}

.cst-section-header--center {
  text-align: center;
}

.cst-section-header--left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.cst-section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  color: var(--cst-color-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cst-section-header__title {
  margin: 0;

  color: var(--cst-color-blue);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.cst-section-header__subtitle {
  width: min(100%, 900px);
  margin: 22px auto 0;

  color: rgba(6, 43, 87, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.cst-section-header--left .cst-section-header__subtitle {
  margin-left: 0;
  margin-right: auto;
}

@media (max-width: 767px) {

  .cst-section-header {
    margin-bottom: 46px;
  }

  .cst-section-header__title {
    font-size: 34px;
  }

  .cst-section-header__subtitle {
    font-size: 15px;
  }

}