/* =========================================================================
   Fundacja WFS - warstwa nadpisujaca szablon Stravise
   Ladowana PO main.css. main.css i main.js zostaja nietkniete.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Rebrand - kolory pobrane bezposrednio z logo klienta
   ------------------------------------------------------------------------- */
:root {
  /* paleta wlasna */
  --wfs-navy: #001948;
  --wfs-navy-2: #0A2A6B;
  --wfs-navy-deep: #00102F;
  --wfs-gold: #D9A441;
  --wfs-gold-light: #FBCA68;
  --wfs-gold-dark: #B8862B;
  --wfs-gold-soft: #F3E2BE;
  --wfs-grad-gold: linear-gradient(120deg, #B8862B 0%, #FBCA68 48%, #D9A441 100%);
  --wfs-line: rgba(0, 25, 72, 0.12);
  --wfs-line-light: rgba(255, 255, 255, 0.16);
  --wfs-radius: 18px;
  --wfs-shadow: 0 18px 50px rgba(0, 25, 72, 0.10);

  /* nadpisanie tokenow szablonu */
  --rr-heading-primary: #001948;
  --rr-theme-primary: #D9A441;
  --rr-theme-primary-2: #0A2A6B;
  --rr-theme-primary-3: #F3E2BE;
  --rr-body-bg: #001948;
  --rr-body-primary-1: #00102F;
  --rr-text-body: #3D465A;
  --rr-common-selection: #D9A441;

  /* zmienne uzywane przez main.css, ale nigdy w nim niezdefiniowane */
  --rr-border-primary: rgba(0, 25, 72, 0.14);
  --rr-theme-primary2: #0A2A6B;
  --rr-body-text-2: #3D465A;

  /* skala naglowkow: 100px/90px to za duzo dla tresci fundacyjnej */
  --rr-fs-h1: 62px;
  --rr-lh-h1: 70px;
  --rr-fs-h2: 54px;
  --rr-lh-h2: 62px;
  --rr-fs-h3: 40px;
  --rr-lh-h3: 48px;
}

/* naprawa buga szablonu: na xs h2/h3 dostawaly 90px przy line-height 42px */
@media (max-width: 575px) {
  h2, h3 {
    font-size: 28px !important;
    line-height: 36px !important;
  }
}
@media (max-width: 450px) {
  h2, h3 {
    font-size: 26px !important;
    line-height: 34px !important;
  }
}

body {
  overflow-x: hidden;
}

/* podtytul sekcji - dodajemy oddech, bo oryginal ma padding-bottom 0 */
.section-heading__wrap_2 .section__subtitle {
  padding: 9px 14px;
  line-height: 18px;
  border-radius: 4px;
}

/* Uwaga: gradient przez background-clip:text NIE dziala na tytulach z klasa
   rr-title-anim ani na licznikach - SplitText i Odometer wstrzykuja wlasne
   elementy potomne, ktore traca tlo rodzica i tekst staje sie niewidoczny.
   Dlatego zloto jest tu kolorem jednolitym. */
.wfs-gold-text {
  color: var(--wfs-gold-dark);
}

.heading-bg .wfs-gold-text,
.wfs-highlight--dark .wfs-gold-text {
  color: var(--wfs-gold-light);
}

/* szablon zeruje marginesy akapitow - przywracamy odstepy w blokach tresci */
.wfs-tabs__panel-inner p,
.wfs-modal__body p,
.wfs-acc__body p,
.wfs-card__body p,
.wfs-highlight p,
.wfs-empty p,
.banner-section-2__content p,
.section-heading__wrap_2 p,
.wfs-purpose > p {
  margin-bottom: 16px;
}

.wfs-tabs__panel-inner p:last-child,
.wfs-modal__body p:last-child,
.wfs-acc__body p:last-child,
.wfs-card__body p:last-child,
.wfs-highlight p:last-child,
.wfs-empty p:last-child,
.wfs-purpose > p:last-child {
  margin-bottom: 0;
}

.wfs-lead {
  font-size: 19px;
  line-height: 32px;
}

.wfs-small {
  font-size: 14px;
  line-height: 24px;
  opacity: 0.75;
}

/* -------------------------------------------------------------------------
   2. Header: sticky + scrollspy (szablon nie ma ani jednego, ani drugiego)
   ------------------------------------------------------------------------- */
.rr-header {
  transition: transform 0.4s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.rr-header.is-sticky {
  position: fixed;
  top: 0;
  background-color: #fff;
  box-shadow: 0 6px 30px rgba(0, 25, 72, 0.10);
  animation: wfsSlideDown 0.45s ease forwards;
}

.rr-header.is-sticky .rr-header__top {
  display: none !important;
}

.rr-header.is-sticky .rr-header__main {
  padding-top: 8px;
  padding-bottom: 8px;
}

.rr-header.is-sticky .rr-header__logo img {
  max-height: 48px;
  width: auto;
}

@keyframes wfsSlideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.rr-header__logo .logo img,
.rr-header__logo img {
  max-width: none;
  max-height: 58px;
  width: auto;
}

.rr-header.is-sticky .rr-header__logo .logo img {
  max-height: 44px;
}

@media (max-width: 575px) {
  .rr-header__logo .logo img { max-height: 42px; width: auto; }
}

/* topbar: szablon zaklada ikony jako <img>, my uzywamy Font Awesome */
.rr-header-2 .rr-header__contact { border-bottom: 0; }

.rr-header-2 .rr-header__contact__left > ul li {
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rr-header-2 .rr-header__contact__left > ul li:hover,
.rr-header-2 .rr-header__contact__left > ul li:nth-child(2):hover {
  color: #fff;
}

.rr-header-2 .rr-header__contact__left > ul li i {
  color: var(--wfs-gold-light);
  font-size: 15px;
}

/* naglowek hero: 100px w szablonie to za duzo dla naszego dluzszego tytulu */
.banner-section-2__content .section-heading__wrap_2 .section__title {
  font-size: 58px;
  line-height: 1.08;
  border-bottom-color: var(--wfs-line);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-section-2__content .section-heading__wrap_2 .section__title { font-size: 50px; }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-section-2__content .section-heading__wrap_2 .section__title { font-size: 42px; }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-section-2__content .section-heading__wrap_2 .section__title { font-size: 40px; }
}

@media (max-width: 575px) {
  .banner-section-2__content .section-heading__wrap_2 .section__title { font-size: 32px; }
}

.p-20 { padding: 20px; }

.rr-header__top {
  background-color: var(--wfs-navy);
}

.rr-header__top .rr-header__contact {
  border-bottom: 0 !important;
}

.rr-header__top a,
.rr-header__top li,
.rr-header__top span {
  color: #fff;
}

.rr-header__top a:hover {
  color: var(--wfs-gold-light);
}

.rr-header-2 .rr-header__menu__wrapper .main-menu ul li > a {
  font-weight: 500;
}

.rr-header-2 .rr-header__menu__wrapper .main-menu ul li.active > a,
.rr-header-2 .rr-header__menu__wrapper .main-menu ul li > a:hover {
  color: var(--wfs-gold-dark);
}

.rr-header-2 .rr-header__menu__wrapper .main-menu ul li.active > a::before {
  width: 100%;
  background-color: var(--wfs-gold);
}

/* offcanvas na granacie */
.offcanvas__area {
  background-color: var(--wfs-navy);
}

.offcanvas__logo img {
  max-height: 74px;
  width: auto;
}

/* meanmenu wymusza capitalize - po polsku robi z tego "Zycie Fundacji" */
.mean-nav a,
.mean-nav li a {
  text-transform: none;
}

/* -------------------------------------------------------------------------
   3. Przyciski
   ------------------------------------------------------------------------- */
.rr-btn {
  font-weight: 500;
  font-size: 17px;
}

.rr-btn.wfs-btn-sm {
  padding: 11px 24px;
  font-size: 15px;
  gap: 10px;
}

.rr-btn.wfs-btn-ghost {
  background-color: transparent;
  border: 1px solid var(--wfs-line);
  color: var(--wfs-navy);
}

.rr-btn.wfs-btn-ghost .hover-bg {
  background-color: var(--wfs-navy);
}

.rr-btn.wfs-btn-ghost:hover {
  color: #fff;
  border-color: var(--wfs-navy);
}

.rr-btn.wfs-btn-ghost-light {
  background-color: transparent;
  border: 1px solid var(--wfs-line-light);
  color: #fff;
}

.rr-btn.wfs-btn-ghost-light .hover-bg {
  background-color: var(--wfs-gold);
}

.rr-btn.wfs-btn-ghost-light:hover {
  color: var(--wfs-navy);
  border-color: var(--wfs-gold);
}

.wfs-btn-link {
  border: 0;
  padding: 0;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  display: inline-flex;
  align-items: center;
  color: var(--wfs-navy);
  transition: color 0.3s ease;
}

.wfs-btn-link:hover {
  color: var(--wfs-gold-dark);
}

.wfs-btn-link i {
  transition: transform 0.3s ease;
}

.wfs-btn-link[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* -------------------------------------------------------------------------
   4. Hero
   ------------------------------------------------------------------------- */
.banner-section-2__area {
  background-color: #F7F8FA;
}

.wfs-hero__title .wfs-gold-text {
  display: inline-block;
}

.wfs-hero__claim {
  padding: 26px 30px;
  border-radius: var(--wfs-radius);
  background: var(--wfs-navy);
  max-width: 320px;
}

.wfs-hero__claim strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--rr-ff-heading2);
}

.wfs-hero__claim span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--wfs-gold-light);
}

