/* Trusted-by logos strip: map + #020034 tint layer, heading + logo row */

.logos-section {
  --logos-bg: #020034;
  /* Light wash of brand color over the map (lower alpha = more map visible) */
  --logos-tint: rgba(2, 0, 52, 0.5);
  position: relative;
  box-sizing: border-box;
  background-color: var(--logos-bg);
  background-image:
    linear-gradient(var(--logos-tint), var(--logos-tint)),
    url("../../images/map-bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  /* background-size: 100% 100%, min(96vw, 1400px) auto; */
  padding: clamp(2.75rem, 7vw, 4.5rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
  overflow: hidden;
  min-height: clamp(22rem, 50vw, 28rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 480px;
}

/* Full-bleed when embedded in post/page HTML card (inside .gh-content) */
.gh-content .logos-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.logos-section__heading {
  font-family:
    "Inter",
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 2.4vw, 1.25rem);
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 clamp(1.75rem, 4.5vw, 2.75rem);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.logos-section .logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  margin: 0 auto;
  max-width: min(1100px, 100%);
}

.logos-section .logos-container img {
  display: block;
  /* height: clamp(56px, 10vw, 100px); */
  /* width: auto; */
  /* max-width: min(180px, 28vw); */
  object-fit: contain;
  height: 137px;
  width: 137px;
}
