/**
 * s003 ("Text + Bild + Slider") — brand slider items wrapped in the same
 * card treatment as the logo wall (s008): light background, rounded
 * corners matching the underlay nav's .25em radius. The existing
 * grayscale/hover-reveals-color behavior (inline <style> in
 * section-s003.php) is untouched.
 */
.slider-item {
  background-color: #f2f2f2;
  border-radius: .25em;
  overflow: hidden;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.slider-item:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06), 0 12px 24px rgba(0, 0, 0, 0.14);
}

.slider-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
