.rtp-hero {
  background: var(--secondary);
  padding: 48px 16px;
  border-bottom: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.rtp-hero::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 10%;
  width: 200px;
  height: 140px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transform: rotate(4deg);
}

.rtp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.rtp-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.rtp-hero p {
  color: var(--muted);
  max-width: 600px;
  font-size: 1.05rem;
}

.rtp-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}

.rtp-sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
}

.rtp-sidebar-nav {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-md);
  transform: rotate(-1deg);
}

.rtp-sidebar-nav h3 {
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rtp-sidebar-nav ul {
  list-style: none;
}

.rtp-sidebar-nav li {
  margin-bottom: 8px;
}

.rtp-sidebar-nav a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.rtp-sidebar-nav a:hover {
  color: var(--text);
}

.rtp-content h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin: 32px 0 14px;
  font-weight: 600;
}

.rtp-content h2:first-child {
  margin-top: 0;
}

.rtp-content p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: var(--text);
}

.rtp-content ul {
  margin: 12px 0 20px 20px;
}

.rtp-content li {
  margin-bottom: 8px;
  color: var(--text);
}

.rtp-visual-row {
  display: flex;
  gap: 20px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.rtp-visual-row img {
  max-width: 400px;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.rtp-visual-row img:first-child {
  transform: rotate(-2deg);
}

.rtp-visual-row img:last-child {
  transform: rotate(1.5deg);
}

.rtp-pullquote {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  transform: rotate(0.5deg);
}

.cut-paper-layered {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.paper-craft-tactile {
  border: 1px solid var(--border);
  position: relative;
}

.handmade-collage {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px) {
  .rtp-body {
    grid-template-columns: 1fr;
    overflow-x: hidden;
  }

  .rtp-sidebar {
    position: static;
  }

  .rtp-visual-row {
    max-width: 100%;
    overflow: hidden;
  }

  .rtp-visual-row img {
    max-width: 100%;
    width: 100%;
  }
}
