/* Banner container: override Shoptet 50% grid */
.in-index .banners-content.body-banners > div {
  width: 100% !important;
  padding: 0 !important;
}

/* Top banner — two-column layout (aboutus style) */
.top-banner {
  display: flex;
  gap: 20px;
  margin: 0 auto 70px;
  padding: 0 12px;
}

.top-banner *,
.top-banner *::before,
.top-banner *::after {
  box-sizing: border-box;
}

/* Match Shoptet .container widths at each breakpoint */
@media (min-width: 768px) {
  .top-banner {
    max-width: 742px;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .top-banner {
    max-width: 972px;
  }
}

@media (min-width: 1200px) {
  .top-banner {
    max-width: 1178px;
  }
}

@media (min-width: 1440px) {
  .top-banner {
    max-width: 1394px;
  }
}

/* Left — Video */
.top-banner__left {
  position: relative;
  width: 55%;
  aspect-ratio: 16 / 9;
  border-radius: 25px;
  overflow: hidden;
  background: #000;
}

.top-banner__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right — Text card (green) */
.top-banner__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 42%;
  padding: 25px 35px;
  border-radius: 25px;
  background-color: #239d38;
  background-image: url("https://www.eroute.cz/user/documents/upload/aboutus/aboutus1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
}

.top-banner__title {
  margin: 0 0 20px;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 112.71%;
  letter-spacing: -1.05px;
}

.top-banner__title span {
  color: #f8c844;
}

.top-banner__description {
  margin: 0 0 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 134%;
  letter-spacing: -0.75px;
}

.top-banner__link {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 10px 20px;
  border-radius: 41.5px;
  background: #efbb2d;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 112.71%;
  text-decoration: none !important;
}

.top-banner__link::after {
  content: "";
  margin-left: 5px;
  display: inline-block;
  width: 7px;
  height: 13px;
  background-image: url("https://www.eroute.cz/user/documents/upload/arrow.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* ===== Responsive (max-width) ===== */

@media (max-width: 1200px) {
  .top-banner__title {
    font-size: 22px;
  }

  .top-banner__description {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .top-banner {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .top-banner__left,
  .top-banner__right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .top-banner__right {
    padding: 20px;
  }

  .top-banner__title {
    font-size: 24px;
  }

  .top-banner__description {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .top-banner {
    gap: 15px;
  }

  .top-banner__right {
    padding: 15px;
  }

  .top-banner__title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .top-banner__description {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .top-banner__link {
    font-size: 16px;
    padding: 8px 16px;
  }
}
