/* Common styles for headings used across the site */
.home-section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
}

.home-section-subtitle {
  text-align: center;
  color: #4d6f88;
  font-weight: 500;
  margin-bottom: 35px;
  letter-spacing: 1px;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
}

/* Decorative small line under title */
.home-section-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0.5rem auto 1rem auto;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .home-section-title {
    font-size: 1.5rem;
  }

  .home-section-subtitle {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
  }

  .home-section-line {
    width: 50px;
    height: 3px;
  }
}
