/* ============================================
   FONTY GLOBALNE
   ============================================ */
html, body { height: 100%; }

@font-face {
  font-family: 'PPNeueMontreal';
  src: url('/assets/fonts/PPNeueMontreal-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PPNeueMontreal';
  src: url('/assets/fonts/PPNeueMontreal-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   ZMIENNE KOLORÓW
   ============================================ */
:root {
  --ada-accent: #f47f5b;
  --ada-text: #111111;
  --ada-muted: #666666;
  --ada-border: #e3e3e3;
  --ada-bg: #ffffff;
  --ada-footer-bg: #232323;
}

/* ============================================
   RESET + GLOBAL
   ============================================ */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'PPNeueMontreal', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--ada-text);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   LAYOUT STRONY
   ============================================ */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAGŁÓWEK
   ============================================ */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: auto;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.brand-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.brand-text-main {
  font-size: 1.4rem;
  font-weight: 600;
}

.brand-text-sub {
  font-size: 0.85rem;
  color: var(--ada-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 2px;
}

.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
}

.nav-btn {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid #ddd;
  background: #fff;
  transition: 0.2s;
}

.nav-btn:hover {
  background: #f8f8f8;
  border-color: #ccc;
}

.nav-btn.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ============================================
   PRZYCISKI
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
}

.btn-primary {
  background: var(--ada-accent);
  color: #fff;
  border-color: var(--ada-accent);
}

.btn-primary:hover { filter: brightness(1.06); }

.btn-outline {
  border-color: #cccccc;
  color: var(--ada-text);
}

.btn-outline:hover { background: #f8f8f8; }

.btn-block { width: 100%; }

.btn-donate {
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================
   TREŚĆ GŁÓWNA
   ============================================ */
main {
  padding: 6px 0 40px;
  flex: 1 0 auto;
}

/* ============================================
   HERO – STRONA GŁÓWNA (JEDYNA WERSJA)
   ============================================ */
.hero{
  padding: 26px 0 0; /* dół = 0 -> CTA może dotykać dołu sekcji */
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch; /* nie center */
}

.hero-left{
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
}

.hero-heading {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 14px 0;
}

.hero-subheading {
  font-size: 1rem;
  color: var(--ada-muted);
  max-width: 52ch;
  margin: 0;
}

/* CTA na dole */
.hero-cta{
  margin-top: auto;
  margin-bottom: 0;
  padding: 0;
  line-height: 0; /* eliminuje „ghost spacing” wrappera */
}

.hero-cta .btn{ line-height: normal; }

.hero-photo {
  border-left: 1px solid #e0e0e0;
  padding-left: 24px;
}

.hero-photo img {
  display: block;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

/* ============================================
   SEKCJE
   ============================================ */
.section {
  padding: 10px 0 0;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--ada-muted);
  margin-bottom: 14px;
}

/* ============================================
   KAFLE ZBIÓREK
   ============================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.12s ease, transform 0.12s ease;
}

.card:hover {
  background: #fafafa;
  transform: translateY(-1px);
}

.card-img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 14px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-title {
  font-size: 1rem;
  font-weight: 500;
}

.card-subtitle {
  font-size: 1.0rem;
  color: var(--ada-muted);
}

.amount-line {
  font-size: 0.9rem;
  margin-top: 4px;
}

.amount-placeholder { visibility: hidden; }
.amount-highlight { font-weight: 600; }

.progress-wrapper { margin-top: 6px; }

.progress {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #eeeeee;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 40%;
  background: var(--ada-accent);
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--ada-muted);
  margin-top: 4px;
}

.card-footer {
  padding: 0 18px 14px 18px;
}

.card-footer--two{
  display: flex;
  gap: 10px;
}

.card-footer--two .btn{
  flex: 1;
  text-align: center;
}

@media (max-width: 520px){
  .card-footer--two{ flex-direction: column; }
}

/* ============================================
   FILTRY LISTY
   ============================================ */
.filters {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  border-radius: 999px;
  border: 1px solid var(--ada-border);
  padding: 6px 12px;
  font-size: 0.8rem;
  cursor: pointer;
}

.filter-pill.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* ============================================
   STRONA POJEDYNCZEJ ZBIÓRKI
   ============================================ */
.single-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.single-photo {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

.single-header { margin-top: 18px; }

.single-name {
  font-size: 2.1rem;
  font-weight: 500;
}

.single-subtitle {
  font-size: 1rem;
  color: var(--ada-muted);
  margin-top: 6px;
}

.single-amount-block { margin: 18px 0 10px; }

.single-amount-main {
  font-size: 1.6rem;
  font-weight: 500;
}

.single-amount-sub {
  font-size: 0.9rem;
  color: var(--ada-muted);
}

.single-progress { margin: 10px 0 18px; }
.single-progress .progress { height: 14px; }

.donation-ctas {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.donation-box {
  border-radius: 18px;
  border: 1px solid var(--ada-border);
  padding: 14px 16px;
  background: #ffffff;
}

.donation-box-main { border-color: var(--ada-accent); }

.donation-box-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.donation-box-text {
  font-size: 0.82rem;
  color: var(--ada-muted);
  margin-bottom: 10px;
}

.amount-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.amount-pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--ada-border);
  font-size: 0.8rem;
  cursor: pointer;
}

.amount-pill.selected {
  background: var(--ada-accent);
  color: #fff;
  border-color: var(--ada-accent);
}

.amount-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--ada-border);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.single-content {
  font-size: 0.94rem;
  line-height: 1.6;
}

.single-section-title {
  margin-top: 20px;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 1rem;
}

.bank-info {
  font-size: 0.85rem;
  border-radius: 16px;
  border: 1px solid var(--ada-border);
  padding: 10px 12px;
}

/* ============================================
   STRONA DAROWIZNY (v1)
   ============================================ */
.donate-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.donate-header { margin: 24px 0 10px; }

.donate-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.donate-subtitle {
  font-size: 0.95rem;
  color: var(--ada-muted);
}

.donate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 1px;
}

.donate-main-box {
  border-radius: 18px;
  border: 1px solid var(--ada-border);
  padding: 16px 18px;
  background: #ffffff;
}

.donate-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.donate-option {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  font-size: 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--ada-border);
  cursor: pointer;
}

