

h1, h2, h3, h4{
    color: #5c3d3d;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

h1, h2, h3, h4 {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  color:#374c4a;
}

/* Добавим небольшую задержку для красивого каскада */
h2 {
  font-size:25px;
  animation-delay: 0.2s;
}

h3 {
  font-size:22px;
  animation-delay: 0.4s;
}

h4 {
  animation-delay: 0.6s;
}

@media(max-width:680px){
  .h5{
    font-size:18px;
  }
  h2{
    font-size: 22px;
  } 
  
}

 /* Базовые отступы секции на крупных экранах */
@media (min-width: 992px) {
  #hero {
    padding-top: 5rem;   /* py-lg-6 в разметке добавляет ещё, можно подстроить */
    padding-bottom: 5rem;
  }
}
/* 1) Глобально отключаем горизонтальный скролл */
html { overflow-x: clip; }               /* современные браузеры */
body { overflow-x: hidden; width: 100%; } /* фолбэк */


/* Визуально скрыто, но доступно для ассистивных технологий */
.visually-hidden-important {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/* Для заданного вами формата чекбокса */
.form-group.checkbox-group {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  }
.form-group.checkbox-group input[type="checkbox"] {
  margin-top: .3rem;
}


.content {
  border-radius: 5px;
  box-shadow: 2px 4px 5px #d8d4ca;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.content:hover {
  box-shadow: 0 8px 16px #d8d4ca;
  transform: translateY(-2px);
}

.content-box {
  border: 2px solid #d8d4ca;
  border-radius: 5px;
  box-shadow: 0 6px 12px #d8d4ca;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hero Section – WissenFinanz */

.hero-section {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Немного «воздуха» на больших экранах */
@media (min-width: 992px) {
  .hero-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Заголовок */
.hero-title {
  font-weight: 700;
  line-height: 1.2;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

/* Подзаголовок */
.hero-subtitle {
  font-weight: 400;
}

/* Основной текст */
.hero-text {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 40rem;
}

/* Кнопки / зона CTA */
.hero-cta .btn {
  min-width: 180px;
}

/* Правая карточка */
.hero-card {
  border-radius: 1.5rem;
}

/* Немной декора: прозрачные круги на фоне (опционально) */
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.hero-section::before {
  width: 280px;
  height: 280px;
  top: -60px;
  right: -40px;
  background: radial-gradient(circle, #ffffff 0, transparent 60%);
}

.hero-section::after {
  width: 220px;
  height: 220px;
  bottom: -40px;
  left: -20px;
  background: radial-gradient(circle, #ffffff 0, transparent 60%);
}

/* Адаптив: выравнивание текста по центру на маленьких */
@media (max-width: 575.98px) {
  .hero-section {
    text-align: left;
  }

  .hero-cta {
    justify-content: flex-start;
  }
}

/* Section background with gradient, using Bootstrap CSS variables where possible */
.learn-section {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--bs-dark) 0%,
    var(--bs-primary) 40%,
    var(--bs-secondary) 100%
  );
  color: var(--bs-white);
}

/* Optional soft overlay to improve readability */
.learn-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.learn-section .container {
  position: relative;
  z-index: 1;
}

/* Title & intro */
.learn-title {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.learn-intro {
  opacity: 0.9;
}

/* Cards */
.learn-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1.2rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
              background-color 0.2s ease, border-color 0.2s ease;
}

.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.35);
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Header in cards */
.learn-card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.75rem;
}

/* Circular "check" icon */
.learn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--bs-primary);
  color: var(--bs-white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* List styling */
.learn-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

.learn-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1rem;
  color: var(--bs-secondary);
}

/* Footer text */
.learn-footer {
  font-size: 0.98rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* Responsive tweaks */
@media (min-width: 992px) {
  .learn-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 575.98px) {
  .learn-card {
    padding: 1.3rem 1.2rem;
  }
}

/* Section: Für wen eignet sich WissenFinanz? */

.audience-section {
  position: relative;
  overflow: hidden;
}

/* Легкий декоративный фон */
.audience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(0, 0, 0, 0.03) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.03) 0, transparent 55%);
  pointer-events: none;
}

.audience-section .container {
  position: relative;
  z-index: 1;
}

/* Заголовок и интро */
.audience-title {
  font-weight: 700;
  color: var(--bs-dark);
}

.audience-intro {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.98rem;
}

/* Карточки */
.audience-card {
  background-color: var(--bs-white);
  border-radius: 1.1rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.85rem 2rem rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.09);
}

/* Бейджи над текстом */
.audience-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Текст карточек */
.audience-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.8);
}

/* Нижний текст */
.audience-footer {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
}

