/* Страница RSS-ленты (браузер рендерит rss.xml через rss.xsl).
   Отдельная лёгкая страница в палитре сайта: светлая + системная тёмная. */
:root {
  --bg: #faf7f2; --ink: #1c1614; --ink-soft: #4a403c; --muted: #7d6f68;
  --accent: #7a1f2b; --gold: #b08d57; --gold-soft: #d4b98c;
  --line: #e5dccf; --card: #ffffff;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #171213; --ink: #f0e9e2; --ink-soft: #cfc4bc; --muted: #a89a93;
    --accent: #a84a58; --gold: #b08d57; --gold-soft: #d4b98c;
    --line: #3a302c; --card: #201918;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.feed-page { max-width: 760px; margin: 0 auto; padding: 46px 20px 60px; }
.feed-kicker {
  color: var(--gold); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; margin-bottom: 10px;
}
.feed-head h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 6vw, 44px); line-height: 1.15;
  color: var(--accent); margin-bottom: 10px;
}
.feed-head > p { color: var(--ink-soft); font-size: 15px; }
.feed-note {
  margin-top: 16px; padding: 14px 16px;
  background: var(--card); border: 1px solid var(--gold-soft);
  border-radius: 14px; font-size: 13.5px; color: var(--muted);
}
.feed-note code {
  background: var(--bg); padding: 2px 8px; border-radius: 6px;
  font-size: 12.5px; color: var(--accent); user-select: all;
}
.feed-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 18px; margin-top: 14px;
  text-decoration: none; color: inherit;
  transition: border-color .2s, transform .2s;
}
.feed-item:hover { border-color: var(--gold); transform: translateY(-2px); }
.feed-item img {
  width: 104px; height: 78px; object-fit: cover; border-radius: 10px; flex-shrink: 0;
  background: var(--bg); border: 1px solid var(--gold-soft); padding: 4px;
}
.feed-item-body { min-width: 0; }
.feed-item h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; font-weight: 600; line-height: 1.35; margin-bottom: 6px;
}
.feed-item p {
  font-size: 13.5px; color: var(--ink-soft);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.feed-item time {
  display: block; font-size: 12px; color: var(--muted);
  margin-top: 8px; letter-spacing: .06em;
}
.feed-foot { text-align: center; margin-top: 38px; }
.feed-foot a {
  color: var(--accent); font-size: 14px; text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}
@media (max-width: 560px) {
  .feed-item img { width: 78px; height: 62px; }
  .feed-page { padding: 32px 16px 48px; }
}
