/* ─── Button base ────────────────────────────────────────────────────────── */

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  padding: 14px 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.landing-btn--loud {
  background-color: #4850E5;
  color: #fff;
}

.landing-btn--loud:hover {
  background-color: #3d44c9;
  color: #fff;
}

/* ─── ClosingSection ──────────────────────────────────────────────────────── */

.new-landing-closing-section {
  display: flex;
  flex-direction: row;
  gap: 8px;
  background-color: #ffe600;
  border-radius: 20px;
  padding: 8px;
  overflow: hidden;
  margin: 72px 8px 8px;
}

/* Left panel (image) */
.new-landing-closing-section__left {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 552px;
}

.new-landing-closing-section__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('https://http2.mlstatic.com/storage/pog-cm-admin/calm-assets/new-landing-closing-desktop--e7acb27b.webp');
}

/* Right panel (title + CTA) */
.new-landing-closing-section__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 72px 32px 32px;
  min-height: 552px;
}

.new-landing-closing-section__cta-btn {
  align-self: flex-start;
}

.new-landing-closing-section__title {
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -2.88px;
  color: #282834;
  margin: 0;
  font-feature-settings: 'salt', 'calt' 0;
}

/* ─── Tablet + Mobile (below 1048px) ─────────────────────────────────────── */

@media only screen and (max-width: 1047px) {
  .new-landing-closing-section {
    min-height: 800px;
  }

  .new-landing-closing-section__image {
    background-image: url('https://http2.mlstatic.com/storage/pog-cm-admin/calm-assets/new-landing-closing-tablet-1024--717c0842.webp');
  }
}

@media only screen and (max-width: 1023px) {
  .new-landing-closing-section__image {
    background-image: url('https://http2.mlstatic.com/storage/pog-cm-admin/calm-assets/new-landing-closing-tablet-768--75a0b1dc.webp');
  }
}

/* ─── Mobile only (below 768px) ──────────────────────────────────────────── */

@media only screen and (max-width: 767px) {
  .new-landing-closing-section {
    flex-direction: column-reverse;
    gap: 0;
    padding: 0;
    min-height: fit-content !important;
  }

  .new-landing-closing-section__left {
    flex: none;
    width: 100%;
    border-radius: 0;
    height: 372px;
    min-height: 0;
    padding: 8px;
  }

  .new-landing-closing-section__image {
    background-image: url('https://http2.mlstatic.com/storage/pog-cm-admin/calm-assets/new-landing-closing-mobile--0b88cd34.webp');
    border-radius: 10px;
  }

  .new-landing-closing-section__right {
    flex: none;
    width: 100%;
    box-sizing: border-box;
    height: auto;
    min-height: 0;
    padding: 24px;
  }

  .new-landing-closing-section__title {
    font-size: 32px;
    letter-spacing: -1.28px;
  }

  .landing-btn {
    margin-top: 20px;
  }
}
