/* ==========================================================================
   PROM-IN BANNERS — SHARED TOKENS / SETTINGS
   Platí pro horní swiper bannery i spodní footer bannery
   ========================================================================== */

:root {
  --promin-green: #57c24e;
  --promin-green-2: #73df68;
  --promin-green-dark: #43ae3b;
  --promin-green-deep: #2f7e2d;

  --promin-bg: #050605;
  --promin-panel: #0c100d;
  --promin-white: #ffffff;
  --promin-text: rgba(255,255,255,0.88);
  --promin-text-soft: rgba(255,255,255,0.76);
  --promin-text-muted: rgba(255,255,255,0.58);

  --promin-border: rgba(255,255,255,0.08);
  --promin-border-green: rgba(87,194,78,0.22);

  --promin-radius-card: 28px;
  --promin-radius-inner: 22px;
  --promin-radius-pill: 999px;

  --promin-shadow:
    0 22px 55px rgba(0,0,0,0.30),
    0 0 0 1px rgba(255,255,255,0.03),
    inset 0 1px 0 rgba(255,255,255,0.04);

  --promin-shadow-hover:
    0 28px 70px rgba(0,0,0,0.36),
    0 0 0 1px rgba(87,194,78,0.14),
    0 0 28px rgba(87,194,78,0.10),
    inset 0 1px 0 rgba(255,255,255,0.05);

  --promin-btn:
    linear-gradient(90deg, #57c24e 0%, #43ae3b 100%);

  --promin-card-glow:
    radial-gradient(circle at 18% 14%, rgba(87,194,78,0.16) 0%, rgba(87,194,78,0.06) 20%, rgba(0,0,0,0) 40%),
    radial-gradient(circle at 82% 78%, rgba(87,194,78,0.10) 0%, rgba(87,194,78,0.03) 18%, rgba(0,0,0,0) 34%);
}

/* ==========================================================================
   PROM-IN HERO / ARTICLE SWIPER — GLAM GREEN SEXY LOOK
   BANERY úplně nahoře co vidí zákazník jako první
   pro strukturu:
   .swiper > .swiper-wrapper > .item.swiper-slide
   ========================================================================== */

/* ==========================================================================
   SWIPER WRAP
   Zjednodušené selektory, aby to fungovalo i když se na mobilu liší pomocné třídy swiperu
   ========================================================================== */

.swiper {
  position: relative;
  overflow: hidden;
  padding-bottom: 64px;
}

.swiper .swiper-wrapper {
  align-items: stretch;
}

.swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* ==========================================================================
   CARD
   ========================================================================== */

.swiper .item.swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: var(--promin-radius-card);
  background:
    var(--promin-card-glow),
    linear-gradient(145deg, #060706 0%, #0b0d0b 52%, #101611 100%);
  border: 1px solid var(--promin-border);
  box-shadow: var(--promin-shadow);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    filter 0.28s ease;
}

.swiper .item.swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(0,0,0,0) 18%, rgba(0,0,0,0.18) 56%, rgba(0,0,0,0.62) 100%);
  pointer-events: none;
  z-index: 1;
}

.swiper .item.swiper-slide:hover {
  transform: translateY(-4px);
  border-color: rgba(87,194,78,0.20);
  box-shadow: var(--promin-shadow-hover);
}

/* ==========================================================================
   IMAGE + LINK
   ========================================================================== */

.swiper .item.swiper-slide > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  text-decoration: none !important;
  color: inherit !important;
  overflow: hidden;
  border-radius: inherit;
}

.swiper .item.swiper-slide > a img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  filter:
    saturate(1.02)
    contrast(1.02)
    brightness(0.78);
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.swiper .item.swiper-slide:hover > a img {
  transform: scale(1.035);
  filter:
    saturate(1.05)
    contrast(1.04)
    brightness(0.74);
}

/* ==========================================================================
   TAGS
   ========================================================================== */

.swiper .item .tags {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  pointer-events: none;
}

.swiper .item .tags .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: var(--promin-radius-pill);
  background: rgba(255,255,255,0.94);
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 12px 24px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.65);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.swiper .item.swiper-slide-active .tags .tag,
.swiper .item.active .tags .tag {
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(238,255,236,0.96) 100%);
  box-shadow:
    0 12px 24px rgba(0,0,0,0.20),
    0 0 0 1px rgba(87,194,78,0.12);
}

/* ==========================================================================
   TEXT OVERLAY
   ========================================================================== */

.swiper .item .extended-banner-texts {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  pointer-events: none;
}

.swiper .item .extended-banner-texts::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  bottom: -18px;
  top: -72px;
  z-index: -1;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(4,6,4,0.16) 12%, rgba(4,6,4,0.52) 48%, rgba(4,6,4,0.82) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.35) 22%, #000 46%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.35) 22%, #000 46%);
}

