/* ============================================================
   Agralex — Design System (chrome: header / nav / footer)
   Faza 1 rebuildu UI/UX. Świeży, nowoczesny redesign chrome.
   WCAG 2.2 (focus-visible, kontrast, klawiatura, reduced-motion) + RWD.
   Klasy prefiks .ax- → brak kolizji z motywem Webflow (treść 1:1).
   ============================================================ */

:root {
  /* Marka */
  --ax-green:        #28692d;  /* firmowy zielony Agralex (z logo/motywu) */
  --ax-green-600:    #2f7d39;  /* jaśniejszy — hover */
  --ax-green-700:    #1c5224;  /* ciemniejszy */
  --ax-green-900:    #0e2b16;  /* bardzo ciemny — tło footera */
  --ax-accent:       #1caf4e;  /* jaskrawa zieleń — akcenty, focus, aktywne */

  /* Neutralne */
  --ax-ink:         #14241a;
  --ax-slate:       #5a6b5e;
  --ax-line:        #e3eae4;
  --ax-bg:          #ffffff;
  --ax-bg-soft:     #f1f7f2;
  --ax-white:       #ffffff;

  /* Footer (ciemny zielony) */
  --ax-foot-bg:     #0e2b16;
  --ax-foot-bg2:    #16401f;
  --ax-foot-fg:     #d7e6da;
  --ax-foot-muted:  #93b29b;

  /* Typografia */
  --ax-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ax-head: "industry", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Skala / promienie / cienie */
  --ax-radius:   12px;
  --ax-radius-sm: 8px;
  --ax-shadow:   0 18px 50px -20px rgba(14, 43, 22, .35);
  --ax-shadow-sm: 0 6px 18px -8px rgba(14, 43, 22, .28);
  --ax-header-h: 76px;
  --ax-maxw: 1240px;
  --ax-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---- Reset lokalny chrome (bez dotykania treści) ---- */
.ax-header *, .ax-footer *, .ax-skip { box-sizing: border-box; }
.ax-header, .ax-footer { font-family: var(--ax-font); -webkit-font-smoothing: antialiased; }

/* ---- Typografia treści: wierność oryginałowi przez aliasy @font-face ----
   Fonty Adobe zastąpione OTWARTYMI, samohostowanymi (fonts.css) pod ORYGINALNYMI
   nazwami rodzin, więc reguły motywu działają bez zmian i bez Typekit:
     industry      -> Archivo (OFL)   [Cyrylica: Montserrat]
     proxima-nova  -> Montserrat (OFL)
   Oryginalny motyw: body = industry (workhorse), .h2-big = proxima-nova.
   Dlatego NIE nadpisujemy już globalnie fontów treści — niech zadziała oryginalna
   typografia na otwartych zamiennikach. Antyaliasing zostaje. */
body, .body { -webkit-font-smoothing: antialiased; }

/* ---- Skip link ---- */
.ax-skip {
  position: fixed; top: 10px; left: 10px; z-index: 1200;
  transform: translateY(-160%);
  background: var(--ax-green); color: #fff; font-weight: 700;
  padding: 12px 18px; border-radius: var(--ax-radius-sm);
  text-decoration: none; box-shadow: var(--ax-shadow-sm);
  transition: transform .18s var(--ax-ease);
}
.ax-skip:focus { transform: translateY(0); outline: 3px solid var(--ax-accent); outline-offset: 2px; }

/* Wspólny focus dla chrome */
.ax-header a:focus-visible, .ax-header button:focus-visible,
.ax-footer a:focus-visible, .ax-footer button:focus-visible {
  outline: 3px solid var(--ax-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
.ax-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ax-ease), border-color .25s var(--ax-ease), box-shadow .25s var(--ax-ease);
}
.ax-header[data-scrolled] {
  background: rgba(255, 255, 255, .96);
  border-bottom-color: var(--ax-line);
  box-shadow: 0 8px 24px -18px rgba(14, 43, 22, .5);
}
.ax-header__bar {
  max-width: var(--ax-maxw); margin: 0 auto;
  min-height: var(--ax-header-h);
  padding: 0 clamp(16px, 4vw, 40px);
  display: flex; align-items: center; gap: 24px;
}
.ax-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.ax-logo img { display: block; height: 40px; width: auto; }

/* ---- Nav desktop ---- */
.ax-nav { margin-inline-start: auto; }
.ax-nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.ax-nav__item { position: relative; }
.ax-nav__link, .ax-nav__btn {
  display: inline-flex; align-items: center; gap: 7px;
  font: inherit; font-weight: 600; font-size: .94rem;
  letter-spacing: .01em; color: var(--ax-ink);
  background: none; border: 0; cursor: pointer;
  padding: 10px 14px; border-radius: var(--ax-radius-sm);
  text-decoration: none; line-height: 1;
  transition: color .15s var(--ax-ease), background .15s var(--ax-ease);
}
.ax-nav__link::after, .ax-nav__btn::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px;
  height: 2px; background: var(--ax-green); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ax-ease);
}
.ax-nav__link:hover, .ax-nav__btn:hover,
.ax-nav__btn[aria-expanded="true"] { color: var(--ax-green); background: var(--ax-bg-soft); }
.ax-nav__link:hover::after, .ax-nav__btn:hover::after,
.ax-nav__btn[aria-expanded="true"]::after { transform: scaleX(1); }

