.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.section-title__label {
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title__heading {
  font-size: 42px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-title__desc {
  max-width: 640px;
}

@media (max-width: 991px) {
  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title__heading {
    font-size: 32px;
  }
}

/* 2026 visual refresh: stronger section hierarchy. */
.section-title {
  margin-bottom: clamp(36px, 4vw, 58px);
}

.section-title__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.section-title__label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-accent));
}

.section-title__heading {
  font-size: clamp(34px, 4vw, 52px);
}
