/* ====== Base / Theme (spójne z RR/HISTORIA) ====== */
* {
  box-sizing: border-box;
}
html:focus-within {
  scroll-behavior: smooth;
}

:root {
  --bg: #0b1020;

  /* powierzchnie/panele */
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.1);

  --border: rgba(255, 255, 255, 0.14);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);

  --brand: #7c3aed;
  --brand-2: #22c55e;

  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-2: 26px;
  --max: 1200px;
}

/* Domyślny wybór wg systemu */
@media (prefers-color-scheme: light) {
  :root {
    --bg: #eef0f8; /* mniej “szpitalnie” */
    --surface: rgba(245, 246, 252, 0.92); /* panele nie są białe */
    --surface-2: rgba(240, 242, 250, 0.98); /* ważniejsze karty */
    --border: rgba(15, 23, 42, 0.14);
    --text: rgba(15, 23, 42, 0.92);
    --muted: rgba(15, 23, 42, 0.62);
    --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  }
}

/* Wymuszenie przez JS */
html[data-theme="dark"] {
  --bg: #0b1020;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.14);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
html[data-theme="light"] {
  --bg: #eef0f8;
  --surface: rgba(245, 246, 252, 0.92);
  --surface-2: rgba(240, 242, 250, 0.98);
  --border: rgba(15, 23, 42, 0.14);
  --text: rgba(15, 23, 42, 0.92);
  --muted: rgba(15, 23, 42, 0.62);
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

html {
  font-size: calc(16px * var(--font-scale, 1));
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Noto Sans",
    "Liberation Sans",
    sans-serif;
  line-height: 1.6;
  color: var(--text);

  /* tło: delikatne gradienty + fioletowa poświata w dark */
  background:
    radial-gradient(
      1200px 700px at 20% -10%,
      rgba(124, 58, 237, 0.3),
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 80% 0%,
      rgba(34, 197, 94, 0.16),
      transparent 50%
    ),
    radial-gradient(
      700px 500px at 50% 110%,
      rgba(59, 130, 246, 0.14),
      transparent 55%
    ),
    var(--bg);

  min-height: 100dvh;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 10px;
  top: 10px;
  transform: translateY(-140%);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid rgba(124, 58, 237, 0.55);
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid var(--border);
}
.header__bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 220px;
  text-decoration: none;
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.95),
    rgba(34, 197, 94, 0.85)
  );
  box-shadow: 0 12px 25px rgba(124, 58, 237, 0.25);
}
.brand__title {
  font-weight: 900;
  letter-spacing: 0.2px;
  display: block;
}
.brand__sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: -2px;
  display: block;
}

/* Buttons */
.icon-btn,
.menu-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.icon-btn:hover,
.menu-btn:hover {
  background: var(--surface-2);
}
.icon-btn:focus-visible,
.menu-btn:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.55);
  outline-offset: 2px;
}
.icon-btn--font {
  font-weight: 950;
  min-width: 44px;
  justify-content: center;
  letter-spacing: 0.2px;
}

/* Theme toggle icons */
#themeToggle {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#themeToggle .theme-ico {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor !important;
  stroke: none;
}
#themeToggle .theme-ico--sun {
  display: none;
}
#themeToggle .theme-ico--moon {
  display: block;
}
html[data-theme="dark"] #themeToggle .theme-ico--sun {
  display: block;
}
html[data-theme="dark"] #themeToggle .theme-ico--moon {
  display: none;
}

.menu-btn__label {
  font-weight: 800;
  font-size: 14px;
}
.menu-btn__lines {
  width: 18px;
  height: 12px;
  display: inline-block;
  position: relative;
}
.menu-btn__lines::before,
.menu-btn__lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.menu-btn__lines::before {
  top: 0;
}
.menu-btn__lines::after {
  bottom: 0;
}

/* Top nav — sterowane przyciskiem (działa też na komputerze) */
.topnav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px 14px;
  display: none; /* <<< klucz: domyślnie schowane */
  gap: 10px;
  flex-wrap: wrap;
}
.topnav.is-open {
  /* <<< klucz: otwierane klasą */
  display: flex;
}

.topnav__link {
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--muted);
}
.topnav__link:hover {
  color: var(--text);
  background: var(--surface-2);
}
.topnav__link.is-active,
.topnav__link[aria-current="page"] {
  color: var(--text);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.22),
    rgba(34, 197, 94, 0.12)
  );
}
.topnav__hint {
  margin-left: auto;
}

