html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #020617;
}

.sc-stream {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sc-stream {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sc-wide {
  grid-column: span 1 / span 1;
}

@media (min-width: 768px) {
  .sc-wide {
    grid-column: span 2 / span 2;
  }
}

.sc-rune-divider {
  background-image: repeating-linear-gradient(90deg, #d97706 0, #d97706 10px, transparent 10px, transparent 20px);
  height: 2px;
}

.sc-filter-btn[aria-selected="true"] {
  background-color: #d97706;
  color: #020617;
  border-color: #d97706;
}

#sc-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

#sc-cookie-banner.sc-open {
  transform: translateY(0);
}

#sc-cookie-modal {
  display: none;
}

#sc-cookie-modal.sc-open {
  display: flex;
}

#sc-mobile-nav {
  display: none;
}

#sc-mobile-nav.sc-open {
  display: block;
}

.sc-scroll-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sc-scroll-x::-webkit-scrollbar {
  height: 8px;
}

.sc-scroll-x::-webkit-scrollbar-thumb {
  background-color: #d97706;
}

.sc-prose h2 {
  scroll-margin-top: 5rem;
}