.wfs-hero__thumb img {
  width: 100%;
  border-radius: var(--wfs-radius);
  /* szablon odbarwia zdjecie hero na czarno-biale */
  filter: none;
}

/* pasek 4 wartosci */
.wfs-values {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
  .wfs-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .wfs-values { grid-template-columns: 1fr; }
}

.wfs-values__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--wfs-radius);
  background: #fff;
  border: 1px solid var(--wfs-line);
  transition: all 0.3s ease-in-out;
}

.wfs-values__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--wfs-shadow);
  border-color: rgba(217, 164, 65, 0.5);
}

.wfs-values__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 18px;
  color: var(--wfs-navy);
  background: var(--wfs-grad-gold);
}

.wfs-values__item h3 {
  font-size: 19px;
  line-height: 26px;
  margin-bottom: 4px;
  font-family: var(--rr-ff-heading2);
}

.wfs-values__item p {
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}

/* marquee wartosci */
.title-slide-2__area.wfs-marquee {
  background: var(--wfs-navy);
  padding: 26px 0;
}

.wfs-marquee .title-slide-2__title {
  margin: 0;
  color: var(--wfs-gold-light);
  font-family: var(--rr-ff-heading2);
  font-size: 26px;
  line-height: 34px;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.wfs-marquee .title-slide-2__title span {
  padding: 0 34px;
}

/* -------------------------------------------------------------------------
   5. Taby (w calym szablonie nie ma ani jednego)
   ------------------------------------------------------------------------- */
.wfs-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.wfs-tabs__btn {
  border: 1px solid var(--wfs-line);
  background: #fff;
  color: var(--wfs-navy);
  border-radius: 500px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.wfs-tabs__btn:hover {
  border-color: var(--wfs-gold);
}

.wfs-tabs__btn.is-active {
  color: var(--wfs-navy);
  border-color: transparent;
  background: var(--wfs-grad-gold);
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.35);
}

.wfs-tabs__panel {
  display: none;
  animation: wfsFadeIn 0.45s ease;
}

.wfs-tabs__panel.is-active {
  display: block;
}

@keyframes wfsFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* wariant pionowy - sekcja "Czego uczymy" */
@media (min-width: 992px) {
  .wfs-tabs--vertical {
    display: grid;
    gap: 44px;
    grid-template-columns: 330px 1fr;
    align-items: start;
  }
  .wfs-tabs--vertical .wfs-tabs__nav {
    flex-direction: column;
    margin-bottom: 0;
    gap: 8px;
  }
  .wfs-tabs--vertical .wfs-tabs__btn {
    width: 100%;
    text-align: left;
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .wfs-tabs--vertical .wfs-tabs__btn span {
    font-size: 13px;
    opacity: 0.55;
  }
}

@media (max-width: 991px) {
  .wfs-tabs--vertical .wfs-tabs__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .wfs-tabs--vertical .wfs-tabs__btn {
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .wfs-tabs--vertical .wfs-tabs__btn span { display: none; }
}

.wfs-tabs__panel-inner {
  background: #fff;
  border: 1px solid var(--wfs-line);
  border-radius: var(--wfs-radius);
  padding: 42px 44px;
}

@media (max-width: 575px) {
  .wfs-tabs__panel-inner { padding: 28px 22px; }
}

.wfs-tabs__panel-inner h3 {
  font-family: var(--rr-ff-heading2);
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 16px;
}

.wfs-ticks {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.wfs-ticks li {
  position: relative;
  padding-left: 34px;
  font-size: 17px;
  line-height: 27px;
}

.wfs-ticks li::before {
  content: "\f00c";
  font-family: var(--rr-ff-fontawesome);
  font-weight: 300;
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 11px;
  border-radius: 50%;
  color: var(--wfs-navy);
  background: var(--wfs-gold-soft);
}

/* -------------------------------------------------------------------------
   6. Akordeon
   ------------------------------------------------------------------------- */
.wfs-acc__item {
  border: 1px solid var(--wfs-line);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.wfs-acc__item:has(.wfs-acc__head[aria-expanded="true"]) {
  border-color: rgba(217, 164, 65, 0.6);
  box-shadow: var(--wfs-shadow);
}

.wfs-acc__head {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 24px 62px 24px 28px;
  position: relative;
  font-size: 19px;
  line-height: 28px;
  font-weight: 500;
  color: var(--wfs-navy);
  font-family: var(--rr-ff-heading2);
  transition: color 0.3s ease;
}

.wfs-acc__head:hover {
  color: var(--wfs-gold-dark);
}

.wfs-acc__head .wfs-acc__num {
  display: inline-block;
  min-width: 34px;
  font-size: 14px;
  font-family: var(--rr-ff-body);
  color: var(--wfs-gold-dark);
}

.wfs-acc__head::after {
  content: "\2b";
  font-family: var(--rr-ff-fontawesome);
  font-weight: 300;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--wfs-navy);
  background: var(--wfs-gold-soft);
  transition: all 0.3s ease-in-out;
}

.wfs-acc__head[aria-expanded="true"]::after {
  content: "\f068";
  background: var(--wfs-grad-gold);
  transform: translateY(-50%) rotate(180deg);
}

.wfs-acc__body {
  padding: 0 62px 26px 28px;
}

.wfs-acc__body p:last-child { margin-bottom: 0; }

@media (max-width: 575px) {
  .wfs-acc__head { padding: 20px 56px 20px 18px; font-size: 17px; line-height: 25px; }
  .wfs-acc__body { padding: 0 18px 22px; }
}

/* wariant na ciemnym tle */
.wfs-acc--dark .wfs-acc__item {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--wfs-line-light);
}

.wfs-acc--dark .wfs-acc__head { color: #fff; }
.wfs-acc--dark .wfs-acc__head:hover { color: var(--wfs-gold-light); }
.wfs-acc--dark .wfs-acc__head .wfs-acc__num { color: var(--wfs-gold-light); }
.wfs-acc--dark .wfs-acc__body p { color: rgba(255, 255, 255, 0.72); }
.wfs-acc--dark .wfs-acc__item:has(.wfs-acc__head[aria-expanded="true"]) {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(217, 164, 65, 0.55);
}

/* -------------------------------------------------------------------------
   7. Karty rozwijane (cele, kategorie, sposoby wsparcia)
   ------------------------------------------------------------------------- */
.wfs-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.wfs-cards--2 { grid-template-columns: repeat(2, 1fr); }
.wfs-cards--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1199px) {
  .wfs-cards--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .wfs-cards, .wfs-cards--2, .wfs-cards--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .wfs-cards, .wfs-cards--2, .wfs-cards--4 { grid-template-columns: 1fr; }
}

.wfs-card {
  border: 1px solid var(--wfs-line);
  border-radius: var(--wfs-radius);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.wfs-card:hover {
  border-color: rgba(217, 164, 65, 0.55);
  box-shadow: var(--wfs-shadow);
}

.wfs-card__head {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 32px 30px 24px;
  cursor: pointer;
}

.wfs-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 21px;
  margin-bottom: 20px;
  color: var(--wfs-navy);
  background: var(--wfs-gold-soft);
  transition: all 0.3s ease-in-out;
}

.wfs-card:hover .wfs-card__icon {
  background: var(--wfs-grad-gold);
}

.wfs-card__title {
  display: block;
  font-size: 21px;
  line-height: 29px;
  margin: 0;
  color: var(--wfs-navy);
  font-family: var(--rr-ff-heading2);
}

.wfs-card__toggle {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
  color: var(--wfs-gold-dark);
}

.wfs-card__toggle i { transition: transform 0.3s ease; }
.wfs-card__head[aria-expanded="true"] .wfs-card__toggle i { transform: rotate(180deg); }

/* przelaczanie etykiet Rozwin / Zwin - dziala dla kart i dla zwyklych linkow */
.wfs-lbl-less { display: none; }
[aria-expanded="true"] > .wfs-lbl-more,
[aria-expanded="true"] .wfs-lbl-more { display: none; }
[aria-expanded="true"] > .wfs-lbl-less,
[aria-expanded="true"] .wfs-lbl-less { display: inline; }

.wfs-card__body {
  padding: 0 30px 30px;
}

.wfs-card__body p { margin: 0; font-size: 16px; line-height: 27px; }

.wfs-card__cta { margin-top: 20px; }

/* wariant na ciemnym tle */
.wfs-card--dark {
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--wfs-line-light);
}
.wfs-card--dark .wfs-card__title { color: #fff; }
.wfs-card--dark .wfs-card__body p { color: rgba(255, 255, 255, 0.72); }
.wfs-card--dark .wfs-card__toggle { color: var(--wfs-gold-light); }

/* numerowany wariant */
.wfs-card__num {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--wfs-gold-dark);
  display: block;
  margin-bottom: 12px;
}

/* -------------------------------------------------------------------------
   8. Blok wyrozniony (Mlodzi Liderzy) + badge
   ------------------------------------------------------------------------- */
.wfs-highlight {
  position: relative;
  border-radius: 22px;
  padding: 46px 48px;
  background: #fff;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--wfs-grad-gold);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.wfs-highlight--dark {
  background-image: linear-gradient(var(--wfs-navy-2), var(--wfs-navy-2)), var(--wfs-grad-gold);
}

.wfs-highlight--dark h3 { color: #fff; }
.wfs-highlight--dark p { color: rgba(255, 255, 255, 0.75); }

@media (max-width: 575px) {
  .wfs-highlight { padding: 30px 24px; }
}

.wfs-highlight h3 {
  font-family: var(--rr-ff-heading2);
  font-size: 30px;
  line-height: 40px;
  margin: 14px 0 18px;
}

.wfs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 500px;
  color: var(--wfs-navy);
  background: var(--wfs-gold-soft);
}

.wfs-badge--gold { background: var(--wfs-grad-gold); }

/* -------------------------------------------------------------------------
   9. Osoby + modale
   ------------------------------------------------------------------------- */
.wfs-person {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  border-radius: var(--wfs-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--wfs-line-light);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.wfs-person:hover {
  border-color: rgba(217, 164, 65, 0.5);
  transform: translateY(-6px);
}

@media (max-width: 575px) {
  .wfs-person { grid-template-columns: 1fr; }
}

.wfs-person__thumb {
  overflow: hidden;
  background: #F4F4F5;
}

.wfs-person__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.wfs-person:hover .wfs-person__thumb img { transform: scale(1.05); }

.wfs-person__body {
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
}

.wfs-person__name {
  font-family: var(--rr-ff-heading2);
  font-size: 26px;
  line-height: 34px;
  color: #fff;
  margin-bottom: 4px;
}

.wfs-person__role {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wfs-gold-light);
  margin-bottom: 18px;
}

.wfs-person__excerpt {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 26px;
}

.wfs-person__body .rr-btn { align-self: flex-start; margin-top: auto; }

/* modal */
.wfs-modal .modal-dialog { max-width: 860px; }

.wfs-modal .modal-content {
  border: 0;
  border-radius: 22px;
  overflow: hidden;
}

.wfs-modal .modal-header {
  border: 0;
  padding: 34px 42px 0;
  align-items: flex-start;
}

.wfs-modal .modal-body { padding: 22px 42px 40px; }

@media (max-width: 575px) {
  .wfs-modal .modal-header { padding: 26px 22px 0; }
  .wfs-modal .modal-body { padding: 18px 22px 30px; }
}

.wfs-modal__title {
  font-family: var(--rr-ff-heading2);
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 6px;
}

.wfs-modal__role {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wfs-gold-dark);
}

.wfs-modal .btn-close {
  background: var(--wfs-gold-soft);
  border-radius: 50%;
  padding: 14px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.wfs-modal .btn-close:hover { background: var(--wfs-grad-gold); }

.wfs-modal__intro {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.wfs-modal__intro img {
  flex: 0 0 auto;
  width: 118px;
  height: 148px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
}

.wfs-modal__body p { margin-bottom: 18px; }
.wfs-modal__body p:last-child { margin-bottom: 0; }

.wfs-quote {
  margin-top: 28px;
  padding: 28px 30px 28px 34px;
  border-radius: 16px;
  position: relative;
  background: #F7F8FA;
  border-left: 4px solid var(--wfs-gold);
  font-family: var(--rr-ff-heading2);
  font-size: 20px;
  line-height: 32px;
  color: var(--wfs-navy);
}

.wfs-modal__pdf {
  width: 100%;
  height: 520px;
  border: 1px solid var(--wfs-line);
  border-radius: 14px;
  margin-top: 22px;
}

@media (max-width: 767px) {
  .wfs-modal__pdf { height: 380px; }
  .wfs-modal__intro { flex-direction: column; }
}

/* -------------------------------------------------------------------------
   10. Liczniki
   ------------------------------------------------------------------------- */
.wfs-counters {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1199px) { .wfs-counters { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px)  { .wfs-counters { grid-template-columns: repeat(2, 1fr); } }

.wfs-counter {
  text-align: center;
  padding: 30px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--wfs-line-light);
}

.wfs-counter__num {
  font-family: var(--rr-ff-heading2);
  font-size: 42px;
  line-height: 50px;
  margin-bottom: 8px;
  color: var(--wfs-gold-light);
}

.wfs-counter p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.72);
}

/* -------------------------------------------------------------------------
   11. Wydarzenia
   ------------------------------------------------------------------------- */
.wfs-event {
  border: 1px solid var(--wfs-line);
  border-radius: var(--wfs-radius);
  background: #fff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.wfs-event:hover { box-shadow: var(--wfs-shadow); transform: translateY(-6px); }

.wfs-event__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #EDEFF3;
  overflow: hidden;
}

.wfs-event__thumb img { width: 100%; height: 100%; object-fit: cover; }

.wfs-event__date {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 10px 16px;
  border-radius: 12px;
  text-align: center;
  background: var(--wfs-navy);
  color: #fff;
  line-height: 1.1;
}

.wfs-event__date strong { display: block; font-size: 22px; font-family: var(--rr-ff-heading2); }
.wfs-event__date--tba strong { font-size: 16px; }
.wfs-event__date span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wfs-gold-light); }