/* Na małych ekranach nie wypychaj "Dostępność" na prawo */
@media (max-width: 820px) {
  .topnav__hint {
    margin-left: 0;
  }
}

/* Layout */
.layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 16px;
}
@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
  }
}

/* Panels */
.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.panel--soft {
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(34, 197, 94, 0.04)),
    var(--surface);
}
.panel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 10px;
}
.panel__title {
  font-weight: 950;
  letter-spacing: 0.2px;
}
.panel__meta {
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

/* Sidebar groups */
.sidegroups {
  display: grid;
  gap: 10px;
  padding: 0 0 10px;
}
.sgrp {
  margin: 0 12px;
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-2) 55%, transparent);
  overflow: hidden;
}
.sgrp__sum {
  list-style: none;
  cursor: pointer;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 950;
}
.sgrp__sum::-webkit-details-marker {
  display: none;
}
.sgrp__chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
}
details[open] .sgrp__chev {
  transform: rotate(225deg);
}
.sgrp__content {
  padding: 0 12px 12px;
  display: grid;
  gap: 8px;
}

.sidenav__link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 900;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
}
.sidenav__link:hover {
  color: var(--text);
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.18);
}

/* Content */
.content {
  display: grid;
  gap: 16px;
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 14px;
}
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
.hero__text {
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(34, 197, 94, 0.05)),
    var(--surface-2);
  box-shadow: var(--shadow);
  padding: 16px;
}
.hero__text h1 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.15;
}
.lead {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 800;
}

.hero__card {
  border: 1px solid var(--border);
  border-radius: var(--radius-2);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(34, 197, 94, 0.05)),
    var(--surface-2);
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  align-items: center;
}
.stat__label {
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.stat__value {
  font-weight: 950;
  font-size: 16px;
  margin-top: 2px;
}

.mini-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  border: 1px solid var(--border);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.55),
    rgba(34, 197, 94, 0.35)
  );
  color: var(--text);
  font-weight: 950;
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn:hover {
  filter: brightness(1.05);
}
.btn--ghost {
  background: var(--surface);
  color: var(--text);
}
.btn--ghost:hover {
  background: var(--surface-2);
}

.field {
  display: grid;
  gap: 6px;
}
.field__label {
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.input {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  border-radius: 14px;
  padding: 10px 12px;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  color: var(--text);
  outline: none;
}
.input:focus {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
}

/* ===== Posts / Accordion ===== */
.posts {
  padding: 0 12px 14px;
  display: grid;
  gap: 10px;
}

.post {
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(34, 197, 94, 0.03)),
    color-mix(in srgb, var(--surface) 85%, transparent);
  overflow: hidden;
}

.post > summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 12px;
  display: grid;
  gap: 6px;
}
.post > summary::-webkit-details-marker {
  display: none;
}

.post__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.post__title {
  font-weight: 950;
  letter-spacing: 0.2px;
  line-height: 1.25;
}
.badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.badge {
  font-size: 12px;
  font-weight: 950;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: color-mix(in srgb, var(--surface-2) 60%, transparent);
  color: var(--muted);
}
.badge--year {
  color: var(--text);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.2),
    rgba(34, 197, 94, 0.12)
  );
}

.post__excerpt {
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.post__body {
  padding: 0 12px 14px;
  border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}
.post__body p {
  margin: 10px 0;
  text-align: justify;
}
.post__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}
.post__body td,
.post__body th {
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  padding: 8px 10px;
  font-size: 14px;
}
.post__body th {
  background: color-mix(in srgb, var(--surface-2) 70%, transparent);
  font-weight: 950;
}

/* Gallery */
.gallery {
  margin: 12px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 720px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.gitem {
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--surface-2) 70%, transparent);
  cursor: pointer;
  padding: 0;
}
.gitem img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.2s ease;
}
.gitem:hover img {
  transform: scale(1.06);
}
.gcap {
  padding: 8px 10px;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

/* Footer */
.footer {
  margin: 18px 0 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow);
  padding: 14px 16px;
}
.footer__grid {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer__title {
  font-weight: 950;
}
.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 900;
}
.footer__links a:hover {
  color: var(--text);
  text-decoration: underline;
}

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 88%, var(--bg));
  border-radius: var(--radius-2);
  box-shadow: var(--shadow);
  padding: 12px 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.cookie__text {
  display: grid;
  gap: 4px;
}
.cookie__text a {
  color: var(--muted);
  font-weight: 900;
}
.cookie__text a:hover {
  color: var(--text);
}
.cookie__actions {
  display: flex;
  gap: 10px;
}

