/* ========================================
   Section Title Component
======================================== */
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.section-title-separator {
  width: 66px;
  height: 10px;
  display: block;
}

.section-title-text {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.8px;
  color: var(--color-text-primary);
}

.section-title-text .highlight {
  color: var(--color-primary);
  font-weight: 500;
}

.section-title-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.8px;
  color: var(--color-text-primary);
  margin: 0;
  margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title-text {
    font-size: 24px;
  }

  .section-title-subtitle {
    font-size: 14px;
  }
}
