.walkthroughs-page .hero {
  background: radial-gradient(circle at top, rgba(79, 70, 229, 0.22), transparent 55%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
  gap: var(--space-8);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
}

.hero-kicker {
  font-size: var(--font-size-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.hero-aside {
  align-self: stretch;
}

.walkthrough-search {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.search-hint {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.section-grid {
  align-items: center;
}

.section-reverse {
  direction: rtl;
}

.section-reverse > * {
  direction: ltr;
}

.media-card img {
  border-radius: var(--radius-md);
}

.media-card figcaption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: var(--space-2);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: radial-gradient(circle, #6366f1 0, #4f46e5 60%, #0b1020 100%);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.35);
}

.compact-card {
  height: 100%;
}

.breadcrumbs-wrapper {
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  background-color: rgba(10, 15, 30, 0.9);
}

.breadcrumbs {
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.breadcrumbs li + li::before {
  content: "/";
  margin: 0 0.25rem 0 0.15rem;
  color: var(--color-text-muted);
}

.community-card .card-content {
  gap: var(--space-6);
}

@media (max-width: 768px) {
  .community-card .card-content {
    gap: var(--space-4);
  }
}

.cta-section {
  background: radial-gradient(circle at bottom, rgba(79, 70, 229, 0.16), transparent 55%);
}

.cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.cta-content {
  max-width: 40rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 640px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