.wfs-event__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }

.wfs-event__cat {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wfs-gold-dark);
  margin-bottom: 10px;
  display: block;
}

.wfs-event__title {
  font-family: var(--rr-ff-heading2);
  font-size: 21px;
  line-height: 29px;
  margin-bottom: 16px;
}

.wfs-event__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 8px;
  font-size: 15px;
}

.wfs-event__meta li { display: flex; gap: 10px; align-items: center; }
.wfs-event__meta i { color: var(--wfs-gold-dark); width: 16px; }

.wfs-event__body .rr-btn { align-self: flex-start; margin-top: auto; }

.wfs-empty {
  text-align: center;
  padding: 62px 32px;
  border-radius: var(--wfs-radius);
  border: 1px dashed rgba(0, 25, 72, 0.22);
  background: #F7F8FA;
}

.wfs-empty i {
  font-size: 34px;
  color: var(--wfs-gold-dark);
  margin-bottom: 18px;
  display: block;
}

.wfs-empty p { max-width: 520px; margin: 0 auto 26px; }

/* -------------------------------------------------------------------------
   12. Modul darowizny
   ------------------------------------------------------------------------- */
.wfs-donate {
  border-radius: 22px;
  padding: 42px 44px;
  background: #fff;
  box-shadow: var(--wfs-shadow);
  border: 1px solid var(--wfs-line);
}