.swiper .item .extended-banner-title {
  display: block;
  margin: 0;
  color: var(--promin-white);
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-shadow: 0 10px 22px rgba(0,0,0,0.34);
}

.swiper .item .extended-banner-text {
  display: block;
  max-width: 92%;
  margin: 0;
  color: var(--promin-text);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  text-shadow: 0 8px 18px rgba(0,0,0,0.28);
}

.swiper .item .extended-banner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--promin-radius-pill);
  background: rgba(255,255,255,0.96);
  color: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none !important;
  pointer-events: auto;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    filter 0.24s ease;
}

.swiper .item:hover .extended-banner-link {
  transform: translateY(-1px);
  background: var(--promin-btn);
  color: #fff;
  box-shadow:
    0 16px 30px rgba(87,194,78,0.28),
    0 10px 22px rgba(0,0,0,0.22);
}

/* ==========================================================================
   ACTIVE SLIDE
   ========================================================================== */

.swiper .item.swiper-slide-active,
.swiper .item.active {
  border-color: rgba(87,194,78,0.24);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.38),
    0 0 0 1px rgba(87,194,78,0.14),
    0 0 34px rgba(87,194,78,0.10),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */

.swiper .swiper-pagination {
  position: absolute !important;
  left: 16px !important;
  right: 16px !important;
  bottom: 18px !important;
  top: auto !important;
  z-index: 6;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: auto;
}

.swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  padding: 0;
  font-size: 0;
  line-height: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.28);
  box-shadow: none;
  opacity: 1;
  overflow: hidden;
  text-indent: -9999px;
  transition:
    width 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.swiper .swiper-pagination-bullet-active {
  width: 24px;
  background: linear-gradient(90deg, #57c24e 0%, #43ae3b 100%);
  box-shadow:
    0 0 0 1px rgba(87,194,78,0.18),
    0 6px 16px rgba(87,194,78,0.28);
}

/* ==========================================================================
   ARROWS
   ========================================================================== */

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  width: 56px;
  height: 56px;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 16px 30px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.70);
  color: #181818;
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease;
}

.swiper .swiper-button-prev {
  left: 12px;
}

.swiper .swiper-button-next {
  right: 12px;
}

.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: 800;
}

.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
  background: var(--promin-btn);
  color: #fff;
  box-shadow:
    0 18px 34px rgba(87,194,78,0.24),
    0 12px 24px rgba(0,0,0,0.24);
}

/* ==========================================================================
   TEXT VARIANTY KDYŽ NENÍ POPIS
   ========================================================================== */

.swiper .item .extended-banner-text:empty {
  display: none;
}

/* ==========================================================================
   DESKTOP / NOTEBOOK TUNING
   ========================================================================== */

@media (min-width: 1200px) {
  .swiper .item .extended-banner-title {
    max-width: 92%;
  }

  .swiper .item .extended-banner-text {
    max-width: 88%;
  }
}

