.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-title__line {
  width: 2rem;
  height: 1px;
  background-color: #ca2a2a;
}

@media (min-width: 768px) {
  .section-title__line {
    width: 3rem;
  }
}

.section-title__text {
  color: #ca2a2a;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 !important;
  white-space: nowrap;
}

/* Not first section styling - left aligned and gold color */
.section-title--not-first {
  justify-content: flex-start;
}

.section-title--not-first .section-title__text {
  color: hsl(39 35% 60%);
  font-size: 0.75rem;
}

.section-title--not-first .section-title__line {
  background-color: hsl(39 35% 60%);
}

.section-title--title{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-title--title .section-title__line {
  background-color: #fff;
}