@media (max-width: 575px) { .wfs-donate { padding: 28px 22px; } }

.wfs-donate h3 {
  font-family: var(--rr-ff-heading2);
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 24px;
}

.wfs-toggle {
  display: inline-flex;
  padding: 5px;
  border-radius: 500px;
  background: #F1F3F7;
  margin-bottom: 26px;
}

.wfs-toggle button {
  border: 0;
  background: transparent;
  padding: 11px 26px;
  border-radius: 500px;
  font-size: 15px;
  font-weight: 500;
  color: var(--wfs-navy);
  transition: all 0.3s ease-in-out;
}

.wfs-toggle button.is-active {
  background: var(--wfs-navy);
  color: #fff;
}

.wfs-amounts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

@media (max-width: 767px) { .wfs-amounts { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 400px) { .wfs-amounts { grid-template-columns: repeat(2, 1fr); } }

.wfs-amounts button {
  border: 1px solid var(--wfs-line);
  background: #fff;
  border-radius: 12px;
  padding: 15px 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--wfs-navy);
  transition: all 0.3s ease-in-out;
}

.wfs-amounts button:hover { border-color: var(--wfs-gold); }

.wfs-amounts button.is-active {
  border-color: transparent;
  background: var(--wfs-grad-gold);
  box-shadow: 0 10px 22px rgba(217, 164, 65, 0.32);
}

