/* ==========================================================================
   TRUST / LOGO STRIP - "Samenwerken met vertrouwen"
   ========================================================================== */

.view-logostrip-home {
  background: #e9e7e1;
  border: 1px solid var(--line, #e3e0d8);
  border-radius: var(--r-lg, 14px);
  padding: 2rem clamp(1.25rem, 3vw, 2.5rem);
  margin-inline: auto;
  max-width: var(--wrap, min(1760px, 94vw));
}

/* Header: Title + Text - Centered */
.view-logostrip-home .view-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.view-logostrip-home .view-header h3 {
  font-family: var(--font-display, 'Archivo', Arial, sans-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink, #1b2531);
  margin: 0 0 0.35rem;
}

.view-logostrip-home .view-header .center {
  font-size: 0.92rem;
  color: var(--ink-soft, #57626f);
  line-height: 1.6;
}

/* ==========================================================================
   LOGO SLIDER / SPLIDE
   ========================================================================== */

.view-logostrip-home .splide {
  max-width: 100%;
}

.view-logostrip-home .splide__list {
  align-items: stretch;
}

/* Logo slide item */
.view-logostrip-home .splide__slide {
  display: flex;
  align-items: stretch;
}

/* Logo card - the white box */
.view-logostrip-home .slide__content {
  background: #fff;
  border: 1px solid var(--line, #e3e0d8);
  border-radius: var(--r-md, 8px);
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(22,32,43,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 96px;
  padding: 0;
  overflow: hidden;
}

/* Media container - reset Blazy's ratio styling */
.view-logostrip-home .media {
  padding: 0 !important;
  padding-bottom: 0 !important;
  height: 100% !important;
  width: 100% !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.view-logostrip-home .media--ratio {
  padding-bottom: 0 !important;
}

/* Logo image - fill the card */
.view-logostrip-home .media__element {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block !important;
  padding: 0.75rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 992px) {
  .view-logostrip-home {
    padding: 1.5rem 1rem;
  }
  
  .view-logostrip-home .view-header h3 {
    font-size: 1.2rem;
  }
  
  .view-logostrip-home .slide__content {
    min-height: 80px;
  }
}

@media (max-width: 600px) {
  .view-logostrip-home {
    border-radius: var(--r-md, 8px);
  }
  
  .view-logostrip-home .view-header h3 {
    font-size: 1.1rem;
  }
  
  .view-logostrip-home .view-header .center {
    font-size: 0.85rem;
  }
  
  .view-logostrip-home .slide__content {
    min-height: 120px;
  }
  
  .view-logostrip-home .media__element {
    padding: 1rem;
  }
}
