* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-weight: var(--fw-regular);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  line-height: var(--lh-heading);
  font-weight: var(--fw-medium);
}

h1 { font-size: var(--fs-h1); font-weight: var(--fw-h1); }
h2 { font-size: var(--fs-h2); font-weight: var(--fw-h2); }
h3 { font-size: var(--fs-h3); font-weight: var(--fw-h3); }
h4 { font-size: var(--fs-h3-plus); font-weight: var(--fw-h4); }
h5 { font-size: var(--fs-kicker); font-weight: var(--fw-h5); }
h6 { font-size: var(--fs-base); font-weight: var(--fw-h6); }

p {
  margin-top: 0;
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote,
.prose table {
  margin: 0 0 var(--space-md);
}

/* Nagłówek sekcji (Default section header) */
.wl-section-head {
  text-align: center;
}

.wl-section-head__eyebrow {
  margin: 0;
  font-size: var(--fs-kicker);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--color-accent);
}

.wl-section-head__title {
  margin: var(--space-2xs) auto 0;
}

.wl-section-head__desc {
  margin: var(--space-xs) auto 0;
  max-width: 720px;
  font-size: var(--fs-base);
}

.wl-section-head__line {
  display: block;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.15;
  margin-top: var(--space-md);
}
