/* Switch Sound Samples - shared styles */
.switch-sound-samples {
  background: #000;
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  padding: 40px 20px;
  box-sizing: border-box;
  color-scheme: dark;
}
.switch-sound-samples .ssa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.switch-sound-samples .ssa-item audio {
  width: 100%;
  max-width: 480px;
  display: block;
}
/* Dark UI for native audio control where supported (Chromium-based) */
.switch-sound-samples .ssa-item audio::-webkit-media-controls-panel {
  background-color: #1a1a1a;
}
.switch-sound-samples .ssa-item h3 {
  font-size: 14px;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: #8a8a8a;
  margin: 16px 0 0;
  text-transform: uppercase;
}
.switch-sound-samples .ssa-disclaimer {
  max-width: 1100px;
  margin: 28px auto 0;
  font-size: 13px;
  line-height: 1.5;
  color: #8a8a8a;
}
@media (max-width: 700px) {
  .switch-sound-samples .ssa-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
