/* sales-testimonials.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* ─── Section wrapper ─────────────────────────────────────────────────────── */
.bs-sales-testimonials {
  padding: clamp(48px, 6.25vw, 100px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 3.5vw, 56px);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* ─── Heading block ───────────────────────────────────────────────────────── */
.bs-sales-testimonials__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 0 clamp(24px, 6.67vw, 96px);
  box-sizing: border-box;
}

.bs-sales-testimonials__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.375vw, 54px);
  color: #21254a;
  line-height: 1.3;
  margin: 0;
}

.bs-sales-testimonials__subheading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 32px);
  color: #21254a;
  line-height: 1.3;
  margin: 0;
}

/* ─── Slider track ────────────────────────────────────────────────────────── */
.bs-sales-testimonials__cards {
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: clamp(16px, 2.22vw, 32px);
  width: 100%;
  padding-left: calc((100vw - clamp(300px, 42vw, 560px)) / 2);
  padding-right: calc((100vw - clamp(300px, 42vw, 560px)) / 2);
  box-sizing: content-box;
  justify-content: center;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.bs-sales-testimonials__cards::-webkit-scrollbar {
  display: none;
}

/* ─── Individual card ─────────────────────────────────────────────────────── */
.bs-sales-testimonials__card {
  background: #ffffff;
  border-radius: 16px;
  padding: clamp(20px, 2vw, 32px);
  display: flex;
  flex-direction: row;
  gap: clamp(16px, 2vw, 32px);
  align-items: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.4);
  flex: 0 0 clamp(300px, 42vw, 560px);
  box-sizing: border-box;
  scroll-snap-align: center;
}

/* Featured card: thick green border */
.bs-sales-testimonials__card--featured {
  border: 8px solid #b0f288;
}

/* ─── Avatar ──────────────────────────────────────────────────────────────── */
.bs-sales-testimonials__avatar {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* ─── Card content column ─────────────────────────────────────────────────── */
.bs-sales-testimonials__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

/* ─── Name / handle / date row ────────────────────────────────────────────── */
.bs-sales-testimonials__name-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.bs-sales-testimonials__name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.375vw, 24px);
  color: #21254a;
  white-space: nowrap;
  line-height: 1.3;
}

.bs-sales-testimonials__handle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.2vw, 22px);
  color: #666666;
  line-height: 1.55;
  white-space: nowrap;
}

.bs-sales-testimonials__date {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.2vw, 22px);
  color: #666666;
  line-height: 1.55;
  white-space: nowrap;
}

.bs-sales-testimonials__date::before {
  content: '\2022\00a0';
}

/* ─── Tweet body ──────────────────────────────────────────────────────────── */
.bs-sales-testimonials__body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.2vw, 22px);
  color: #21254a;
  line-height: 1.55;
  margin: 0;
  word-break: break-word;
}

.bs-sales-testimonials__body-link {
  font-weight: 700;
  color: #3bafff;
  text-decoration: none;
}

.bs-sales-testimonials__body-link:hover {
  text-decoration: underline;
}

/* ─── Pagination dots ─────────────────────────────────────────────────────── */
.bs-sales-testimonials__pagination {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.bs-sales-testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(33, 37, 74, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.bs-sales-testimonials__dot--active {
  background: #21254a;
}

/* ─── Mobile: ≤ 599px ─────────────────────────────────────────────────────── */
@media (max-width: 599px) {
  .bs-sales-testimonials {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 28px;
  }

  .bs-sales-testimonials__cards {
    padding-left: calc((100vw - 85vw) / 2);
    padding-right: calc((100vw - 85vw) / 2);
    gap: 16px;
  }

  .bs-sales-testimonials__card {
    flex: 0 0 85vw;
    flex-direction: column;
    gap: 16px;
  }

  .bs-sales-testimonials__avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
}