/* To top */
.to-top {
  position: fixed;
  right: 16px;
  bottom: 86px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.to-top:hover {
  background: var(--surface-2);
}

/* SR-only */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 200;
}
.lightbox.is-open {
  display: block;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.lightbox__panel {
  position: absolute;
  inset: 16px;
  max-width: 1100px;
  margin: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: color-mix(in srgb, var(--bg) 60%, rgba(0, 0, 0, 0.45));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.lightbox__figure {
  margin: 0;
  padding: 18px;
  max-height: 100%;
  max-width: 100%;
  display: grid;
  gap: 10px;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: calc(100dvh - 160px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.lightbox__cap {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
  font-size: 13px;
  text-align: center;
}
html[data-theme="light"] .lightbox__cap {
  color: rgba(15, 23, 42, 0.7);
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 12px;
  cursor: pointer;
}
html[data-theme="light"] .lightbox__close {
  color: rgba(15, 23, 42, 0.92);
  border-color: rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.6);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 46px;
  height: 46px;
  cursor: pointer;
  font-size: 26px;
  line-height: 46px;
  text-align: center;
}
.lightbox__nav--prev {
  left: 12px;
}
.lightbox__nav--next {
  right: 12px;
}
html[data-theme="light"] .lightbox__nav {
  color: rgba(15, 23, 42, 0.92);
  border-color: rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.6);
}
/* ===== UKS / O KLUBIE + ZARZĄD ===== */
.club__body {
  padding: 12px 14px 14px;
  display: grid;
  gap: 14px;
}

.club__top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  align-items: start;
}
@media (max-width: 900px) {
  .club__top {
    grid-template-columns: 1fr;
  }
}

.club__logo {
  display: block;
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  border-radius: 18px;
  overflow: hidden;
  background: color-mix(in srgb, var(--surface-2) 70%, transparent);
  box-shadow: var(--shadow);
}
.club__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.club__intro {
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1),
    rgba(34, 197, 94, 0.06)
  );
  padding: 12px 14px;
}
.club__lead {
  margin: 0 0 10px;
  font-weight: 950;
}
.club__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}
.club__callout {
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}

.club__text p {
  margin: 10px 0;
  text-align: justify;
}
.club__license {
  font-weight: 900;
}
.club__support {
  border: 1px dashed color-mix(in srgb, var(--border) 70%, transparent);
  border-radius: 18px;
  padding: 12px 14px;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
}
.club__bank {
  font-weight: 950;
}
.club__motto {
  font-weight: 950;
  letter-spacing: 0.04em;
}
.club__more a {
  font-weight: 950;
}

.club__people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 900px) {
  .club__people {
    grid-template-columns: 1fr;
  }
}

.people-card {
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.people-card--accent {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.12),
    rgba(34, 197, 94, 0.06)
  );
  border-color: color-mix(in srgb, var(--brand) 28%, var(--border));
}
.people-card__title {
  padding: 12px 14px 10px;
  font-weight: 950;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}

.people-grid {
  padding: 12px 14px 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 560px) {
  .people-grid {
    grid-template-columns: 1fr;
  }
}

.person {
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  border-radius: 16px;
  padding: 10px 12px;
  background: color-mix(in srgb, var(--surface-2) 65%, transparent);
}
.person__name {
  font-weight: 950;
  line-height: 1.2;
}
.person__role {
  color: var(--muted);
  font-weight: 850;
  font-size: 13px;
  margin-top: 4px;
}
.club-invite-text {
  width: 60%; /* Ustaw szerokość na 60% kontenera */
  margin: 0 auto; /* Wyśrodkowanie tekstu */
  font-size: 1.5em; /* Zwiększenie rozmiaru czcionki */
  line-height: 1.6; /* Zwiększenie odstępu między wierszami */
  text-align: center; /* Wyśrodkowanie tekstu */
}

.club-invite-text em {
  font-size: 1.8em; /* Zwiększenie rozmiaru czcionki w <em> */
}

.club-invite-text strong {
  font-size: 1.5em; /* Zwiększenie rozmiaru czcionki w <strong> */
  display: block; /* Wyświetlanie tego elementu w osobnym wierszu */
  margin-top: 10px;
}
