body {
}

.toplists-hero {
  padding-top: var(--space-16);
}

.toplists-hero__content {
  max-width: 620px;
}

.toplists-hero__image {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.toplists-hero-card {
  width: 100%;
}

.toplists-hero-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.toplists-hero__meta-text {
  font-size: var(--font-size-sm);
  color: var(--gray-500);
}

.toplists-section-header {
  max-width: 760px;
  margin-bottom: var(--space-8);
}

.toplists-section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.toplists-section-header--with-image {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8);
}

.toplists-section-image {
  max-width: 360px;
}

.toplists-grid,
.toplists-grid-intro {
  align-items: stretch;
}

.toplists-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.toplists-card-cta {
  margin-top: var(--space-4);
  width: fit-content;
}

.toplists-bullet-list {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.toplists-bullet-list li::before {
  content: "•";
  color: var(--color-primary);
  display: inline-block;
  width: 1rem;
  margin-left: -0.25rem;
}

.toplists-intro-card {
  position: relative;
}

.toplists-card-link {
  margin-top: var(--space-4);
}

.toplists-comparison {
  margin-top: var(--space-4);
}

.toplists-podcast {
  margin-top: var(--space-4);
}

.toplists-podcast-item {
  padding-right: var(--space-4);
}

.toplists-podcast-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.toplists-podcast-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.toplists-podcast-meta {
  font-size: var(--font-size-xs);
  color: var(--gray-600);
}

.toplists-podcast-footer {
  margin-top: var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--gray-600);
}

.toplists-next-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.toplists-next-steps-header {
  max-width: 640px;
}

.toplists-next-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
}

.toplists-next-steps-column h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.toplists-next-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.toplists-cta-section {
  padding-bottom: var(--space-16);
}

@media (max-width: 900px) {
  .toplists-section-header--with-image {
    flex-direction: column;
    align-items: flex-start;
  }

  .toplists-section-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .toplists-next-steps-grid {
    grid-template-columns: 1fr;
  }

  .toplists-hero {
    padding-top: var(--space-12);
  }
}
