/* WST component — section header (eyebrow + headline + blurb).
 * Extracted from the homepage `.section-head` pattern so any page can
 * use it. Rendered by template-parts/components/section-header.php.
 * NOTE: the homepage keeps its own `.section-head` rules in home.css —
 * this `.wst-section-head` is the portable, globally-loaded version. */

.wst-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}
.wst-section-head__main { min-width: 0; }
.wst-section-head .eyebrow { margin: 0 0 14px; }
.wst-section-head__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin: 0;
  max-width: 680px;
  color: var(--ink);
}
.wst-section-head__title em { font-style: italic; color: var(--terra); }
.wst-section-head__aside {
  flex-shrink: 0;
  text-align: right;
  max-width: 340px;
}
.wst-section-head__blurb {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 14px;
}

@media (max-width: 860px) {
  .wst-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .wst-section-head__aside { text-align: left; max-width: none; }
}