@media (max-width: 1199px) {
  .swiper {
    padding-bottom: 58px;
  }

  .swiper .item.swiper-slide {
    border-radius: 24px;
  }

  .swiper .item .extended-banner-texts {
    left: 22px;
    right: 22px;
    bottom: 22px;
    gap: 10px;
  }

  .swiper .item .extended-banner-title {
    font-size: clamp(20px, 2.3vw, 25px);
  }

  .swiper .item .extended-banner-text {
    font-size: 14px;
    line-height: 1.42;
    max-width: 94%;
  }

  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    width: 52px;
    height: 52px;
  }
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 991px) {
  .swiper {
    padding-bottom: 54px;
  }

  .swiper .item.swiper-slide {
    border-radius: 22px;
  }

  .swiper .item.swiper-slide > a img {
    min-height: 520px;
  }

  .swiper .item .tags {
    top: 14px;
    left: 14px;
  }

  .swiper .item .tags .tag {
    min-height: 30px;
    padding: 7px 12px;
    font-size: 11px;
  }

  .swiper .item .extended-banner-texts {
    left: 18px;
    right: 18px;
    bottom: 20px;
    gap: 9px;
  }

  .swiper .item .extended-banner-title {
    font-size: 24px;
    line-height: 1.08;
  }

  .swiper .item .extended-banner-text {
    font-size: 14.5px;
    line-height: 1.45;
    max-width: 100%;
  }

  .swiper .item .extended-banner-link {
    min-height: 46px;
    padding: 0 19px;
    font-size: 14.5px;
  }

  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    width: 46px;
    height: 46px;
  }

  .swiper .swiper-button-prev::after,
  .swiper .swiper-button-next::after {
    font-size: 15px;
  }
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {
  .swiper {
    display: block !important;
    width: 100%;
    padding-bottom: 50px;
    overflow: hidden;
  }

  .swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }

  .swiper .swiper-slide,
  .swiper .item.swiper-slide {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .swiper .item.swiper-slide {
    border-radius: 20px;
  }

  .swiper .item.swiper-slide > a {
    display: block;
    width: 100%;
  }

  .swiper .item.swiper-slide > a img {
    min-height: 500px;
  }

  .swiper .item .tags {
    top: 12px;
    left: 12px;
  }

  .swiper .item .tags .tag {
    min-height: 30px;
    padding: 7px 12px;
    font-size: 11px;
  }

  .swiper .item .extended-banner-texts {
    left: 16px;
    right: 16px;
    bottom: 16px;
    gap: 9px;
  }

  .swiper .item .extended-banner-texts::before {
    left: -12px;
    right: -12px;
    bottom: -12px;
    top: -60px;
    border-radius: 22px;
  }

  .swiper .item .extended-banner-title {
    font-size: 22px;
    line-height: 1.1;
  }

  .swiper .item .extended-banner-text {
    font-size: 14px;
    line-height: 1.42;
    max-width: 100%;
  }

  .swiper .item .extended-banner-link {
    min-height: 44px;
    padding: 0 17px;
    font-size: 14px;
  }

  .swiper .swiper-pagination {
    bottom: 12px !important;
    gap: 6px;
  }

  .swiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .swiper .swiper-pagination-bullet-active {
    width: 18px;
  }

  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    width: 42px;
    height: 42px;
    top: 50%;
  }

  .swiper .swiper-button-prev {
    left: 10px;
  }

  .swiper .swiper-button-next {
    right: 10px;
  }
}

/* ==========================================================================
   EXTRA SMALL
   ========================================================================== */

@media (max-width: 480px) {
  .swiper .item.swiper-slide > a img {
    min-height: 440px;
  }

  .swiper .item .extended-banner-title {
    font-size: 20px;
  }

  .swiper .item .extended-banner-text {
    font-size: 13.5px;
  }

  .swiper .item .extended-banner-link {
    min-height: 42px;
    padding: 0 15px;
    font-size: 13.5px;
  }
}

/* ==========================================================================
   TOUCH / MOBILE DEVICES
   Bez pohybových hover efektů, jen vizuální změny
   Platí pro horní swiper bannery i spodní footer bannery
   ========================================================================== */

@media (hover: none), (pointer: coarse) {
  .swiper .item.swiper-slide:hover,
  .footer-banners.row.banner-wrapper.banners-row .footer-banner > a:hover {
    transform: none;
  }

  .swiper .item.swiper-slide:hover > a img,
  .footer-banners.row.banner-wrapper.banners-row .footer-banner > a:hover img {
    transform: none;
  }

  .swiper .item:hover .extended-banner-link,
  .footer-banners.row.banner-wrapper.banners-row .footer-banner > a:hover .extended-banner-link {
    transform: none;
  }

  .swiper .item.swiper-slide,
  .swiper .item.swiper-slide > a img,
  .swiper .item .extended-banner-link,
  .footer-banners.row.banner-wrapper.banners-row .footer-banner > a,
  .footer-banners.row.banner-wrapper.banners-row .footer-banner > a img,
  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-link {
    transition:
      background 0.24s ease,
      color 0.24s ease,
      box-shadow 0.24s ease,
      border-color 0.24s ease,
      filter 0.24s ease;
  }
}

/* ==========================================================================
   PROM-IN FOOTER BANNERS — GLAM GREEN SEXY LOOK
   pro strukturu:
   .footer-banners.row.banner-wrapper.banners-row > .footer-banner > a
   ========================================================================== */

/* ==========================================================================
   WRAPPER
   ========================================================================== */

.footer-banners.row.banner-wrapper.banners-row {
  position: relative;
  margin-top: 34px;
  row-gap: 20px;
}

.footer-banners.row.banner-wrapper.banners-row .footer-banner {
  display: flex;
}

/* ==========================================================================
   CARD
   ========================================================================== */

.footer-banners.row.banner-wrapper.banners-row .footer-banner > a {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--promin-radius-card);
  background:
    var(--promin-card-glow),
    linear-gradient(145deg, #060706 0%, #0b0d0b 52%, #101611 100%);
  border: 1px solid var(--promin-border);
  box-shadow: var(--promin-shadow);
  text-decoration: none !important;
  color: inherit !important;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    filter 0.28s ease;
}

.footer-banners.row.banner-wrapper.banners-row .footer-banner > a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(0,0,0,0) 18%, rgba(0,0,0,0.20) 56%, rgba(0,0,0,0.66) 100%);
}

