.rtp-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}
.rtp-rail {
  position: sticky;
  top: 60px;
  align-self: start;
  background: var(--secondary);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.rtp-rail a {
  display: block;
  margin: 8px 0;
  color: var(--accent);
}
.rtp-compare {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
  font-family: var(--font-mono);
}
.rtp-compare th, .rtp-compare td {
  border: 0.5px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}
.rtp-compare th {
  background: var(--surface);
  color: var(--accent);
}
.rtp-band {
  margin: 28px 0;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 0.5px solid var(--border);
}
.rtp-band img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  filter: saturate(0.35) contrast(1.3);
}
@media (max-width: 800px) {
  .rtp-shell { grid-template-columns: 1fr; padding-left: 16px; padding-right: 16px; }
  .rtp-rail { position: static; }
  .rtp-band img { max-height: 140px; }
}
