.footer-banners .footer-banner {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.banners-content.body-banners > div {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}
.body-banners img {
  width: 100%;
}

.mth-cats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.mth-cat {
  position: relative !important;
  display: flex !important;
  align-items: flex-end;
  min-height: 230px;
  padding: 0 22px 20px 34px;
  border-radius: var(--mth-radius);
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
}
.mth-cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.4s ease;
}
.mth-cat:hover img {
  transform: scale(1.04);
}

/* dlazdice s plnou barvou */
.mth-cat--solid {
  background: var(--mth-yellow);
}

.mth-cat__title {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  padding-bottom: 8px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}
.mth-cat__arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  border-radius: 50%;
  background: var(--mth-yellow);
  color: #fff;
  transition: transform 0.2s ease;
}
.mth-cat__arrow svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mth-cat--solid .mth-cat__arrow {
  background: var(--mth-brown);
}
.mth-cat:hover .mth-cat__arrow {
  transform: translateX(3px);
}

/* dekorativni obrys kelimku */
.mth-cat__deco {
  position: absolute;
  right: 46px;
  top: 29px;
  width: 149px;
  height: 173px;
  z-index: 0;
  color: #c8692a;
}
.mth-cat__deco svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 991px) {
  .mth-cats__grid {
    grid-template-columns: 1fr;
  }
  .mth-cat__deco {
    right: 20px;
    width: 110px;
    height: 128px;
  }
}

@media (max-width: 639px) {
  .mth-cat__title {
    font-size: 24px;
  }
}
