/* ===== WRAPPER ===== */
.top-banners-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}

/* ===== HLAVNÍ BLOK ===== */
.top-banner-v2 {
  display: flex;
  justify-content: center;
  width: 100%;
  background: #fafafa;

  padding: 80px 0;
  padding-left: 180px;
  padding-right: 0;

  gap: 140px;

  box-sizing: border-box;
  min-width: 0;
}

/* ===== OBRÁZEK ===== */
.top-banner-v2-image {
  flex: 0 1 420px;
  width: 420px;

  display: flex;
  align-items: center;
  justify-content: center;

  max-width: 100%;
  min-width: 0;
}

.top-banner-v2-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== PRAVÁ STRANA ===== */
.top-banner-v2-content {
  flex: 1;
  max-width: 980px;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
}

/* ===== TEXT ===== */
.top-banner-v2-inner {
  width: 100%;
  max-width: 520px;

  font-family: 'Work Sans', sans-serif;
  margin-left: 20px;
}

/* ===== BANNER 1 H2 ===== */
.top-banner-v2-inner h2 {
  font-family: "Roboto Mono", sans-serif;
  font-weight: 300;
  font-size: 34px;
  line-height: 1.5;
  margin-bottom: 22px;
  color: #343434;
}

/* ===== BANNER 1 P ===== */
.top-banner-v2-inner p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #343434;
}

/* ===== BUTTON ===== */
.top-banner-v2-button {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 20px;
  font-size: 15px;
  color: #343434;
  border: 2px solid #343434;
  text-decoration: none;
  transition: 0.3s;
}

.top-banner-v2-button:hover {
  background: #343434;
  color: #fff;
}

/* ===== DRUHÝ BANNER ===== */
.top-banner {
  display: flex;
  flex-direction: row-reverse;
}

/* ===== TEXT DRUHÉHO BANNERU ===== */
.top-banner-inner {
  max-width: 420px;
}

/* ===== CITACE VE 2. BANNERU ===== */
.top-banner .top-banner-inner h2 {
  font-family: "Roboto Mono", sans-serif;
  font-weight: 300;
  font-size: 29px;
  line-height: 1.5;
  color: #343434;

  text-align: center; /* 👈 JEDINÁ NOVÁ ZMĚNA */
}

/* ===== MOBIL ===== */
@media (max-width: 960px) {

  .top-banner-v2 {
    flex-direction: column;

    padding-left: 15px;
    padding-right: 15px;

    gap: 30px;
    padding-top: 50px;
  }

  .top-banner-v2-image {
    width: 100%;
    flex: none;
  }

  .top-banner-v2-content {
    justify-content: center;
  }

  .top-banner-v2-inner {
    margin-left: 0;
    text-align: center;
  }

  .top-banner-v2-inner h2 {
    font-size: 26px;
  }
}

/* ===== POJISTKA ===== */
body {
  overflow-x: hidden;
}