.wfs-amount-custom { margin-bottom: 22px; }

.wfs-amount-custom.is-hidden { display: none; }

.wfs-amount-custom label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--wfs-navy);
}

.wfs-input-suffix { position: relative; }

.wfs-input-suffix span {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  opacity: 0.6;
}

.wfs-donate__summary {
  padding: 18px 22px;
  border-radius: 12px;
  background: #F7F8FA;
  margin-bottom: 22px;
  font-size: 16px;
}

.wfs-donate__summary strong { color: var(--wfs-navy); font-size: 19px; }

.wfs-donate .rr-btn { width: 100%; justify-content: center; }

.wfs-note {
  font-size: 13px;
  line-height: 22px;
  opacity: 0.7;
  margin-top: 14px;
}

/* przelew tradycyjny */
.wfs-transfer {
  margin-top: 26px;
  border-top: 1px solid var(--wfs-line);
  padding-top: 22px;
}

.wfs-transfer__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.wfs-transfer__list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  font-size: 15px;
  line-height: 24px;
}

@media (max-width: 575px) {
  .wfs-transfer__list li { grid-template-columns: 1fr; gap: 2px; }
}

.wfs-transfer__list dt,
.wfs-transfer__list .wfs-k {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
}

.wfs-transfer__list .wfs-v { color: var(--wfs-navy); font-weight: 500; }

