/* LETTRANS – layout úpravy 2026-06 (footer stĺpce + agro technika).
   Načítava sa AŽ ZA lettrans.webflow.css, takže prepisuje pôvodné pravidlá. */

/* ---- FOOTER: "Naše služby" + "Dokumenty" vedľa seba ako dva stĺpce ---- */
.footer-cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 56px;
}

/* ---- AGRO: posledný (7.) box vycentrovaný do stredu posledného radu (desktop/tablet, 3 stĺpce) ---- */
@media (min-width: 768px) {
  .our-machine-card--center {
    grid-column: 2 / 3;
  }
}

/* ---- MOBIL (≤767px): footer stĺpce pod seba + odstup od loga; agro boxy 1 stĺpec na celú šírku ---- */
@media (max-width: 767px) {
  .footer-cols {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
  }
  .footer-side .yorkie {
    margin-top: 40px;
  }
  .our-machines-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr !important;
  }
  .our-machine-card--center {
    grid-column: auto !important;
  }
}