.donate-option.active {
  background: var(--ada-accent);
  color: #fff;
  border-color: var(--ada-accent);
}

.donate-label { font-size: 0.85rem; margin-bottom: 4px; }

.donate-input,
.donate-select {
  width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--ada-border);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.donate-help {
  font-size: 0.8rem;
  color: var(--ada-muted);
  margin-bottom: 10px;
}

.donate-check {
  font-size: 0.8rem;
  margin: 8px 0 14px;
}

.donate-check input { margin-right: 6px; }

.donate-check a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: inherit;
}

.donate-check a:hover { text-decoration-thickness: 2px; }

.donate-side-box {
  font-size: 0.85rem;
  border-radius: 18px;
  border: 1px solid var(--ada-border);
  padding: 14px 16px;
  background: #fafafa;
  line-height: 1.5;
}

.donate-side-title {
  font-weight: 500;
  margin-bottom: 6px;
}

/* ============================================
   STICKY FOOTER – zawsze na dole ekranu
   ============================================ */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page > main { flex: 1 0 auto; }

.footer,
.footer2 {
  margin-top: auto !important;
}

/* ============================================
   GALERIA (karty)
   ============================================ */
.card-media{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: #f3f3f3;
}

.card-main-img{
  width: 100%;
  aspect-ratio: 16/10;
  display: block;
  object-fit: cover;
}

.gal-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
}

/* buttons */
.card-media .gal-btn{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
}

.card-media .gal-btn::before{
  content:"";
  width:10px;
  height:10px;
  border-right:3px solid rgba(255,255,255,.95);
  border-bottom:3px solid rgba(255,255,255,.95);
  display:block;
}

.card-media .gal-prev{ left: 8px; }
.card-media .gal-next{ right: 8px; }

.card-media .gal-prev::before{ transform: rotate(135deg); margin-left:2px; }
.card-media .gal-next::before{ transform: rotate(-45deg); margin-right:2px; }

.card-media .gal-btn{
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}

@media (hover: hover) and (pointer: fine) {
  .card-media:hover .gal-btn{
    opacity: 1;
    pointer-events: auto;
  }
}

@media (hover: none), (pointer: coarse) {
  .card-media .gal-btn{
    opacity: 1;
    pointer-events: auto;
  }
}