.wfs-iban {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--wfs-navy);
}

/* na co przeznaczamy */
.wfs-purpose {
  border-radius: 22px;
  padding: 42px 44px;
  background: var(--wfs-navy);
  height: 100%;
}

@media (max-width: 575px) { .wfs-purpose { padding: 30px 24px; } }

.wfs-purpose h3 {
  color: #fff;
  font-family: var(--rr-ff-heading2);
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 12px;
}

.wfs-purpose > p { color: rgba(255, 255, 255, 0.72); }

.wfs-purpose .wfs-ticks li { color: rgba(255, 255, 255, 0.88); }

.wfs-purpose .wfs-ticks li::before {
  color: var(--wfs-navy);
  background: var(--wfs-grad-gold);
}

.wfs-purpose .wfs-note {
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid var(--wfs-line-light);
  padding-top: 18px;
  margin-top: 26px;
}

/* pasek zbiorki */
.wfs-fundraiser {
  border-radius: 22px;
  padding: 40px 44px;
  background: linear-gradient(120deg, var(--wfs-navy) 0%, var(--wfs-navy-2) 100%);
  position: relative;
  overflow: hidden;
}

@media (max-width: 575px) { .wfs-fundraiser { padding: 30px 24px; } }

.wfs-fundraiser__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wfs-gold-light);
}

.wfs-fundraiser h3 {
  color: #fff;
  font-family: var(--rr-ff-heading2);
  font-size: 30px;
  line-height: 40px;
  margin: 10px 0 26px;
}

