/*
 * Momo Review — Section header component.
 * Port từ React category/header.
 */
.section-header {
  margin: 0 0 40px;
}

.section-header--center {
  text-align: center;
}

.section-header--left {
  text-align: left;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}

.section-header--center .section-title {
  justify-content: center;
}

.section-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.section-icon svg {
  fill: var(--accent);
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.section-header--center .section-subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
