/* ============================================================
   SMC Client Logo Strip — testimonial-section.css
   Brand: Spencer Morley Consulting
   Colors: Charcoal #323232 | Gold #C9A84C | Off-white #F7F7F5
   Fonts: Cormorant Garamond (heading) | Montserrat | Lato
   Static / CSS-only — no JavaScript dependencies
   ============================================================ */


/* ── Section wrapper ── */
.smc-logo-strip {
  background-color: #323232;
  padding: 64px 40px;
  width: 100%;
  box-sizing: border-box;
}

/* ── Inner container ── */
.smc-logo-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Section heading ── */
.smc-logo-strip__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: #F7F7F5;
  text-align: center;
  margin: 0 0 12px 0;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* ── Gold rule accent under heading ── */
.smc-logo-strip__rule {
  display: block;
  width: 48px;
  height: 2px;
  background-color: #C9A84C;
  margin: 0 auto 48px auto;
  border: none;
}

/* ── Logo grid ── */
.smc-logo-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  justify-items: center;
  align-items: stretch;
}

/* 4 active tiles at launch → natural 2×2 on desktop (correct behaviour) */

/* ── Individual logo tile ── */
.logo-tile {
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  min-height: 100px;
}

/* Dark tile variant — County of Grande Prairie */
.logo-tile--dark {
  background-color: #323232;
  box-shadow: none; /* dark on dark — no lift needed */
  border: 1px solid rgba(255, 255, 255, 0.08); /* very subtle definition */
}

/* ── Logo image wrapper ── */
.logo-tile__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo-tile__logo img {
  display: block;
  max-width: 200px;
  max-height: 80px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ── Hidden testimonial scaffold (Phase 2) ── */
.logo-tile__testimonial {
  display: none; /* controlled via aria-hidden + inline style per spec */
}

/* ── Hidden placeholder slots ── */
.logo-slot--hidden {
  display: none !important;
}

/* ── Responsive: Tablet (768px–1023px) ── */
@media (max-width: 1023px) {
  .smc-logo-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Responsive: Mobile (<768px) ── */
@media (max-width: 767px) {
  .smc-logo-strip {
    padding: 48px 24px;
  }

  .smc-logo-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ── Responsive: Narrow mobile — single column if tiles compress below 140px ── */
@media (max-width: 340px) {
  .smc-logo-strip__grid {
    grid-template-columns: 1fr;
  }
}