.wfs-progress {
  height: 12px;
  border-radius: 500px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.wfs-progress__bar {
  height: 100%;
  width: 0;
  border-radius: 500px;
  background: var(--wfs-grad-gold);
  transition: width 1.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.wfs-fundraiser__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.wfs-fundraiser__meta strong { color: #fff; }

/* -------------------------------------------------------------------------
   13. Partnerzy i ambasadorzy
   ------------------------------------------------------------------------- */
.wfs-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 767px) { .wfs-logos { grid-template-columns: repeat(2, 1fr); } }

.wfs-logo-tile {
  aspect-ratio: 16 / 7;
  border-radius: 14px;
  border: 1px dashed rgba(0, 25, 72, 0.18);
  background: #F7F8FA;
  display: grid;
  place-items: center;
  color: rgba(0, 25, 72, 0.32);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.wfs-logo-tile i { font-size: 26px; }

.wfs-logo-tile--cta {
  border-style: solid;
  border-color: var(--wfs-gold);
  color: var(--wfs-gold-dark);
  background: #fff;
  cursor: pointer;
  font-weight: 500;
}

.wfs-logo-tile--cta:hover {
  background: var(--wfs-grad-gold);
  color: var(--wfs-navy);
}

.wfs-amb {
  border-radius: var(--wfs-radius);
  border: 1px solid var(--wfs-line);
  background: #fff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.wfs-amb:hover { box-shadow: var(--wfs-shadow); transform: translateY(-6px); }

.wfs-amb__thumb {
  aspect-ratio: 4 / 3;
  background: #EDEFF3;
  display: grid;
  place-items: center;
  color: rgba(0, 25, 72, 0.25);
  font-size: 42px;
  overflow: hidden;
}

.wfs-amb__thumb img { width: 100%; height: 100%; object-fit: cover; }

.wfs-amb__body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }

.wfs-amb__name { font-family: var(--rr-ff-heading2); font-size: 21px; line-height: 28px; margin-bottom: 4px; }

.wfs-amb__role { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--wfs-gold-dark); margin-bottom: 16px; display: block; }

.wfs-amb__quote { font-size: 16px; line-height: 27px; margin-bottom: 22px; }

.wfs-amb__body .wfs-btn-link { margin-top: auto; align-self: flex-start; }

/* -------------------------------------------------------------------------
   14. Historie
   ------------------------------------------------------------------------- */
.wfs-story {
  border-radius: 22px;
  padding: 44px 46px;
  background: #fff;
  border: 1px solid var(--wfs-line);
  height: auto;
}

@media (max-width: 575px) { .wfs-story { padding: 30px 24px; } }

.wfs-story__mark { font-size: 34px; color: var(--wfs-gold); margin-bottom: 18px; display: block; }

.wfs-story__quote {
  font-family: var(--rr-ff-heading2);
  font-size: 23px;
  line-height: 36px;
  color: var(--wfs-navy);
  margin-bottom: 28px;
}

.wfs-story__author { display: flex; align-items: center; gap: 16px; }

.wfs-story__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #EDEFF3;
  display: grid;
  place-items: center;
  color: rgba(0, 25, 72, 0.3);
  font-size: 20px;
  flex: 0 0 auto;
}

.wfs-story__name { font-weight: 600; color: var(--wfs-navy); display: block; }
.wfs-story__role { font-size: 14px; opacity: 0.7; }

.wfs-story .wfs-btn-link { margin-top: 24px; }

.wfs-slider-nav {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  justify-content: center;
}

.wfs-slider-nav button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--wfs-line);
  background: #fff;
  color: var(--wfs-navy);
  transition: all 0.3s ease-in-out;
}

.wfs-slider-nav button:hover {
  background: var(--wfs-grad-gold);
  border-color: transparent;
}

/* -------------------------------------------------------------------------
   15. Kontakt
   ------------------------------------------------------------------------- */
.wfs-contact-card {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 16px;
  border: 1px solid var(--wfs-line);
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.wfs-contact-card:hover { border-color: rgba(217, 164, 65, 0.55); box-shadow: var(--wfs-shadow); }

.wfs-contact-card__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--wfs-navy);
  background: var(--wfs-gold-soft);
}

.wfs-contact-card h3 { font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; margin-bottom: 6px; font-family: var(--rr-ff-body); font-weight: 500; }

.wfs-contact-card a, .wfs-contact-card p { font-size: 17px; line-height: 27px; color: var(--wfs-navy); margin: 0; }

.wfs-contact-card a:hover { color: var(--wfs-gold-dark); }

.wfs-register {
  margin-top: 24px;
  padding: 18px 24px;
  border-radius: 12px;
  background: #F7F8FA;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--wfs-navy);
}

.wfs-form {
  border-radius: 22px;
  padding: 42px 44px;
  background: #fff;
  border: 1px solid var(--wfs-line);
  box-shadow: var(--wfs-shadow);
}

@media (max-width: 575px) { .wfs-form { padding: 28px 22px; } }

.wfs-field { margin-bottom: 18px; }

.wfs-field label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--wfs-navy);
  font-weight: 500;
}

.wfs-field .wfs-req { color: var(--wfs-gold-dark); }

.wfs-field input[type="text"],
.wfs-field input[type="email"],
.wfs-field input[type="tel"],
.wfs-field input[type="number"],
.wfs-field textarea,
.wfs-input-suffix input {
  width: 100%;
  border: 1px solid var(--wfs-line);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 16px;
  color: var(--wfs-navy);
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wfs-field textarea { min-height: 140px; resize: vertical; }

.wfs-field input:focus,
.wfs-field textarea:focus,
.wfs-input-suffix input:focus {
  outline: 0;
  border-color: var(--wfs-gold);
  box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.15);
}

.wfs-field.has-error input,
.wfs-field.has-error textarea,
.wfs-field.has-error .nice-select {
  border-color: #C0392B;
}

.wfs-field__error {
  display: none;
  font-size: 13px;
  color: #C0392B;
  margin-top: 6px;
}

.wfs-field.has-error .wfs-field__error { display: block; }

/* nice-select dostrojony do reszty formularza */
.wfs-field .nice-select {
  width: 100%;
  height: auto;
  line-height: 26px;
  border: 1px solid var(--wfs-line);
  border-radius: 12px;
  padding: 15px 44px 15px 20px;
  font-size: 16px;
  color: var(--wfs-navy);
  background: #fff;
}

.wfs-field .nice-select:after { right: 22px; border-color: var(--wfs-navy); }
.wfs-field .nice-select .list { width: 100%; border-radius: 12px; }
.wfs-field .nice-select .option.selected { color: var(--wfs-gold-dark); }

.wfs-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 23px;
  margin-bottom: 22px;
}

.wfs-check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--wfs-gold); flex: 0 0 auto; }
.wfs-check a { color: var(--wfs-gold-dark); text-decoration: underline; }

.wfs-form__msg {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 24px;
}

