/* =========================================================
   layout/typography.css
   ========================================================= */

.eyebrow {
  width: fit-content;

  display: inline-flex;
  align-items: center;

  margin: 0 0 14px;
  padding: 7px 13px;

  border-radius: 999px;
  background: var(--color-surface-soft);

  color: var(--color-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

h1,
h2,
h3 {
  margin: 0;

  color: var(--color-text);
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(28px, 6vw, 52px);
}

h2 {
  font-size: clamp(22px, 4vw, 38px);
}

h3 {
  font-size: clamp(17px, 3vw, 22px);
}

p {
  margin: 0 0 12px;
  line-height: 1.7;
  color: var(--color-muted);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  max-width: 700px;
  margin: 16px 0 0;

  color: var(--color-muted);
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.7;
}

/* -------------------------
   Blok treści
   ------------------------- */

.content-block {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.75;
}

.content-block p:first-child { margin-top: 0; }
.content-block p:last-child { margin-bottom: 0; }

.content-block ul,
.content-block ol {
  padding-left: 1.25em;
}

.content-block li {
  margin: 8px 0;
}
