@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --lp-bg: #ffffff;
  --lp-ink: #1b1b1b;
  --lp-muted: #7a746d;
  --lp-accent: #2a2a2a;
  --lp-accent-soft: #e9ecef;
  --lp-card: #ffffff;
}

.landing-page {
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--lp-ink);
  background: radial-gradient(1200px 500px at 20% 0%, #ffffff 0%, #ffffff 45%, #f8f9fa 100%);
  overflow-x: hidden;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4rem;
}

.landing-hero.has-primary-banner {
  padding-top: 3.75rem;
}

.landing-page .promo-banner-section {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.landing-page .promo-banner-section.promo-banner-primary {
  padding-top: 1.5rem !important;
  padding-bottom: 1.25rem !important;
}

.landing-page .promo-banner-section.promo-banner-secondary {
  padding-top: 1.25rem !important;
  padding-bottom: 2rem !important;
}

.landing-hero::before,
.landing-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.5;
  z-index: 0;
}

.landing-hero::before {
  width: 360px;
  height: 360px;
  background: #f5f5f5;
  top: -140px;
  right: 8%;
}

.landing-hero::after {
  width: 220px;
  height: 220px;
  background: #f5f5f5;
  bottom: -90px;
  left: 5%;
}

.hero-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 26px;
  padding: 3rem;
  box-shadow: 0 18px 50px rgba(16, 16, 16, 0.08);
  border: 1px solid #e9ecef;
}

.hero-title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 3.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--lp-muted);
}

.hero-cta .btn {
  border-radius: 8px;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-accent {
  background: var(--lp-ink);
  color: #fff;
}

.btn-accent:hover {
  background: #000;
  color: #fff;
}

.btn-outline-ink {
  background: #fff;
  border: 1px solid #dee2e6;
  color: #1b1b1b;
}

.hero-visual {
  min-height: 420px;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 45%, #f5f5f5 100%);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px dashed rgba(31, 31, 31, 0.2);
}

.hero-visual.has-image::before {
  display: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: #1b1b1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-nav:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.hero-nav:focus-visible {
  outline: 2px solid rgba(27, 27, 27, 0.6);
  outline-offset: 2px;
}

.hero-nav.prev {
  left: 16px;
}

.hero-nav.next {
  right: 16px;
}

.hero-nav.is-hidden {
  display: none;
}

.hero-dots {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #ced4da;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.is-active {
  background: #1b1b1b;
  transform: scale(1.1);
}

.hero-dot:focus-visible,
.spotlight-dot:focus-visible,
.brand-dot:focus-visible {
  outline: 2px solid rgba(27, 27, 27, 0.6);
  outline-offset: 2px;
}

.hero-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(255, 255, 255, 0.65);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.hero-slide .hero-tag {
  z-index: 1;
}

.hero-slide-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 62px;
  z-index: 1;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-slide-title {
  margin: 0 0 0.2rem;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
}

.hero-slide-subtitle {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
  opacity: 0.96;
}

[dir="rtl"] .landing-page .hero-card,
[dir="rtl"] .landing-page .hero-title,
[dir="rtl"] .landing-page .hero-subtitle {
  text-align: right;
}

[dir="rtl"] .landing-page .hero-cta {
  justify-content: flex-end;
}

[dir="rtl"] .landing-page .hero-tag {
  left: auto;
  right: 22px;
}

[dir="rtl"] .landing-page .hero-slide-copy,
[dir="rtl"] .landing-page .hero-slide-title,
[dir="rtl"] .landing-page .hero-slide-subtitle {
  text-align: right;
}

.value-strip {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 28px rgba(18, 18, 18, 0.06);
  border: 1px solid #e9ecef;
}

.value-strip i {
  color: #1b1b1b;
}

.category-rail .btn {
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  background: #fff;
  border: 1px solid #e9ecef;
  color: #2b2b2b;
  font-weight: 600;
  margin: 0.35rem 0.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-rail .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 15, 15, 0.12);
}

