.sva-category-header {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sva-category-header .eyebrow {
  margin-bottom: 0;
  color: #008fbd;
}

.sva-carousel-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sva-carousel-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #0757b8;
  background: #ffffff;
  border: 1px solid rgba(7, 87, 184, 0.18);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(7, 27, 58, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.sva-carousel-controls button:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 182, 214, 0.48);
}

.sva-grid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sva-grid::-webkit-scrollbar {
  display: none;
}

.sva-grid article {
  flex: 0 0 clamp(270px, 30vw, 330px);
  scroll-snap-align: none;
}

.sva-grid article.is-carousel-clone {
  pointer-events: none;
}

.sva-logo-wrap::after {
  content: attr(data-fallback);
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #0757b8;
  background: linear-gradient(135deg, #e9fbff 0%, #ffffff 100%);
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0;
}

.sva-logo-wrap.is-fallback .sva-logo {
  display: none;
}

.sva-logo-wrap.is-fallback::after {
  display: grid;
}

@media (max-width: 720px) {
  .sva-grid article {
    flex-basis: min(82vw, 330px);
  }

  .sva-category-header {
    align-items: flex-start;
  }

  .sva-carousel-controls button {
    width: 38px;
    height: 38px;
  }
}
