.guide-hero {
  padding: 56px 24px;
  background-image:
    linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%),
    radial-gradient(circle at 70% 40%, rgba(34, 197, 94, 0.2) 0%, transparent 60%);
  border-bottom: 4px solid #000000;
}

.guide-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.1;
}

.guide-body {
  padding: 48px 0 64px;
}

.guide-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

.guide-sidebar {
  position: sticky;
  top: 72px;
  background: var(--surface);
  border: 3px solid #000000;
  padding: 20px;
  box-shadow: var(--raw-shadow);
}

.guide-sidebar h2 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 900;
}

.guide-sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guide-sidebar a {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.guide-sidebar a:hover {
  color: var(--primary);
}

.guide-main h2 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  margin: 32px 0 12px;
}

.guide-main h2:first-child {
  margin-top: 0;
}

.guide-main p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.guide-stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.guide-stat {
  background: var(--primary);
  color: #000000;
  padding: 18px;
  text-align: center;
  border: 3px solid #000000;
  box-shadow: var(--raw-shadow);
}

.guide-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
}

.guide-stat span {
  font-size: 12px;
  font-weight: 700;
}

.guide-image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.guide-image-mosaic img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 3px solid #000000;
  box-shadow: var(--raw-shadow);
}

.guide-pullquote {
  border-left: 6px solid var(--accent);
  padding: 20px 24px;
  margin: 28px 0;
  background: rgba(245, 158, 11, 0.08);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
}

@media (max-width: 768px) {
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: static;
  }

  .guide-stat-band {
    grid-template-columns: 1fr;
  }

  .guide-image-mosaic {
    grid-template-columns: 1fr;
    max-width: 100%;
    overflow: hidden;
  }
}
