.guide-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.guide-header {
  text-align: center;
  margin-bottom: 56px;
}
.guide-header h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.guide-header p {
  color: var(--muted);
  font-size: 1rem;
}

/* STEP BLOCK */
.step-block {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.step-block:last-of-type { border-bottom: none; }

.step-meta {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--purple);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.step-meta h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-meta p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* PLACEHOLDER */
.placeholder {
  border: 2px dashed var(--border);
  border-radius: 10px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.875rem;
  background: #111113;
}

/* SHOTS */
.shots-pair {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.shots-pair.single { justify-content: flex-start; }
.shot-labeled {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.shot-labeled img {
  border: 1px solid var(--border);
  border-radius: 10px;
  max-width: 320px;
  max-height: 280px;
  object-fit: contain;
  background: #141416;
  display: block;
}
.shot-labeled span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* STEP WITH LARGE GIF — full width below text */
.gif-step .shots-pair {
  width: 100%;
}
.gif-step .shot-labeled {
  width: 100%;
}
.gif-step .shot-labeled img,
.gif-step .shot-labeled video {
  width: 100%;
  max-width: none;
  max-height: none;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
}

/* GUIDE CTA */
.guide-cta {
  text-align: center;
  padding-top: 16px;
}
.guide-cta p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
