.start-sidebar-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.start-sidebar {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  border: 2px solid var(--border);
  align-self: start;
  position: sticky;
  top: 80px;
}

.start-sidebar img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

.start-sidebar h2 {
  font-size: 1rem;
  color: var(--retro-teal);
  margin-bottom: 12px;
}

.start-sidebar ol {
  list-style: none;
  counter-reset: startstep;
}

.start-sidebar ol li {
  counter-increment: startstep;
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.start-sidebar ol li::before {
  content: counter(startstep);
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--atomic-age-pink);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.start-main h1 {
  font-size: 2rem;
  color: var(--analog-tech-cream);
  margin-bottom: 20px;
}

.start-main h2 {
  font-size: 1.3rem;
  color: var(--muted);
  margin: 28px 0 12px;
}

.start-main p {
  color: rgba(253, 242, 248, 0.85);
  margin-bottom: 16px;
}

.start-pullquote {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--fallout-warm);
  padding: 24px 32px;
  margin: 28px 0;
  border-left: 4px solid var(--retro-teal);
  background: rgba(94, 191, 181, 0.08);
  border-radius: 0 16px 16px 0;
}

.start-tip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.start-tip {
  background: rgba(26, 18, 36, 0.8);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.start-tip h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.start-tip p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .start-sidebar-layout {
    grid-template-columns: 1fr;
  }

  .start-sidebar {
    position: static;
  }

  .start-tip-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .start-sidebar-layout,
  .start-sidebar {
    overflow-x: hidden;
    max-width: 100%;
  }

  .start-sidebar img {
    max-width: 100%;
    max-height: 180px;
  }
}
