/* =====================================================
   sales-for-you.css — BuddieSpace "This Course Is For You If" Section
   Figma node: 55:1129 | file: wpkxELWVlzeoRjthUL7RQ4
   ===================================================== */

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

/* ---- Section wrapper ---- */
.sales-for-you {
  background-color: #ffffff;
  padding: clamp(48px, 6.94vw, 100px) clamp(24px, 6.67vw, 96px);
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* ---- Heading ---- */
.sales-for-you__title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 3.89vw, 56px);
  color: #21254a;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
}

/* ---- Cards grid: 4-col desktop → 2-col tablet → 1-col mobile ---- */
.sales-for-you__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* ---- Individual card ---- */
.sales-for-you__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 32px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  text-align: center;
}

/* ---- Icon containers ---- */
/* Default icon frame: 60×60 (cards 2, 3, 4) */
.sales-for-you__icon-wrap {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card 1 icon frame: 76×60 (Figma: Layer 2 container) */
.sales-for-you__icon-wrap--wide {
  width: 76px;
  height: 60px;
}

.sales-for-you__card-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---- Card text ---- */
.sales-for-you__card-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.67vw, 24px);
  color: #21254a;
  line-height: 1.3;
  margin: 0;
}

/* ---- Responsive: 2×2 grid at ≤1024px ---- */
@media (max-width: 1024px) {
  .sales-for-you__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Responsive: single column at ≤599px ---- */
@media (max-width: 599px) {
  .sales-for-you__cards {
    grid-template-columns: 1fr;
  }

  .sales-for-you__card {
    gap: 24px;
  }
}