.wfs-form__msg.is-visible { display: block; }
.wfs-form__msg--ok { background: rgba(217, 164, 65, 0.14); color: var(--wfs-navy); border: 1px solid rgba(217, 164, 65, 0.4); }
.wfs-form__msg--err { background: rgba(192, 57, 43, 0.08); color: #8E241A; border: 1px solid rgba(192, 57, 43, 0.3); }

.wfs-map {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 380px;
  background: repeating-linear-gradient(45deg, #EDEFF3 0 18px, #E6E9EF 18px 36px);
  display: grid;
  place-items: center;
}

.wfs-map iframe { width: 100%; height: 420px; border: 0; display: block; }

.wfs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0;
}

.wfs-chips span {
  padding: 10px 20px;
  border-radius: 500px;
  background: #fff;
  border: 1px solid var(--wfs-line);
  font-size: 15px;
  color: var(--wfs-navy);
}

/* -------------------------------------------------------------------------
   16. Stopka
   ------------------------------------------------------------------------- */
.footer-section__area { background-color: var(--wfs-navy) !important; }

.wfs-footer__logo img { max-width: 190px; }

.wfs-footer__claim {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--rr-ff-heading2);
  font-size: 19px;
  line-height: 30px;
  margin: 20px 0 14px;
}

.wfs-footer__hash {
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--wfs-gold-light);
}

.wfs-footer__title {
  color: #fff;
  font-size: 19px;
  font-family: var(--rr-ff-heading2);
  margin-bottom: 24px;
}

.wfs-footer__menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }

.wfs-footer__menu a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.3s ease-in-out;
}

.wfs-footer__menu a:hover { color: var(--wfs-gold-light); transform: translateX(4px); }
.wfs-footer__menu a i { font-size: 11px; opacity: 0.6; }

.wfs-footer__contact { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.wfs-footer__contact li { color: rgba(255, 255, 255, 0.72); font-size: 16px; line-height: 26px; }
.wfs-footer__contact a { color: rgba(255, 255, 255, 0.72); }
.wfs-footer__contact a:hover { color: var(--wfs-gold-light); }

.wfs-footer__bottom {
  border-top: 1px solid var(--wfs-line-light);
  padding: 26px 0;
  background: var(--wfs-navy-deep);
}

.wfs-footer__bottom p { margin: 0; color: rgba(255, 255, 255, 0.6); font-size: 14px; line-height: 24px; }
.wfs-footer__bottom a { color: rgba(255, 255, 255, 0.6); }
.wfs-footer__bottom a:hover { color: var(--wfs-gold-light); }

/* -------------------------------------------------------------------------
   17. Cookies, toast, mobilny bottom bar
   ------------------------------------------------------------------------- */
.wfs-cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1045;
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 30px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 25, 72, 0.25);
  border: 1px solid var(--wfs-line);
  transform: translateY(140%);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.wfs-cookie.is-visible { transform: translateY(0); }

.wfs-cookie p { font-size: 15px; line-height: 25px; margin-bottom: 18px; }
.wfs-cookie a { color: var(--wfs-gold-dark); text-decoration: underline; }

.wfs-cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 575px) {
  .wfs-cookie { padding: 22px 20px; bottom: 82px; }
  .wfs-cookie__actions .rr-btn { flex: 1 1 100%; justify-content: center; }
}

.wfs-toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translate(-50%, 160%);
  z-index: 1300;
  padding: 14px 26px;
  border-radius: 500px;
  background: var(--wfs-navy);
  color: #fff;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.4s ease;
}

.wfs-toast.is-visible { transform: translate(-50%, 0); }
.wfs-toast i { color: var(--wfs-gold-light); }

.wfs-bottombar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  display: none;
  background: #fff;
  border-top: 1px solid var(--wfs-line);
  box-shadow: 0 -8px 26px rgba(0, 25, 72, 0.10);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.wfs-bottombar.is-visible { transform: translateY(0); }

.wfs-bottombar__inner { display: grid; grid-template-columns: 1fr 1fr; }

.wfs-bottombar a {
  padding: 16px 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--wfs-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.wfs-bottombar a:first-child { background: var(--wfs-grad-gold); }
.wfs-bottombar a + a { border-left: 1px solid var(--wfs-line); }

@media (max-width: 991px) {
  .wfs-bottombar { display: block; }
  /* pasek dolny jest fixed - stopka musi zrobic mu miejsce */
  .wfs-footer__bottom { padding-bottom: 80px; }
}

/* -------------------------------------------------------------------------
   18. Drobne poprawki szablonu
   ------------------------------------------------------------------------- */
.wfs-section-sep { border: 0; border-top: 1px solid var(--wfs-line); margin: 0; }

.wfs-mt-40 { margin-top: 40px; }
.wfs-mt-60 { margin-top: 60px; }
.wfs-mb-40 { margin-bottom: 40px; }

.wfs-anchor { position: relative; top: -90px; display: block; height: 0; visibility: hidden; }

/* neutralizacja bledow szablonu: elementy, ktorych main.js szuka bez guarda */
.wfs-js-stub { display: none !important; }

/* dostepnosc - widoczny focus, ktorego szablon nie ma */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--wfs-gold);
  outline-offset: 3px;
}