.footer-banners.row.banner-wrapper.banners-row .footer-banner > a:hover {
  transform: translateY(-4px);
  border-color: rgba(87,194,78,0.20);
  box-shadow: var(--promin-shadow-hover);
}

/* ==========================================================================
   IMAGE
   ========================================================================== */

.footer-banners.row.banner-wrapper.banners-row .footer-banner > a img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  filter:
    saturate(1.02)
    contrast(1.02)
    brightness(0.78);
  transform: scale(1.001);
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.footer-banners.row.banner-wrapper.banners-row .footer-banner > a:hover img {
  transform: scale(1.035);
  filter:
    saturate(1.05)
    contrast(1.04)
    brightness(0.74);
}

/* ==========================================================================
   TEXT WRAP
   ========================================================================== */

.footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-texts {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  pointer-events: none;
}

.footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-texts::before {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  bottom: -16px;
  top: -70px;
  z-index: -1;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(4,6,4,0.16) 12%, rgba(4,6,4,0.54) 48%, rgba(4,6,4,0.84) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.35) 22%, #000 46%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.35) 22%, #000 46%);
}

/* ==========================================================================
   TITLES / TEXT
   ========================================================================== */

.footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-title {
  display: block;
  margin: 0;
  color: var(--promin-white) !important;
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-shadow: 0 10px 22px rgba(0,0,0,0.34);
}

.footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-text {
  display: block;
  margin: 0;
  max-width: 94%;
  color: var(--promin-text) !important;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 500;
  text-shadow: 0 8px 18px rgba(0,0,0,0.28);
}

.footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--promin-radius-pill);
  background: rgba(255,255,255,0.96);
  color: #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none !important;
  pointer-events: auto;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    filter 0.24s ease;
}

.footer-banners.row.banner-wrapper.banners-row .footer-banner > a:hover .extended-banner-link {
  transform: translateY(-1px);
  background: var(--promin-btn);
  color: #fff !important;
  box-shadow:
    0 16px 30px rgba(87,194,78,0.28),
    0 10px 22px rgba(0,0,0,0.22);
}

/* ==========================================================================
   GRID SPACING
   ========================================================================== */

.footer-banners.row.banner-wrapper.banners-row .footer-banner.col-lg-3 {
  margin-bottom: 0;
}

/* ==========================================================================
   DESKTOP TUNING
   ========================================================================== */

@media (min-width: 1200px) {
  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-title {
    max-width: 94%;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-text {
    max-width: 90%;
  }
}

@media (max-width: 1199px) {
  .footer-banners.row.banner-wrapper.banners-row {
    margin-top: 30px;
    row-gap: 18px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner > a {
    border-radius: 24px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner > a img {
    min-height: 480px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-texts {
    left: 20px;
    right: 20px;
    bottom: 20px;
    gap: 10px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-title {
    font-size: clamp(20px, 2.2vw, 24px);
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-text {
    font-size: 13.5px;
    line-height: 1.4;
    max-width: 100%;
  }
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 991px) {
  .footer-banners.row.banner-wrapper.banners-row {
    margin-top: 26px;
    row-gap: 16px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner > a {
    border-radius: 22px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner > a img {
    min-height: 420px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-texts {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 9px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-texts::before {
    left: -12px;
    right: -12px;
    bottom: -12px;
    top: -58px;
    border-radius: 22px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-title {
    font-size: 22px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-text {
    font-size: 13.8px;
    line-height: 1.42;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-link {
    min-height: 43px;
    padding: 0 17px;
    font-size: 13.8px;
  }
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {
  .footer-banners.row.banner-wrapper.banners-row {
    margin-top: 22px;
    row-gap: 14px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner > a {
    border-radius: 20px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner > a img {
    min-height: 360px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-texts {
    left: 16px;
    right: 16px;
    bottom: 16px;
    gap: 8px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-texts::before {
    left: -10px;
    right: -10px;
    bottom: -10px;
    top: -52px;
    border-radius: 20px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-title {
    font-size: 20px;
    line-height: 1.1;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-text {
    font-size: 13.5px;
    line-height: 1.4;
    max-width: 100%;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-link {
    min-height: 41px;
    padding: 0 15px;
    font-size: 13.5px;
  }
}

/* ==========================================================================
   EXTRA SMALL
   ========================================================================== */

@media (max-width: 480px) {
  .footer-banners.row.banner-wrapper.banners-row .footer-banner > a img {
    min-height: 320px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-title {
    font-size: 18px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-text {
    font-size: 13px;
  }

  .footer-banners.row.banner-wrapper.banners-row .footer-banner .extended-banner-link {
    font-size: 13px;
  }
}