/* ===========================================================================
   Section 02 (node 1:79) — "Organizations We Serve" logo cloud.
   Two centered rows of recovered partner logos (40px tall), heading/sub, CTA.
   =========================================================================== */
.s02 {
  height: 476.39px;
  background: #ffffff;
  box-sizing: border-box;
  padding: 80px 0;
}

.s02 .s02-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 24px;
}

/* Heading */
.s02-heading {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: #000000;
  text-align: center;
  white-space: nowrap;
}

/* Subheading */
.s02-sub {
  margin: 0;
  padding-top: 4px;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: rgba(0, 0, 0, 0.54);
  text-align: center;
  white-space: nowrap;
}

/* Logos block */
.s02-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding-top: 32px;
  padding-bottom: 64px;
}

.s02-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* Individual logo image — width set inline per logo, height fixed at 40px.
   Muted grey to match the "trusted by" aesthetic. */
.s02-logo {
  display: block;
  height: 34px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  opacity: 0.72;
}

/* CTA */
.s02-cta {
  display: flex;
  justify-content: center;
}
.s02-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 10.2px 17px;
  background: #000000;
  border: 1px solid #000000;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

/* ===========================================================================
   RESPONSIVE — rows wrap and centre; section grows naturally.
   =========================================================================== */
@media (max-width: 1024px) {
  .s02 { height: auto; padding: 64px 0; }
  .s02-heading, .s02-sub { white-space: normal; }
  .s02-logos { width: 100%; gap: 28px; padding-top: 28px; padding-bottom: 40px; }
  .s02-row { flex-wrap: wrap; gap: 24px 32px; width: 100%; }
}

@media (max-width: 600px) {
  .s02 { padding: 48px 0; }
  .s02 .s02-inner { padding: 0 20px; }
  .s02-heading { font-size: 18px; line-height: 24px; }
  .s02-sub { font-size: 16px; line-height: 24px; }
  .s02-logos { gap: 22px; padding-top: 24px; padding-bottom: 32px; }
  .s02-row { gap: 20px 26px; }
  .s02-logo { height: 34px; }
}