.gal-dots{
  position:absolute;
  left:0; right:0; bottom:10px;
  display:flex;
  justify-content:center;
  gap:6px;
  pointer-events:none;
}

.gal-dots i{
  width:6px; height:6px; border-radius:99px;
  background: rgba(255,255,255,.55);
}

.gal-dots i.on{
  background: rgba(255,255,255,.95);
}

/* ============================================
   RESPONSYWNOŚĆ – GŁÓWNA CZĘŚĆ STRONY
   ============================================ */
@media (max-width: 900px) {
  .hero{
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .hero-photo {
    border-left: none;
    padding-left: 0;
  }

  .donation-ctas {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .header-right {
    margin-left: auto;
  }

  .donate-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 800px) {
  .site-header-inner {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .header-right {
    margin-left: auto;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    order: 3;
  }
}

@media (max-width: 600px) {
  .wrapper,
  .single-wrapper,
  .donate-wrapper {
    padding: 0 16px;
  }

  .hero-heading {
    font-size: 2.1rem;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card-body {
    padding: 12px 14px 10px;
  }

  .card-title {
    font-size: 0.95rem;
  }

  /* Header tuning na telefon */
  .site-header-inner {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 12px 0;
  }

  .brand {
    gap: 6px;
    min-width: 0;
    flex-shrink: 1;
  }

  .brand-text-main {
    font-size: 0.95rem;
    line-height: 1.1;
  }

  .brand-text-sub {
    font-size: 0.7rem;
    line-height: 1.1;
  }

  .header-right { flex-shrink: 0; }

  .donate-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
}
@media (max-width: 600px) {
  .hero-cta{
    padding-top: 14px;  /* było 0 – dajemy oddech */
  }
}

@media (max-width: 600px) {
  main{
    padding-top: 0;     /* było 6px */
  }

  .hero{
    padding-top: 14px;  /* było 26px */
  }
}

/* HERO – czytelność (desktop + mobile) */
.hero-subheading{
  font-size: 1.1rem;      /* było 1rem */
  line-height: 1.45;
  max-width: 60ch;        /* było 520px / 52ch – dajemy więcej miejsca */
  margin-bottom: 18px;    /* zostawiamy oddech przed CTA */
}

@media (max-width: 900px){
  .hero-subheading{
    font-size: 1.05rem;
    max-width: 62ch;
  }
}

@media (max-width: 600px){
  .hero-subheading{
    font-size: 1.2rem;   /* na iPhone czytelniejsze */
    line-height: 1.2;
  }
}

.hero-heading{
  letter-spacing: -0.01em;
}

/* ============================================================
   HERO – FINAL (desktop full-height + mobile 1-column)
   Wklej NA SAM KONIEC style.css
   ============================================================ */

/* DESKTOP / TABLET */
.hero{
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;          /* kolumny mają pełną wysokość wiersza */
}

/* lewa kolumna */
.hero-left{
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* CTA na dole */
.hero-cta{
  margin-top: auto;
}

/* prawa kolumna + obraz */
.hero-photo{
  align-self: stretch;           /* ważne dla grid item */
  min-height: 0;
  display: flex;                 /* umożliwia rozciągnięcie img */
}

.hero-photo img{
  width: 100%;
  height: 100%;                  /* ma wypełniać wysokość kolumny */
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* MOBILE: zawsze 1 kolumna (żeby obraz NIE był z boku) */
@media (max-width: 900px){
  .hero{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* na mobile nie wymuszamy height:100% bo wtedy może ucinać */
  .hero-photo{
    display: block;
  }

  .hero-photo img{
    height: auto;
    width: 100%;
    aspect-ratio: 16 / 10;       /* stabilna wysokość na iPhone */
    object-fit: cover;
  }
}
/* ============================================================
   HERO PHOTO – DESKTOP FORCE FULL HEIGHT
   Wklej NA SAM KONIEC style.css
   ============================================================ */

@media (min-width: 901px){

  /* grid MUSI rozciągać elementy w pionie */
  .hero{
    align-items: stretch !important;
  }

  /* prawa kolumna musi być rozciągnięta jak wiersz gridu */
  .hero-photo{
    align-self: stretch !important;
    height: 100% !important;
    min-height: 0 !important;
    display: flex !important;
  }

  /* obraz ma wypełniać całą wysokość kolumny */
  .hero-photo > img{
    height: 100% !important;
    width: 100% !important;
    flex: 1 1 auto !important;
    object-fit: cover !important;
    display: block !important;
  }
}
/* ============================================================
   HERO PHOTO – DESKTOP: zawsze pełna wysokość hero (pewne rozwiązanie)
   Wklej NA SAM KONIEC style.css
   ============================================================ */

@media (min-width: 901px){

  .hero{
    align-items: stretch !important;   /* lewa i prawa kolumna mają tę samą wysokość */
  }

  .hero-photo{
    align-self: stretch !important;    /* prawa kolumna rozciągnięta do wysokości wiersza */
    position: relative !important;
    overflow: hidden !important;       /* żeby zaokrąglenie działało */
    border-radius: 24px !important;

    /* jeśli chcesz mieć linię i odstęp po lewej jak wcześniej */
    border-left: 1px solid #e0e0e0 !important;
    padding-left: 24px !important;
  }

  /* zdjęcie wypełnia CAŁY obszar kontenera */
  .hero-photo > img{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;       /* radius jest na kontenerze */
  }
}
/* ============================================================
   HERO PHOTO – kwadrat 1:1 na desktop
   ============================================================ */

@media (min-width: 901px){

  /* hero nie narzuca wysokości */
  .hero{
    align-items: start;           /* ważne */
  }

  /* prawa kolumna = KWADRAT */
  .hero-photo{
    aspect-ratio: 1 / 1;          /* <<< KLUCZ */
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
  }

  /* obraz zawsze wypełnia kwadrat */
  .hero-photo > img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* ============================================================
   HERO gallery – spójna z campaign gallery
   ============================================================ */

/* Desktop: hero-photo jako kwadrat */
@media (min-width: 901px){
  .hero{ align-items: start; }

  .hero-photo.hero-media{
    aspect-ratio: 1 / 1;
    width: 100%;
  }

  /* obraz ma wypełniać cały kwadrat */
  .hero-photo.hero-media .card-main-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Mobile: nie wymuszamy 1:1, bo zjada ekran – dajemy 16:10 */
@media (max-width: 900px){
  .hero-photo.hero-media{
    aspect-ratio: 16 / 10;
    width: 100%;
  }

  .hero-photo.hero-media .card-main-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* opcjonalnie: delikatnie większe przyciski w hero */
.hero-photo.hero-media .gal-btn{
  width: 44px;
  height: 44px;
}


/* HERO photo: kwadrat na desktop, spójnie z galerią kart */
@media (min-width: 901px){
  .hero-photo.hero-media{
    aspect-ratio: 1 / 1;
    width: 100%;
  }
  .hero-photo.hero-media .card-media{
    height: 100%;
  }
  .hero-photo.hero-media .card-main-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
  }
}
/* HERO gallery: kontener ma być „ramką” */
.hero-media{
  padding-left: 0px;              /* jeśli chcesz zachować oddech od linii */
  display: flex;
  align-items: stretch;
}

/* card-media w hero ma wypełniać całą wysokość i szerokość */
.hero-media .card-media{
  width: 100%;
  height: 100%;
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

/* obraz wypełnia ramkę */
.hero-media .card-main-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* strzałki i overlay niech będą w tej ramce */
.hero-media .gal-overlay{ position:absolute; inset:0; }
.hero-media .gal-btn{ z-index: 5; }
.hero-media .gal-dots{ z-index: 5; }


/* ===== HERO GALLERY: ma wypełniać całą wysokość sekcji HERO ===== */

.hero{
  align-items: stretch; /* już masz, ale zostawiam jako gwarancję */
}

.hero-media{
  align-self: stretch;   /* wymuś pełną wysokość komórki grida */
  display: flex;
  min-height: 0;         /* ważne przy flex/grid */
  padding-left: 0px;    /* zostaw jeśli chcesz odstęp od linii */
  border-left: 0px solid #e0e0e0; /* jeśli chcesz linię */
}

.hero-media .card-media{
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

/* TO JEST NAJWAŻNIEJSZE: wyłącz aspect-ratio z kart zbiórek */
.hero-media .card-main-img{
  aspect-ratio: auto !important; /* kasuje 16/10 */
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
