/*==================================================
SECTION TITLE
==================================================*/

.section-title {
  text-align: center;

  max-width: 760px;

  margin: 0 auto 68px;

  position: relative;
}

.section-title::after {
  content: "";

  position: absolute;

  left: 50%;

  bottom: -12px;

  translate: -50%;

  width: 64px;

  height: 3px;

  border-radius: var(--radius-pill);

  background: linear-gradient(90deg, var(--gold), var(--secondary));
}

.section-title span {
  display: inline-block;

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 14px;
}

.section-title h2 {
  margin: 0 0 18px;
}

.section-title p {
  font-size: 1.05rem;
}