.ax-nav__chev {
  width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform .2s var(--ax-ease); opacity: .7;
}
.ax-nav__btn[aria-expanded="true"] .ax-nav__chev { transform: rotate(-135deg) translateY(-1px); }

/* ---- Mega dropdown ---- */
.ax-mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 460px; background: var(--ax-white);
  border: 1px solid var(--ax-line); border-radius: var(--ax-radius);
  box-shadow: var(--ax-shadow); padding: 18px;
  opacity: 0; visibility: hidden; transition: opacity .18s var(--ax-ease), transform .18s var(--ax-ease);
}
.ax-mega[data-open], .ax-nav__item--has-mega:hover .ax-mega {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
/* Mostek nad odstępem przycisk↔panel — bez niego kursor "gubił" hover w przerwie
   i panel znikał, zanim dało się na niego najechać. */
.ax-mega::before {
  content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 16px;
}
.ax-mega[hidden] { display: block; } /* JS steruje [data-open]; hidden tylko a11y na starcie */
.ax-mega__title {
  margin: 0 0 12px; padding: 0 8px 10px; font-family: var(--ax-head);
  font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ax-slate); border-bottom: 1px solid var(--ax-line);
}
.ax-mega__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 14px; }
.ax-mega__link {
  display: block; padding: 9px 8px; border-radius: var(--ax-radius-sm);
  color: var(--ax-ink); text-decoration: none; font-size: .9rem; font-weight: 500;
  transition: background .14s var(--ax-ease), color .14s var(--ax-ease);
}
.ax-mega__link:hover { background: var(--ax-bg-soft); color: var(--ax-green); }

/* ---- Akcje (język + hamburger) ---- */
.ax-actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }

.ax-lang { position: relative; }
.ax-lang__btn {
  display: inline-flex; align-items: center; gap: 7px;
  font: inherit; font-weight: 700; font-size: .85rem; color: var(--ax-ink);
  background: var(--ax-bg-soft); border: 1px solid var(--ax-line);
  padding: 8px 12px; border-radius: 999px; cursor: pointer;
  transition: border-color .15s var(--ax-ease), background .15s var(--ax-ease);
}
.ax-lang__btn:hover, .ax-lang__btn[aria-expanded="true"] { border-color: var(--ax-green); color: var(--ax-green); }
.ax-lang__globe {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid currentColor; position: relative; opacity: .85;
}
.ax-lang__globe::after {
  content: ""; position: absolute; inset: 1px; border-radius: 50%;
  border-left: 2px solid currentColor; border-right: 2px solid currentColor; transform: scaleX(.5);
}
.ax-lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 200px;
  list-style: none; margin: 0; padding: 8px; background: var(--ax-white);
  border: 1px solid var(--ax-line); border-radius: var(--ax-radius); box-shadow: var(--ax-shadow);
}
.ax-lang__opt {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: var(--ax-radius-sm);
  color: var(--ax-ink); text-decoration: none; font-size: .9rem; font-weight: 500;
}
.ax-lang__opt:hover { background: var(--ax-bg-soft); }
.ax-lang__opt.is-active { color: var(--ax-green); font-weight: 700; background: var(--ax-bg-soft); }
.ax-lang__code {
  flex: 0 0 auto; min-width: 30px; text-align: center; font-size: .72rem; font-weight: 800;
  letter-spacing: .04em; padding: 3px 6px; border-radius: 5px; background: var(--ax-green); color: #fff;
}
.ax-lang__opt.is-active .ax-lang__code { background: var(--ax-accent); color: var(--ax-green-900); }
.ax-lang__flag {
  flex: 0 0 auto; width: 26px; height: 18px; border-radius: 3px; object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15, 27, 26, .12); display: block;
}
.ax-lang__btn .ax-lang__flag { width: 24px; height: 16px; }

