/* sales-introducing.css
   Figma node: 58:2223 | file: wpkxELWVlzeoRjthUL7RQ4
   ─────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;900&display=swap');

/* ── Section shell ── */
.bs-sales-introducing {
  background: #59acf8;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(24px, 3.5vw, 56px);
  overflow: hidden;
}

/* ── Left column: photo bleeds to left edge ── */
.bs-sales-introducing__image-wrap {
  width: min(585px, 42%);
  flex-shrink: 0;
  align-self: stretch;
  overflow: hidden;
}

.bs-sales-introducing__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Right column: content ── */
.bs-sales-introducing__content {
  flex: 1 0 0;
  min-width: 0;
  padding: clamp(48px, 6.25vw, 100px) clamp(32px, 6vw, 96px) clamp(48px, 6.25vw, 100px) 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Heading block ── */
.bs-sales-introducing__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Hero heading — Inter Black 56px / 1.2 */
.bs-sales-introducing__title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 56px);
  color: #21254a;
  line-height: 1.2;
  margin: 0;
  word-break: break-word;
  text-transform: uppercase;
}

/* Subheading — Inter SemiBold 32px / 1.3 */
.bs-sales-introducing__subheading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 32px);
  color: #21254a;
  line-height: 1.3;
  margin: 0;
  word-break: break-word;
}

/* ── Body paragraphs ── */
.bs-sales-introducing__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Body text — Inter Regular 22px / 1.55 */
.bs-sales-introducing__para {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.375vw, 22px);
  color: #21254a;
  line-height: 1.55;
  margin: 0;
  word-break: break-word;
}

/* ── CTA button — Inter Medium 20px ── */
.bs-sales-introducing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: #21254a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: normal;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.bs-sales-introducing__cta:hover {
  opacity: 0.88;
}

/* ─────────────────────────────────────────────────
   Breakpoint 1024px — reduce photo, tighten spacing
   ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bs-sales-introducing__image-wrap {
    width: min(440px, 38%);
  }

  .bs-sales-introducing__content {
    padding-top: clamp(40px, 5vw, 72px);
    padding-bottom: clamp(40px, 5vw, 72px);
    padding-right: clamp(24px, 4vw, 56px);
  }
}

/* ─────────────────────────────────────────────────
   Breakpoint 599px — stack vertically, photo on top
   ───────────────────────────────────────────────── */
@media (max-width: 599px) {
  .bs-sales-introducing {
    flex-direction: column;
    gap: 0;
  }

  .bs-sales-introducing__image-wrap {
    width: 100%;
    height: 280px;
    align-self: auto;
  }

  .bs-sales-introducing__content {
    padding: 40px 24px 48px 24px;
    gap: 24px;
  }

  .bs-sales-introducing__cta {
    align-self: stretch;
    text-align: center;
  }
}
