/* Reusable section tagline primitive. Section CSS only controls placement. */

.section-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--vl-tagline-color, #fff);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 8px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.section-tagline--dark {
  --vl-tagline-color: #fff;
}

.section-tagline--light {
  --vl-tagline-color: #101010;
}

.section-tagline__accent {
  color: var(--vl-red);
  font-weight: 900;
}

.section-tagline__separator {
  display: inline-block;
  width: 2px;
  height: 0.95em;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--vl-red-bright);
  box-shadow: 0 0 12px rgba(233, 29, 37, 0.34);
}

@media (max-width: 1180px) {
  .section-tagline {
    letter-spacing: 4px;
  }
}

@media (max-width: 900px) {
  .section-tagline {
    flex-wrap: wrap;
    gap: 10px 14px;
    letter-spacing: 3px;
    line-height: 1.4;
  }
}