.category-tiles {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.category-tile {
  position: relative;
  border-radius: 20px;
  min-height: 170px;
  overflow: hidden;
  padding: 1.5rem;
  color: #1f1f1f;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(16, 16, 16, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(16, 16, 16, 0.12);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}

.category-tile span {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.category-tile.women,
.category-tile.theme-1 { background: linear-gradient(135deg, #f5f5f5, #ffffff); }
.category-tile.men,
.category-tile.theme-2 { background: linear-gradient(135deg, #f0f0f0, #f8f9fa); }
.category-tile.kids,
.category-tile.theme-3 { background: linear-gradient(135deg, #f8f9fa, #ffffff); }
.category-tile.shoes,
.category-tile.theme-4 { background: linear-gradient(135deg, #f5f5f5, #ffffff); }
.category-tile.sportswear,
.category-tile.theme-5 { background: linear-gradient(135deg, #f5f5f5, #ffffff); }
.category-tile.sale,
.category-tile.theme-6 { background: linear-gradient(135deg, #f5f5f5, #ffffff); }

.category-tile.has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.category-tile.has-image::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.category-tile.has-image span {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1199px) {
  .category-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .category-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: center;
}

.spotlight-band {
  background: linear-gradient(120deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 22px;
  padding: 2rem 2.5rem;
  border: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.spotlight-carousel {
  position: relative;
}

.spotlight-item {
  display: none;
  animation: spotlightFade 0.4s ease both;
}

.spotlight-item.is-active {
  display: flex;
}

.spotlight-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.spotlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #dee2e6;
  transition: transform 0.2s ease, background 0.2s ease;
}

.spotlight-dot.is-active {
  background: #1b1b1b;
  transform: scale(1.1);
}

.spotlight-logo {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  flex-shrink: 0;
}

.spotlight-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.spotlight-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6c757d;
  font-weight: 600;
}

.spotlight-title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 0.4rem;
}

.spotlight-text {
  color: var(--lp-muted);
  margin-bottom: 0;
}

.spotlight-cta {
  border-radius: 8px;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
}

.brand-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(16, 16, 16, 0.08);
}

.brand-card img {
  max-width: 100%;
  max-height: 28px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.brand-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-more-link {
  color: #111111 !important;
  text-decoration-line: underline !important;
  text-decoration-style: solid !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px;
}

.brand-more-link:hover,
.brand-more-link:focus {
  color: #000000 !important;
  text-decoration-line: underline !important;
}

@media (max-width: 1199px) {
  .brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
  .brand-card { min-height: 56px; padding: 0.5rem; }
  .brand-card img { max-height: 24px; }
  .brand-grid.is-rotating .brand-card { display: none; }
  .brand-grid.is-rotating .brand-card.is-visible { display: flex; }
  .brand-grid.is-rotating .brand-placeholder { display: flex; }
  .brand-placeholder { visibility: hidden; }
  .brand-dots { display: flex; justify-content: center; gap: 0.4rem; margin-top: 0.9rem; }
  .brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: #dee2e6;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .brand-dot.is-active { background: #1b1b1b; transform: scale(1.1); }
  .brand-more {
    min-height: 1.1rem;
    visibility: hidden;
  }
  .brand-more.is-visible { visibility: visible; }
}

@media (max-width: 991px) {
  .landing-hero { padding: 3.5rem 0 2.5rem; }
  .hero-card { padding: 2rem; border-radius: 22px; }
  .hero-visual { min-height: 300px; margin-top: 1.5rem; }
  .hero-carousel { min-height: 300px; }
  .landing-page .promo-banner-section {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .landing-page .promo-banner-section.promo-banner-primary {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .landing-page .promo-banner-section.promo-banner-secondary {
    padding-top: 1rem !important;
    padding-bottom: 1.5rem !important;
  }
}

@media (max-width: 767px) {
  .landing-page .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  .landing-page .py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .landing-page .py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .landing-page .promo-banner-section {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .landing-page .promo-banner-section.promo-banner-primary {
    padding-top: 0.9rem !important;
    padding-bottom: 0.85rem !important;
  }
  .landing-page .promo-banner-section.promo-banner-secondary {
    padding-top: 0.85rem !important;
    padding-bottom: 1.2rem !important;
  }

  .hero-card { padding: 1.6rem; box-shadow: 0 10px 30px rgba(16, 16, 16, 0.08); }
  .hero-title { font-size: 1.95rem; }
  .hero-subtitle { font-size: 0.95rem; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .hero-visual { min-height: 230px; }
  .hero-carousel { min-height: 230px; }
  .hero-tag { left: 14px; bottom: 14px; font-size: 0.75rem; padding: 0.4rem 0.7rem; }
  .hero-slide-copy { left: 14px; right: 14px; bottom: 54px; }
  .hero-slide-title { font-size: 1rem; }
  .hero-slide-subtitle { font-size: 0.82rem; }
  [dir="rtl"] .landing-page .hero-tag { left: auto; right: 14px; }

  .value-strip { padding: 0.9rem 1rem; }
  .value-strip .fw-semibold { font-size: 0.85rem; }
  .value-strip i { font-size: 0.9rem; }
  .value-strip.row { margin-left: 0; margin-right: 0; }
  .value-strip .col-6,
  .value-strip .col-lg-3 { padding-left: 0.35rem; padding-right: 0.35rem; }

  .category-tile { min-height: 120px; padding: 1rem; }
  .category-tile span { font-size: 1.1rem; }

  .brand-card { min-height: 50px; padding: 0.45rem; }
  .brand-card img { max-height: 22px; }

  .story-band { padding: 1.6rem; text-align: center; }
  .story-band .btn { width: 100%; }

  .promise-card { padding: 1.1rem; }
  .newsletter-box { padding: 1.6rem; }

  .spotlight-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6rem;
  }

  .spotlight-cta {
    width: 100%;
    text-align: center;
  }
}

@keyframes spotlightFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 575px) {
  .hero-title { font-size: 1.7rem; }
  .hero-subtitle { font-size: 0.92rem; }
  .hero-tag { font-size: 0.7rem; }

  .value-strip { text-align: left; }
  .value-strip .col-6 { flex: 0 0 100%; max-width: 100%; }

  .category-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
  .category-tile { min-height: 90px; padding: 0.9rem; }
  .category-tile span { font-size: 1rem; line-height: 1.2; }
}

.editorial-card {
  background: var(--lp-card);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(16, 16, 16, 0.08);
}

.editorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(180, 180, 180, 0.15));
}

.editorial-title {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.story-band {
  background: linear-gradient(120deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 22px;
  padding: 2.5rem;
  border: 1px solid #e9ecef;
}

.promise-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 12px 28px rgba(16, 16, 16, 0.06);
  height: 100%;
  border: 1px solid #e9ecef;
}

.newsletter-box {
  background: #fff;
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 14px 32px rgba(16, 16, 16, 0.06);
  border: 1px solid #e9ecef;
}

.newsletter-box input {
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
}

.app-pill {
  display: inline-block;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  border: 1px solid #2b2b2b;
  font-weight: 600;
  margin: 0.35rem 0.5rem 0 0;
}

.landing-fade {
  animation: landingFade 0.8s ease both;
}

@keyframes landingFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Promo Banner Styles */
.promo-banner-fullwidth {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 175px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-banner-fullwidth:hover {
  transform: none;
  box-shadow: none;
}

.promo-overlay {
  position: absolute;
  inset: 0;
}

.promo-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2.5rem;
}

.promo-text-left { text-align: left; }
.promo-text-center { text-align: center; }
.promo-text-right { text-align: right; }

.promo-headline {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.promo-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.promo-cta-btn {
  display: inline-block;
  background: #fff;
  color: #1b1b1b;
  border: none;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.promo-banner-split {
  display: flex;
  min-height: 175px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(120deg, #ffffff 0%, #f5f5f5 100%);
  border: 1px solid #e9ecef;
}

.promo-split-text {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-split-text .promo-headline {
  color: #1b1b1b;
}

.promo-split-text .promo-subtitle {
  color: #6c757d;
}

.promo-split-text .promo-cta-btn {
  background: #1b1b1b;
  color: #fff;
  width: fit-content;
}

.promo-split-text .promo-cta-btn:hover {
  background: #000;
}

.promo-split-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 135px;
}

.promo-banner-fullwidth.promo-size-medium {
  min-height: 155px;
}

.promo-banner-fullwidth.promo-size-small {
  min-height: 135px;
}

.promo-banner-split.promo-size-medium {
  min-height: 155px;
}

.promo-banner-split.promo-size-small {
  min-height: 135px;
}

.promo-size-medium .promo-content {
  padding: 2rem;
}

.promo-size-small .promo-content {
  padding: 1.5rem;
}

.promo-size-medium .promo-headline {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.promo-size-small .promo-headline {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.promo-size-medium .promo-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
}

.promo-size-small .promo-subtitle {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.promo-size-medium .promo-split-text {
  padding: 2rem;
}

.promo-size-small .promo-split-text {
  padding: 1.5rem;
}

.promo-banner-split.promo-size-medium .promo-split-image {
  min-height: 120px;
}

.promo-banner-split.promo-size-small .promo-split-image {
  min-height: 105px;
}

@media (max-width: 767px) {
  .promo-banner-fullwidth {
    min-height: 150px;
  }

  .promo-content {
    padding: 1.5rem;
  }

  .promo-banner-split {
    flex-direction: column-reverse;
  }

  .promo-split-text {
    padding: 1.5rem;
    text-align: center;
  }

  .promo-split-text .promo-cta-btn {
    width: 100%;
    text-align: center;
  }

  .promo-split-image {
    min-height: 115px;
  }

  .promo-banner-fullwidth.promo-size-medium {
    min-height: 135px;
  }

  .promo-banner-fullwidth.promo-size-small {
    min-height: 120px;
  }

  .promo-banner-split.promo-size-medium {
    min-height: 135px;
  }

  .promo-banner-split.promo-size-small {
    min-height: 120px;
  }

  .promo-size-medium .promo-content {
    padding: 1.25rem;
  }

  .promo-size-small .promo-content {
    padding: 1rem;
  }

  .promo-size-medium .promo-split-text {
    padding: 1.25rem;
  }

  .promo-size-small .promo-split-text {
    padding: 1rem;
  }

  .promo-banner-split.promo-size-medium .promo-split-image {
    min-height: 100px;
  }

  .promo-banner-split.promo-size-small .promo-split-image {
    min-height: 90px;
  }
}