/* ---- Hamburger ---- */
.ax-burger {
  display: none; width: 44px; height: 44px; padding: 0; cursor: pointer;
  background: var(--ax-bg-soft); border: 1px solid var(--ax-line); border-radius: var(--ax-radius-sm);
}
.ax-burger__box { display: inline-flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.ax-burger__line, .ax-burger__line::before, .ax-burger__line::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ax-ink); border-radius: 2px;
  transition: transform .22s var(--ax-ease), opacity .22s var(--ax-ease);
}
.ax-burger__line { position: relative; }
.ax-burger__line::before { position: absolute; top: -7px; }
.ax-burger__line::after  { position: absolute; top: 7px; }
.ax-burger[aria-expanded="true"] .ax-burger__line { background: transparent; }
.ax-burger[aria-expanded="true"] .ax-burger__line::before { transform: translateY(7px) rotate(45deg); }
.ax-burger[aria-expanded="true"] .ax-burger__line::after  { transform: translateY(-7px) rotate(-45deg); }

/* ---- Panel mobilny ---- */
.ax-mobile {
  display: none; background: var(--ax-bg);
  padding: 8px clamp(16px, 4vw, 40px) 24px;
  border-top: 1px solid var(--ax-line);
  max-height: calc(100dvh - var(--ax-header-h)); overflow-y: auto;
}
.ax-mobile > nav, .ax-mobile__lang { max-width: var(--ax-maxw); margin-inline: auto; }
.ax-mnav { list-style: none; margin: 0; padding: 0; }
.ax-mnav > li { border-bottom: 1px solid var(--ax-line); }
.ax-mnav__link, .ax-mnav__toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font: inherit; font-weight: 600; font-size: 1.05rem; color: var(--ax-ink);
  background: none; border: 0; cursor: pointer; padding: 16px 4px; text-decoration: none; text-align: left;
}
.ax-mnav__toggle[aria-expanded="true"] { color: var(--ax-green); }
.ax-mnav__sub { list-style: none; margin: 0; padding: 0 0 12px; }
.ax-mnav__sub li a { display: block; padding: 10px 4px 10px 16px; color: var(--ax-slate); text-decoration: none; font-size: .98rem; }
.ax-mnav__sub li a:hover { color: var(--ax-green); }
.ax-mobile__lang { margin-top: 18px; }
.ax-mobile__langlabel {
  margin: 0 0 10px; font-size: .76rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ax-slate);
}
.ax-mobile__langlist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }

/* ============================================================
   HEADER — wariant strony głównej (przezroczysty nad hero z filmem)
   Jak agralex.pl: pasek nakłada się na hero, menu schowane w hamburgerze
   na WSZYSTKICH szerokościach. Po przewinięciu — ciemnozielony pasek + logo.
   ============================================================ */
