/* ─── 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-on-fill {
  background-color: #fff;
  color: #282834;
}

.landing-btn--loud-on-fill:hover {
  background-color: #f0f0f0;
  color: #282834;
}

/* ─── PointSection ───────────────────────────────────────────────────────── */

.new-landing-point-section {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-color: #ffe600;
  height: 696px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 8px;
}

/* Background image */
.new-landing-point-section__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.new-landing-point-section__background img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

/* Top (title) */
.new-landing-point-section__top {
  padding: 24px;
  position: relative;
  z-index: 1;
}

.new-landing-point-section__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -1.28px;
  color: #fff;
  font-feature-settings: 'salt' 1, 'calt' 0;
  max-width: 344px;
  margin: 0;
}

/* Bottom (subtitle + button) */
.new-landing-point-section__bottom {
  padding: 24px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: calc(280px + 64px);
}

.new-landing-point-section__subtitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
}

/* ─── Tablet (768px – 1024px) ──────────────────────────────────────────── */

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .new-landing-point-section {
    height: 712px;
  }

  .new-landing-point-section__top {
    padding: 32px 40px;
  }

  .new-landing-point-section__title {
    font-size: 48px;
    letter-spacing: -1.92px;
    max-width: 480px;
  }

  .new-landing-point-section__bottom {
    padding: 32px 40px;
    max-width: calc(340px + 80px);
  }

  .new-landing-point-section__subtitle {
    font-size: 20px;
    line-height: 24px;
  }
}

/* ─── Desktop (> 1024px) ────────────────────────────────────────────────── */

@media only screen and (min-width: 1025px) {
  .new-landing-point-section {
    height: 712px;
  }

  .new-landing-point-section__top {
    padding: 40px;
  }

  .new-landing-point-section__title {
    font-size: 72px;
    letter-spacing: -2.88px;
    max-width: 631px;
  }

  .new-landing-point-section__bottom {
    padding: 40px;
    max-width: calc(418px + 80px);
  }

  .new-landing-point-section__subtitle {
    font-size: 24px;
    line-height: 32px;
  }
}
