.sellers-main {
  padding-bottom: var(--space-16);
}

.sellers-hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-10);
  background: radial-gradient(circle at top left, var(--color-primary-soft), transparent 60%), var(--color-background);
}

.sellers-hero__container {
  gap: var(--space-8);
}

.sellers-hero__content {
  max-width: 640px;
}

.sellers-hero__media {
  flex: 1;
  max-width: 520px;
}

.sellers-hero__media img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.sellers-hero__actions {
  margin-top: var(--space-4);
}

.sellers-hero__meta {
  flex-wrap: wrap;
}

.sellers-hero__meta-item {
  max-width: 260px;
}

.sellers-breadcrumb {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.sellers-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.sellers-breadcrumb li+li::before {
  content: "/";
  margin-right: var(--space-2);
}

.sellers-layout {
  padding-top: var(--space-4);
}

.sellers-layout__container {
  gap: var(--space-6);
}

.sellers-sidebar {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.sellers-sidebar__title {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.sellers-sidebar__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sellers-sidebar__nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.sellers-sidebar__nav a:hover,
.sellers-sidebar__nav a:focus-visible {
  color: var(--color-primary-strong);
  background-color: var(--color-primary-soft);
}

.sellers-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.sellers-section {
  border-radius: var(--radius-xl);
}

.sellers-section__body {
  margin-top: var(--space-3);
}

.sellers-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.sellers-steps h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.sellers-section__aside h3 {
  margin-bottom: var(--space-2);
}

.sellers-feature-list,
.sellers-checklist,
.sellers-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sellers-feature-list h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.sellers-tip,
.sellers-story {
  padding: 0.75rem 0;
}

.sellers-tip h3,
.sellers-story h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.sellers-dashboard-image,
.sellers-verified-image,
.sellers-payout-image {
  height: 100%;
}

.sellers-dashboard-image img,
.sellers-verified-image img,
.sellers-payout-image img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .sellers-hero {
    padding-top: var(--space-12);
  }

  .sellers-layout__container {
    flex-direction: column;
  }

  .sellers-sidebar {
    width: 100%;
    order: -1;
  }
}

@media (max-width: 768px) {
  .sellers-hero__container {
    flex-direction: column;
  }

  .sellers-hero__media {
    max-width: 100%;
  }

  .sellers-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .sellers-hero__actions .btn {
    width: 100%;
  }
}
