/* ============================================================
   Sales: Founder section
   Figma node 62:655 — BuddieSpace FOUNDER
   Design tokens: navy #21254a | blue #59acf8 | white #ffffff
   ============================================================ */

.sales-founder {
  background: #ffffff;
  padding: clamp(48px, 8vw, 100px) clamp(20px, 6.67vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
}

/* --- Heading --- */
.sales-founder__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 54px);
  line-height: 1.3;
  letter-spacing: 0;
  color: #21254a;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
}

/* --- Content wrapper (eyebrow + photo/name + bio) --- */
.sales-founder__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.5vw, 32px);
  width: 100%;
}

/* --- Top block: eyebrow + photo/name --- */
.sales-founder__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.5vw, 16px);
}

/* --- "OUR FOUNDER" eyebrow --- */
.sales-founder__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.3;
  letter-spacing: 0;
  color: #59acf8;
  text-align: center;
  margin: 0;
}

/* --- Photo + name stacked block --- */
.sales-founder__photo-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.5vw, 16px);
}

/* --- Circular photo container (296×296 at full size) --- */
.sales-founder__photo-wrap {
  width: clamp(180px, 25vw, 296px);
  height: clamp(180px, 25vw, 296px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.sales-founder__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* --- Founder name --- */
.sales-founder__name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.3;
  letter-spacing: 0;
  color: #21254a;
  text-align: center;
  margin: 0;
}

/* --- Bio paragraph --- */
.sales-founder__bio {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.55;
  letter-spacing: 0;
  color: #21254a;
  text-align: center;
  max-width: 924px;
  margin: 0;
}

/* ============================================================
   Breakpoint: 1024px (tablet/narrow desktop)
   ============================================================ */
@media (max-width: 1024px) {
  .sales-founder {
    padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 60px);
    gap: 40px;
  }
}

/* ============================================================
   Breakpoint: 599px (mobile)
   ============================================================ */
@media (max-width: 599px) {
  .sales-founder {
    padding: 48px 20px;
    gap: 32px;
  }

  .sales-founder__title {
    font-size: 28px;
  }

  .sales-founder__eyebrow {
    font-size: 20px;
  }

  .sales-founder__photo-wrap {
    width: 200px;
    height: 200px;
  }

  .sales-founder__name {
    font-size: 22px;
  }

  .sales-founder__bio {
    font-size: 16px;
  }
}
