
.rd-section { padding-top: 32px; padding-bottom: 64px; }
.rd-container { max-width: 480px; }

.rd-back-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.rd-back-link:hover { color: var(--color-primary); }
.rd-back-link .icon { width: 16px; height: 16px; }

.rd-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.rd-image-wrap {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(45deg, var(--color-checker-a) 25%, transparent 25%),
    linear-gradient(-45deg, var(--color-checker-a) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--color-checker-a) 75%),
    linear-gradient(-45deg, transparent 75%, var(--color-checker-a) 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0px;
}
.rd-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.rd-info { padding: 24px; text-align: center; }

.rd-name {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent-coral);
  font-weight: 600;
  margin: 0 0 10px;
}
.rd-name .icon { width: 18px; height: 18px; }

.rd-info h1 { font-size: 1.1rem; font-weight: 700; margin: 0 0 8px; line-height: 1.4; }

.rd-date {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.82rem; color: var(--color-text-muted);
  margin: 0 0 22px;
}
.rd-date .icon { width: 14px; height: 14px; }

.rd-actions { display: flex; flex-direction: column; gap: 10px; }
.rd-actions .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  padding: 12px 16px;
}
.rd-actions .icon { width: 16px; height: 16px; flex-shrink: 0; }

.rd-delete-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  background: none; border: none;
  color: var(--color-danger);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px;
}
.rd-delete-link .icon { width: 13px; height: 13px; }
.rd-delete-link:hover { text-decoration: underline; }

@media (min-width: 480px) {
  .rd-actions { flex-direction: row; }
  .rd-actions .btn { flex: 1; min-width: 0; }
}
