/* ─── ContactsSection ────────────────────────────────────────────────────── */

.new-landing-contacts-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #282834;
  border-radius: 20px;
  padding: 8px;
  overflow: hidden;
  margin: 0 8px;
}

/* Left panel */
.new-landing-contacts-section__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  min-height: 320px;
}

.new-landing-contacts-section__left-top {
  padding-right: 40px;
}

.new-landing-contacts-section__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -1.92px;
  color: white;
  margin: 0;
  font-feature-settings: 'salt' 1, 'calt' 0;
}

.new-landing-contacts-section__left-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.new-landing-contacts-section__description {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #9292b0;
  margin: 0;
}

/* Right panel */
.new-landing-contacts-section__right {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 320px;
}

.new-landing-contacts-section__image-wrapper {
  position: absolute;
  inset: 0;
}

.new-landing-contacts-section__image-wrapper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.new-landing-contacts-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@media only screen and (min-width: 768px) and (max-width: 1047px) {
  .new-landing-contacts-section {
    flex-direction: row;
    min-height: 800px;
  }

  .new-landing-contacts-section__left {
    width: 100%;
    padding: 32px;
    min-height: 360px;
  }

  .new-landing-contacts-section__left-top {
    padding-right: 32px;
  }

  .new-landing-contacts-section__title {
    font-size: 48px;
    letter-spacing: -1.92px;
  }

  .new-landing-contacts-section__description {
    font-size: 18px;
    line-height: 24px;
  }

  .new-landing-contacts-section__right {
    width: 100%;
    aspect-ratio: 353 / 186;
    min-height: 280px;
  }

  .new-landing-contacts-section__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }
}

/* ─── Desktop (1048px+) ──────────────────────────────────────────────────── */

@media only screen and (min-width: 1048px) {
  .new-landing-contacts-section {
    flex-direction: row;
    gap: 8px;
    padding: 8px;
  }

  .new-landing-contacts-section__left {
    flex: 1;
    min-width: 0;
    padding: 32px;
    min-height: 480px;
  }

  .new-landing-contacts-section__title {
    font-size: 72px;
    letter-spacing: -2.88px;
  }

  .new-landing-contacts-section__description {
      font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
    color: #a3a3bd;
    font-feature-settings: 'case' on;
  }

  .new-landing-contacts-section__right {
    border-radius: 12px;
    flex: 1;
    min-width: 0;
    min-height: 480px;
  }
}

/* ─── Mobile (max-width: 767px) ──────────────────────────────────────────── */

@media only screen and (max-width: 767px) {
  .new-landing-contacts-section {
    flex-direction: column;
    min-height: 540px;
  }

  .new-landing-contacts-section__left {
    padding: 16px;
    min-height: 0;
    height: auto;
    justify-content: flex-start;
    gap: 32px;
  }

  .new-landing-contacts-section__left-top {
    padding-right: 16px;
  }

  .new-landing-contacts-section__left-bottom {
    margin-top: 0;
    gap: 16px;
  }

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

  .new-landing-contacts-section__description {
    font-size: 20px;
  }

  .new-landing-contacts-section__right {
    min-height: 0;
    height: 320px;
  }
}