.ax-header--home {
  position: fixed; left: 0; right: 0; top: 0;
  background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: none; box-shadow: none;
}
/* nawigacja zawsze w hamburgerze; akcje dosunięte do prawej (nav nie rozpycha) */
.ax-header--home .ax-nav { display: none; }
.ax-header--home .ax-actions { margin-inline-start: auto; }
.ax-header--home .ax-burger { display: inline-flex; background: transparent; border-color: rgba(255, 255, 255, .55); }
.ax-header--home .ax-burger__line,
.ax-header--home .ax-burger__line::before,
.ax-header--home .ax-burger__line::after { background: #fff; }
/* białe elementy nad ciemnym hero */
.ax-header--home .ax-logo img { filter: brightness(0) invert(1); }
.ax-header--home .ax-logo { opacity: 0; visibility: hidden; transition: opacity .25s var(--ax-ease); }
.ax-header--home .ax-lang__btn {
  background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .4); color: #fff;
}
.ax-header--home .ax-lang__cur { color: #fff; }
/* po przewinięciu: ciemnozielony pasek, logo się pojawia */
.ax-header--home[data-scrolled] { background: var(--ax-green-900); box-shadow: 0 8px 24px -18px rgba(0, 0, 0, .6); }
.ax-header--home[data-scrolled] .ax-logo { opacity: 1; visibility: visible; }
/* panel hamburgera (białe tło) działa na każdej szerokości na home */
.ax-header--home[data-mobile-open] { background: var(--ax-green-900); }
.ax-header--home[data-mobile-open] .ax-mobile { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.ax-footer {
  font-family: var(--ax-font); color: var(--ax-foot-fg);
  background: linear-gradient(180deg, var(--ax-foot-bg2), var(--ax-foot-bg));
  border-top: 4px solid var(--ax-accent);
  scroll-margin-top: calc(var(--ax-header-h) + 12px);
}
.ax-foot__top {
  max-width: var(--ax-maxw); margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 40px) 40px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px;
}
/* logo AGRALEX GROUP (zielone) wybielone na ciemnym footerze */
.ax-foot__logo { display: block; height: 44px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.ax-foot__blurb { margin: 0 0 20px; font-size: .95rem; line-height: 1.65; color: var(--ax-foot-fg); max-width: 38ch; }
.ax-foot__blurb strong { color: #fff; }
.ax-foot__socials { display: flex; gap: 10px; }
.ax-foot__social {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
  color: #fff; font-weight: 800; text-decoration: none; transition: background .15s var(--ax-ease), transform .15s var(--ax-ease);
}
.ax-foot__social:hover { background: var(--ax-green); transform: translateY(-2px); }

.ax-foot__h {
  margin: 0 0 16px; font-family: var(--ax-head);
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff;
}
.ax-foot__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ax-foot__list a, .ax-foot__more, .ax-foot__rodo, .ax-foot__address a {
  color: var(--ax-foot-fg); text-decoration: none; font-size: .9rem; transition: color .14s var(--ax-ease);
}
.ax-foot__list a:hover, .ax-foot__more:hover, .ax-foot__rodo:hover, .ax-foot__address a:hover { color: #fff; text-decoration: underline; }
.ax-foot__more { display: inline-block; margin-top: 12px; font-weight: 700; color: #fff; }
.ax-foot__address { font-style: normal; line-height: 1.8; font-size: .9rem; color: var(--ax-foot-muted); }
.ax-foot__address strong { color: #fff; }
.ax-foot__address a { display: inline-block; }
.ax-foot__contact .ax-foot__address a + a { margin-left: 0; }
.ax-foot__rodo {
  display: inline-block; margin-top: 16px; font-weight: 700; color: #fff;
  border: 1px solid rgba(255, 255, 255, .25); padding: 8px 14px; border-radius: 999px;
}
.ax-foot__rodo:hover { background: rgba(255, 255, 255, .08); text-decoration: none; }

.ax-foot__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.ax-foot__bottom {
  max-width: var(--ax-maxw); margin: 0 auto;
  padding: 22px clamp(16px, 4vw, 40px);
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .84rem; color: var(--ax-foot-muted);
}
.ax-foot__bottom p { margin: 0; }
.ax-foot__credit a { color: var(--ax-foot-fg); text-decoration: none; }
.ax-foot__credit a:hover { color: #fff; text-decoration: underline; }

/* ============================================================
   RWD
   ============================================================ */
@media (max-width: 1080px) {
  .ax-foot__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 980px) {
  .ax-nav { display: none; }
  .ax-burger { display: inline-flex; }
  .ax-header[data-mobile-open] + * { } /* placeholder */
  .ax-header[data-mobile-open] .ax-mobile { display: block; }
}
@media (max-width: 560px) {
  .ax-foot__top { grid-template-columns: 1fr; }
  .ax-lang__cur { display: inline; }
  .ax-mobile__langlist { grid-template-columns: 1fr; }
}

/* ============================================================
   Strona główna — „Nasi dostawcy" jako poziomy slider (swipe)
   Motyw układał logo pionowo; robimy przewijalny rząd ze snapem.
   ============================================================ */
.div-flex-dostawcy {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: clamp(20px, 5vw, 56px);
  align-items: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--ax-line) transparent;
}
.div-flex-dostawcy::-webkit-scrollbar { height: 6px; }
.div-flex-dostawcy::-webkit-scrollbar-thumb { background: var(--ax-line); border-radius: 6px; }
.div-flex-dostawcy .dostawcy-div {
  flex: 0 0 auto !important;
  scroll-snap-align: center;
  display: flex; align-items: center; justify-content: center;
  min-width: clamp(180px, 60vw, 260px); min-height: 110px;
}
.div-flex-dostawcy .img-filtered { max-height: 64px; width: auto; object-fit: contain; }

/* ============================================================
   Strona główna — hero pełnoekranowy (też mobile)
   Motyw w breakpoincie daje .heading-section{height:100%} → hero się zapadał.
   Wymuszamy pełny viewport (dvh = stabilne przy pasku adresu na mobile).
   ============================================================ */
.heading-section { min-height: 100dvh; }
.heading-section .div-hero-bg { min-height: 100dvh; }

/* O NAS — na mobile bez grafiki z silosem (sama treść) */
@media (max-width: 991px) {
  #onas .div-photo-flex { display: none !important; }
}

/* ============================================================
   Strona /o-nas/ — czytelne bloki tekstu + pull-quote
   ============================================================ */
.content-o-nas-section .container-onas { max-width: 920px; margin-inline: auto; }
.content-o-nas-section .par-o-nas p {
  font-size: clamp(1rem, 0.96rem + 0.3vw, 1.12rem);
  line-height: 1.8;
  color: var(--ax-ink);
  margin: 0 0 1.15em;
  max-width: 72ch;
}
/* akapit wiodący — pierwszy w „O firmie" */
.content-o-nas-section:not(.what) .par-o-nas p:first-child {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  line-height: 1.7;
  color: var(--ax-slate);
}
.content-o-nas-section .par-o-nas strong { color: var(--ax-green-700); }

/* pull-quote — ważny cytat wydzielony z treści */
.ax-pullquote {
  margin: 2.2em auto; max-width: 60ch; padding: 4px 0 4px 28px;
  border-left: 4px solid var(--ax-accent);
  font-family: var(--ax-head);
  font-size: clamp(1.3rem, 1.1rem + 1.2vw, 1.9rem);
  line-height: 1.35; font-weight: 600; color: var(--ax-green-700);
}

/* lista „Czym się zajmujemy?" — czytelniejsze pozycje */
.content-o-nas-section.what .par-o-nas p { margin: 0 0 .55em; line-height: 1.5; max-width: none; }
.content-o-nas-section.what .row { gap: 8px 0; }

/* ============================================================
   Treść (mirror) — poprawki czytelności na mobile
   Sekcje menu home (#oferta / w-hidden-main) są projektowane pod hover
   (ciemna nakładka pojawia się po najechaniu). Na dotyku hovera brak, więc
   jasny tekst leżał na jasnym zdjęciu bez marginesów. Dodajemy stały scrim,
   marginesy boczne i czytelne, blokowe linki (większe pola dotyku).
   ============================================================ */
@media (max-width: 991px) {
  .ovarlay1 {
    background: linear-gradient(180deg, rgba(8, 30, 16, .58), rgba(8, 30, 16, .74)) !important;
    padding: 28px 22px !important;
  }
  .ovarlay1 .div-flex,
  .ovarlay1 .w-dyn-list { opacity: 1 !important; height: auto !important; }
  .ovarlay1 .h3-opis-menu { color: #fff !important; }
  .ovarlay1 .sec-sect-link {
    display: block; padding: 9px 0; color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .55); line-height: 1.3;
  }
  .ovarlay1 .sec-sect-link:hover,
  .ovarlay1 .sec-sect-link:focus-visible { color: var(--ax-accent) !important; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .ax-header, .ax-skip, .ax-nav__link, .ax-nav__btn, .ax-nav__chev, .ax-mega,
  .ax-mega__link, .ax-lang__btn, .ax-burger__line, .ax-burger__line::before,
  .ax-burger__line::after, .ax-foot__social {
    transition: none !important;
  }
  .ax-nav__link::after, .ax-nav__btn::after { transition: none !important; }
}

/* Aktualności: ukryj datę dodania wpisu (na życzenie). Klasa Webflow news-list. */
.flex-date-line,
.h5-date-news { display: none !important; }
