/* ============================================================
   Shared section primitives — reused by every content section.
   Section-specific files (concerns.css, strengths.css, ...)
   may override padding/background but MUST NOT redefine the
   header/title/lead/eyebrow styles below.
   ============================================================ */
.section {
  position: relative;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 80px);
  color: var(--text);
}

.section__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: "Nunito", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--brand-blue);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section__eyebrow::before,
.section__eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: currentColor;
  margin: 0 14px;
  border-radius: 2px;
}

.section__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 24px;
}

.section__lead {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.9;
  color: #5b6776;
  font-weight: 500;
}

@media (max-width: 768px) {
  .section__title {
    font-size: 24px;
  }

  .section__lead {
    font-size: 14px;
  }

  .section__lead br {
    display: none;
  }

  .section__eyebrow {
    font-size: 12px;
  }

  .section__eyebrow::before,
  .section__eyebrow::after {
    width: 20px;
    margin: 0 10px;
  }
}
