/* =========================================================
   layout/typography.css — Przed Słońcem
   ========================================================= */

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(232, 146, 13, 0.10);
  border: 1px solid rgba(232, 146, 13, 0.20);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}

h1, h2, h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(30px, 6vw, 60px); }
h2 { font-size: clamp(24px, 4vw, 40px); }
h3 { font-size: clamp(17px, 2.5vw, 20px); font-family: var(--font-main); font-weight: 600; }

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

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

.lead {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: clamp(15px, 2.2vw, 17px);
  line-height: 1.75;
}

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

.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; }
