/* ===== WRAPPER ===== */
.top-banners-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0; /* žádná mezera */
  margin: 0;
}

/* jemná 1px linka mezi bannery */
.top-banner + .top-banner {
  border-top: 1px solid #d6d0cf; /* jemná linka */
}

/* ===== BANNER ===== */
.top-banner {
  display: flex;
  width: 100%;
}

/* otočení jen na desktopu */
.top-banner.reverse {
  flex-direction: row-reverse;
}

/* ===== SLOUPCE ===== */
.top-banner-image,
.top-banner-content {
  flex: 0 0 50%;
  max-width: 50%;
}

/* ===== OBRÁZEK ===== */
.top-banner-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
}

/* ===== OBSAH ===== */
.top-banner-content {
  background: #f2edec;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

/* TEXT */
.top-banner-inner {
  font-family: 'Work Sans', sans-serif;
}

.top-banner-inner h2 {
  font-family: "Roboto Mono", sans-serif;
  font-weight: 300;
  font-size: 42px;
  margin-bottom: 40px;
  color: #343434;
}

/* BUTTON */
.top-banner-button {
  padding: 10px 20px;
  font-size: 16px;
  color: #343434;
  border: 2px solid #343434;
  text-decoration: none;
  transition: 0.3s;
}

.top-banner-button:hover {
  background: #343434;
  color: #fff;
}

/* ===== MOBIL + TABLET ===== */
@media (max-width: 960px) {

  .top-banner {
    flex-direction: column !important;
  }

  .top-banner-image,
  .top-banner-content {
    max-width: 100%;
  }

  .top-banner-image img {
    height: auto;
  }

  .top-banner-content {
    padding: 40px 20px;
    text-align: center;
  }

  .top-banner-inner h2 {
    font-size: 28px;
  }
}