/* Адаптив: чуть больше отступов на больших экранах */
@media (min-width: 992px) {
  .audience-section {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}

/* About Page Wrapper */
.about-page {
  min-height: 100vh;
}

/* Section 1: Hero */
.about-title {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-lead {
  font-weight: 500;
}

.about-image-wrapper {
  max-width: 600px;
  margin-left: auto;
}

.about-image {
  object-fit: cover;
}

/* Section 2: Our approach */
.about-approach-section {
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-section-title {
  font-weight: 600;
}

/* Pillar cards */
.about-pillars .about-pillar-card {
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Section 3: Audience & vision */
.about-audience-section {
  margin-top: 3rem;
}

.about-tag-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.3rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
  font-size: 0.96rem;
  line-height: 1.5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-tag-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.9rem 2.1rem rgba(0, 0, 0, 0.1);
}

.about-closing-text {
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Responsive tweaks */
@media (min-width: 992px) {
  .about-page {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 575.98px) {
  .about-approach-section {
    padding: 1.5rem 1.25rem;
  }

  .about-tag-card {
    padding: 1.1rem 1rem;
  }
}

/* FAQ Section */

.faq-section {
  position: relative;
  overflow: hidden;
}

/* Легкая декоративная сетка */
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 0, rgba(0, 0, 0, 0.03) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.03) 0, transparent 55%);
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

/* Заголовок и интро */
.faq-title {
  font-weight: 700;
  color: var(--bs-dark);
}

.faq-intro {
  font-size: 0.98rem;
  color: rgba(0, 0, 0, 0.7);
}

/* Accordion Styling */
.faq-accordion .accordion-item {
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
  margin-bottom: 0.75rem;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-button {
  font-weight: 500;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--bs-white);
  background-color: var(--bs-primary);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.35);
}

/* Иконка стрелочки в открытом состоянии */
.faq-accordion .accordion-button::after {
  transition: transform 0.2s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

/* Тело аккордеона */
.faq-accordion .accordion-body {
  font-size: 0.96rem;
  line-height: 1.7;
  background-color: #ffffff;
}

/* Адаптивные отступы */
@media (min-width: 992px) {
  .faq-section {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}

/* Pricing Section */

.pricing-section {
  position: relative;
  overflow: hidden;
}

/* Легкий градиентный фон сверху/снизу */
.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(13, 110, 253, 0.06) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(108, 117, 125, 0.06) 0, transparent 55%);
  pointer-events: none;
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

/* Заголовок и интро */
.pricing-title {
  font-weight: 700;
  color: var(--bs-dark);
}

.pricing-intro {
  font-size: 0.98rem;
  color: rgba(0, 0, 0, 0.7);
}

/* Карточки */
.pricing-card {
  border-radius: 1.3rem;
  padding: 2rem 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Выделенная (featured) карточка */
.pricing-card-featured {
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.1),
    rgba(108, 117, 125, 0.08)
  );
  border-color: rgba(13, 110, 253, 0.35);
}

/* Заголовочная часть */
.pricing-card-header {
  margin-bottom: 1.5rem;
}

.pricing-name {
  font-weight: 600;
}

.pricing-badge {
  font-size: 0.9rem;
}

/* Лейбл "Am beliebtesten" */
.pricing-popular-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

/* Цена */
.pricing-price-wrap {
  margin-bottom: 1.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.25rem;
}

.pricing-price-value {
  font-size: 1.8rem;
  font-weight: 700;
}

.pricing-price-period {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
}

.pricing-hint {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
}

/* Список фич */
.pricing-features li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bs-primary);
}

/* CTA */
.pricing-cta .btn {
  font-weight: 500;
  border-radius: 999px;
}

/* Примечание под карточками */
.pricing-note {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
}

/* Адаптивные отступы */
@media (min-width: 992px) {
  .pricing-section {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}

/* Geschäftsmodell Section */

.business-model-section {
  position: relative;
  overflow: hidden;
}

/* Leichte, dezente Deko im Hintergrund */
.business-model-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 0, rgba(13, 110, 253, 0.06) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(33, 37, 41, 0.05) 0, transparent 55%);
  pointer-events: none;
}

.business-model-section .container {
  position: relative;
  z-index: 1;
}

/* Titel & Intro */
.business-title {
  font-weight: 700;
  color: var(--bs-dark);
}

.business-intro {
  font-size: 0.98rem;
  color: rgba(0, 0, 0, 0.75);
}

/* Cards */
.business-card {
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.1rem 2.2rem rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.09);
}

/* Nummern-Icon oben */
.business-icon-wrap {
  display: flex;
  align-items: center;
}

.business-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Footer-Text */
.business-footer {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
}

/* Extra Padding auf grossen Screens */
@media (min-width: 992px) {
  .business-model-section {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}

/* Оверлей на всю страницу */
.promo-banner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  padding: 1rem;              /* <— чтобы карточка не прилипала к краям */
  overflow-y: auto;           /* <— можно скроллить, если контент выше экрана */

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Когда нужно показать баннер */
.promo-banner-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Карточка баннера */
.promo-banner-content {
  max-width: 640px;
  width: 100%;
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.6);
  display: flex;
  flex-direction: column;

  max-height: calc(100vh - 2rem); /* <— карточка не выше экрана, учитывая padding */
}

