/* =========================================================================
   Section 10 — "Real People, Real Results" (node 1:2314)
   3 case-study / testimonial image cards. Light grey full-bleed background.
   ========================================================================= */
.s10 {
  height: 548px;
  background: #fafafa;
  padding: 80px 0;
}

/* Container is 1056px wide with 24px horizontal padding (global .container = 1056px). */
.s10-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
}

.s10-heading {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 38px;
  line-height: 46px;
  letter-spacing: -0.8px;
  color: #222;
  white-space: nowrap;
}

.s10-sub {
  margin: 0;
  padding-top: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #000;
  white-space: nowrap;
}

/* Cards row: pt 40px above; three cards 322.664px each, 20px gaps. */
.s10-cards {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  height: 266px;
}

.s10-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 322.664px;
  height: 266px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

.s10-card-img {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
}
.s10-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s10-card-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  width: 100%;
}

.s10-card-logo {
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.s10-card-logo img {
  height: 32px;
  width: 25.836px; /* card 1: Target Community logo */
  display: block;
}
.s10-card-logo--2 img { width: 56px; } /* The ARC (flattened PNG) */
.s10-card-logo--3 img { width: 56px; } /* Woodfords */

.s10-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  white-space: nowrap;
}

/* =========================================================================
   Responsive overrides (appended) — keep #fafafa background, fluid layout.
   ========================================================================= */
@media (max-width: 1024px) {
  .s10 {
    height: auto;
    padding: 64px 0;
  }

  .s10-container {
    align-items: center;
    text-align: center;
  }

  .s10-heading,
  .s10-sub {
    white-space: normal;
  }

  /* Cards reflow: wrap to 2-up / fluid */
  .s10-cards {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
  }

  .s10-card {
    flex: 1 1 280px;
    width: 100%;
    max-width: 340px;
    height: auto;
  }

  .s10-card-img {
    height: auto;
  }
  .s10-card-img img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 600px) {
  .s10-heading {
    font-size: 26px;
    line-height: 34px;
  }

  /* Single centered column */
  .s10-cards {
    flex-direction: column;
    align-items: center;
  }

  .s10-card {
    flex: 0 1 auto;
  }
}