/* Ссылка вокруг визуальной части */
.promo-banner-link {
  display: block;
  text-decoration: none;
}

/* Блок с картинкой */
.promo-banner-visual {
  width: 100%;
  /* вместо жёстких 70vh делаем ограничение по экрану и максимуму */
  height: 60vh;
  max-height: 500px;
  background-image: url('assets/images/banner.png'); /* путь относительно CSS-файла */
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: block;
}

/* Текст под картинкой */
.promo-banner-text {
  padding: 1.5rem 1.75rem 1.75rem;
  text-align: center;
}

.promo-banner-text h2 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.promo-banner-text p {
  margin-bottom: 1.25rem;
  color: #4b5563;
}

/* Кнопка */
.promo-banner-button {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #374c4a, #93ab9d);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

/* Адаптив */
@media (max-width: 575.98px) {
  .promo-banner-content {
    max-width: 100%;
    margin: 0;
    max-height: calc(100vh - 2rem); /* на мобиле тоже ограничиваем */
  }

  .promo-banner-text {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .promo-banner-text h2 {
    font-size: 1.2rem;
  }

  .promo-banner-visual {
    height: 50vh;   /* <— меньше высота визуала на маленьких экранах */
    max-height: 380px;
  }
}

/* Оверлей на всю страницу */
.promo-banner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  padding: 1rem;              /* <— чтобы карточка не прилипала к краям */
  overflow-y: auto;           /* <— можно скроллить, если контент выше экрана */

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Когда нужно показать баннер */
.promo-banner-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Карточка баннера */
.promo-banner-content {
  max-width: 640px;
  width: 100%;
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.6);
  display: flex;
  flex-direction: column;

  max-height: calc(100vh - 2rem); /* <— карточка не выше экрана, учитывая padding */
}

/* Ссылка вокруг визуальной части */
.promo-banner-link {
  display: block;
  text-decoration: none;
}

/* Блок с картинкой */
.promo-banner-visual {
  width: 100%;
  /* вместо жёстких 70vh делаем ограничение по экрану и максимуму */
  height: 60vh;
  max-height: 500px;
  background-image: url('assets/images/banner.png'); /* путь относительно CSS-файла */
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: block;
}

/* Текст под картинкой */
.promo-banner-text {
  padding: 1.5rem 1.75rem 1.75rem;
  text-align: center;
}

.promo-banner-text h2 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.promo-banner-text p {
  margin-bottom: 1.25rem;
  color: #4b5563;
}

/* Кнопка */
.promo-banner-button {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #374c4a, #93ab9d);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

/* Адаптив */
@media (max-width: 575.98px) {
  .promo-banner-content {
    max-width: 100%;
    margin: 0;
    max-height: calc(100vh - 2rem); /* на мобиле тоже ограничиваем */
  }

  .promo-banner-text {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .promo-banner-text h2 {
    font-size: 1.2rem;
  }

  .promo-banner-visual {
    height: 50vh;   /* <— меньше высота визуала на маленьких экранах */
    max-height: 380px;
  }
}


/* =========================
   ≥ 576px (малые экраны)
   ========================= */
@media (min-width: 576px) {
  .promo-banner-content {
    max-width: 580px;
    max-height: calc(100vh - 1rem);
  }

  .promo-banner-visual {
    height: 55vh;
    max-height: 450px;
  }

  .promo-banner-text {
    padding: 1.4rem 1.5rem 1.7rem;
  }

  .promo-banner-text h2 {
    font-size: 1.3rem;
  }
}

/* =========================
   ≥ 768px (планшеты)
   ========================= */
@media (min-width: 768px) {
  .promo-banner-content {
    max-width: 620px;
  }

  .promo-banner-visual {
    height: 60vh;
    max-height: 650px;
  }

  .promo-banner-text {
    padding: 1.5rem 1.75rem 1.75rem;
  }

  .promo-banner-text h2 {
    font-size: 1.4rem;
  }
}

/* =========================
   ≥ 992px (ноутбуки)
   ========================= */
@media (min-width: 992px) {
  .promo-banner-content {
    max-width: 600px;
  }

  .promo-banner-visual {
    height: 70vh;
    max-height: 650px;
  }

  .promo-banner-text h2 {
    font-size: 1.5rem;
  }

  .promo-banner-text p {
    font-size: 1rem;
  }
}

/* =========================
   ≥ 1200px (десктопы)
   ========================= */
@media (min-width: 1200px) {
  .promo-banner-visual {
    height: 70vh;
    max-height: 700px;
  }

  .promo-banner-content {
    border-radius: 1.75rem;
  }
}

/* =========================
   ≥ 1400px (очень широкие)
   ========================= */
@media (min-width: 1400px) {
  .promo-banner-overlay {
    padding: 2rem;
  }

  .promo-banner-content {
    max-width: 700px;
    max-height: calc(100vh - 4rem);
  }

  .promo-banner-visual {
    height: 70vh;
    max-height: 700px;
  }
}
