:root {
  --bg:        #f0ebe4;
  --surface:   #faf8f5;
  --surface2:  #f4efe9;
  --border:    #e2d9cf;
  --text:      #2a211b;
  --muted:     #7d6e62;
  --dim:       #b5a898;
  --primary:   #5a5050;
  --primary-h: #433b3b;
  --primary-l: #f0edec;
  --radius:    12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0 }

html { overflow-y: scroll }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--primary); text-decoration: none }
a:hover { color: var(--primary-h) }

/* ─── Шапка ─── */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: -.5px;
  flex-shrink: 0;
}
.logo span { color: #b06040 }
.nav {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  transition: all .15s;
}
.nav a:hover { background: var(--surface2); color: var(--text) }
.nav a.active { background: var(--primary-l); color: var(--primary); font-weight: 700 }
.header-search {
  color: var(--muted);
  padding: 7px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.header-search:hover { background: var(--surface2); color: var(--text) }
.header-search.active { color: var(--primary) }

.header-cta {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  flex-shrink: 0;
  transition: background .15s;
}
.header-cta:hover { background: var(--primary-h); color: #fff }

/* ─── Обёртка ─── */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

/* ─── Хлебные крошки ─── */
.breadcrumb {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--muted) }
.breadcrumb a:hover { color: var(--primary) }

/* ─── Статья ─── */
.story-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  margin-bottom: 20px;
}

.story-img { width: 100%; height: 340px; object-fit: cover; display: block }
.story-img--placeholder {
  height: 220px;
  background: linear-gradient(135deg, #ede3d8 0%, #e0d0be 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.story-body { padding: 32px 36px }

.story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.story-meta-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap }
.story-cat {
  background: var(--primary-l);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 12px;
  border-radius: 20px;
}
.story-author { font-size: 14px; color: var(--muted) }
.story-dot { color: var(--dim) }
.story-time { font-size: 14px; color: var(--dim) }

.story-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 22px;
  color: #5a4a44;
}

.story-text {
  font-size: 17px;
  line-height: 1.85;
  color: #3a2e26;
}

.story-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--dim);
}

/* ─── Реакции ─── */
.reactions {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  border-top: 1px solid var(--border);
  background: var(--surface2);
}
.reaction-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}
.reaction-btn:hover { background: var(--primary-l); border-color: var(--primary); color: var(--primary) }
.reaction-btn--support:hover { background: #e8f5e8; border-color: #3a8a3a; color: #3a8a3a }
.reaction-btn--unsure:hover  { background: #fdf5e0; border-color: #b07a30; color: #b07a30 }
.reaction-btn--condemn:hover { background: #fde8e8; border-color: #c04040; color: #c04040 }
.reaction-btn .emoji { font-size: 18px }
.reaction-btn strong { font-weight: 800 }

/* ─── Поделиться ─── */
.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-top: 1px solid var(--border);
  background: var(--surface2);
}
.share-label { font-size: 13px; color: var(--muted); font-weight: 600; margin-right: 4px }
.share-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s;
}
.share-btn:hover { opacity: .85 }
.share-btn--vk   { background: #4a76a8; color: #fff }
.share-btn--tg   { background: #29a9eb; color: #fff }
.share-btn--copy { background: var(--surface); color: var(--muted); border: 1.5px solid var(--border) }

/* ─── Комментарии VK-стиль ─── */
.comments {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  margin-top: 20px;
}
.comments-head {
  padding: 16px 20px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 16px; font-weight: 800;
}
.cmt-count { color: var(--dim); font-weight: 400; font-size: 14px; margin-left: 6px }
.comments-empty { padding: 20px; color: var(--dim); font-size: 14px }
.cmt-list { padding: 4px 0 }

/* Строка комментария */
.cmt-item { display: flex; gap: 10px; padding: 12px 20px; align-items: flex-start }
.cmt-item--reply { padding: 8px 0 0 }

/* Аватар */
.cmt-ava {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff;
}
.cmt-ava--sm { width: 28px; height: 28px; font-size: 12px }

.cmt-body { flex: 1; min-width: 0 }

/* Пузырь */
.cmt-bubble {
  display: block;
  background: var(--bg);
  border-radius: 2px 12px 12px 12px;
  padding: 9px 13px;
  font-size: 14px; line-height: 1.55;
  word-break: break-word;
}
.cmt-name { font-weight: 700; font-size: 13px; display: block; margin-bottom: 4px }
.cmt-mention { font-size: 12px; color: var(--dim); display: block; margin-bottom: 3px }

/* Строка действий под пузырём */
.cmt-line { display: flex; align-items: center; justify-content: space-between; margin-top: 5px; padding-left: 2px }
.cmt-ts { font-size: 12px; color: var(--dim) }
.cmt-reply-btn {
  background: none; border: none; font-size: 12px; color: var(--dim);
  cursor: pointer; padding: 0; font-family: inherit; font-weight: 500;
}
.cmt-reply-btn:hover { color: var(--primary); text-decoration: underline }

/* Блок ответов */
.cmt-replies { margin-top: 6px; padding-left: 46px; display: flex; flex-direction: column; gap: 2px }
.reply-form-wrap { margin-top: 4px }
.cmt-more-replies-btn {
  background: none; border: none; font-size: 12px; color: var(--dim);
  cursor: pointer; padding: 4px 0; font-family: inherit; font-weight: 500;
  display: block;
}
.cmt-more-replies-btn:hover { color: var(--primary); text-decoration: underline }
.cmt-more-replies-btn:disabled { opacity: .5; cursor: default }

/* Инлайн-форма ответа */
.reply-inline { display: flex; gap: 8px; align-items: flex-start; padding: 6px 0 4px }
.cmt-cancel-row { text-align: right; margin-top: 4px }
.cmt-cancel-btn {
  background: none; border: none; font-size: 12px; color: var(--dim);
  cursor: pointer; padding: 0; font-family: inherit;
}
.cmt-cancel-btn:hover { color: var(--primary) }

.cmt-more-wrap { padding: 12px 20px; text-align: center; border-top: 1px solid var(--border) }
.cmt-more-btn {
  background: none; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 8px 20px; font-size: 13px; color: var(--muted); cursor: pointer;
  font-family: inherit; transition: border-color .15s, color .15s;
}
.cmt-more-btn:hover { border-color: var(--primary); color: var(--primary) }
.cmt-more-btn:disabled { opacity: .5; cursor: default }

/* ── Основная форма ── */
.cmt-form-main {
  display: flex; gap: 10px; padding: 14px 20px 16px;
  border-top: 1px solid var(--border); align-items: flex-start;
}
.cmt-form-body { flex: 1 }
.cmt-form-body form { display: flex; flex-direction: column; gap: 10px }

.cmt-author-input {
  width: 33%; border: 1px solid var(--border); border-radius: 8px;
  padding: 7px 12px; font-size: 13px; color: var(--text);
  background: var(--surface2); font-family: inherit; outline: none;
  transition: border-color .15s;
}
.cmt-author-input:focus { border-color: var(--primary) }

/* Поле ввода текста */
.cmt-input-row {
  position: relative; display: flex; align-items: flex-end;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 12px; transition: border-color .15s;
}
.cmt-input-row:focus-within { border-color: var(--primary) }

.cmt-ta {
  flex: 1; border: none; background: transparent; resize: none; outline: none;
  padding: 10px 72px 10px 14px;
  font-size: 14px; line-height: 1.5; font-family: inherit; color: var(--text);
  min-height: 66px; max-height: 180px;
}
.cmt-ta::placeholder { color: var(--dim) }

.cmt-emoji-btn {
  position: absolute; right: 42px; bottom: 9px;
  background: none; border: none; cursor: pointer;
  font-size: 18px; padding: 0; line-height: 1; opacity: .45;
  transition: opacity .15s;
}
.cmt-emoji-btn:hover, .cmt-emoji-btn.active { opacity: 1 }

.cmt-send {
  position: absolute; right: 10px; bottom: 9px;
  background: none; border: none; cursor: pointer; padding: 0;
  font-size: 18px; line-height: 1; color: var(--muted); opacity: .5;
  transition: opacity .15s;
}
.cmt-send:hover { opacity: 1 }

/* Пикер эмодзи */
.picker-wrap {
  position: absolute; bottom: calc(100% + 6px); right: 0;
  z-index: 100; display: none;
}

/* ─── Сайдбар ─── */
.sidebar { display: flex; flex-direction: column; gap: 20px }

.sidebar-block {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.sidebar-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}
.sidebar-cats { list-style: none }
.sidebar-cats li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  transition: background .15s;
}
.sidebar-cats li:last-child a { border-bottom: none }
.sidebar-cats li a:hover { background: var(--surface2) }
.sidebar-cats li a span { font-size: 12px; color: var(--dim) }

.submit-block { padding: 20px 18px; text-align: center }
.submit-block p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 14px }
.submit-block a {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  transition: background .15s;
}
.submit-block a:hover { background: var(--primary-h); color: #fff }

/* ─── Виджет опроса ─── */
.poll-widget { padding: 16px 18px }
.poll-q { font-size: 14px; font-weight: 700; line-height: 1.4; margin-bottom: 14px }
.poll-q a { color: inherit; text-decoration: none }
.poll-q a:hover { text-decoration: underline }

.poll-options { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px }
.poll-option { display: flex; align-items: center; gap: 9px; cursor: pointer; font-size: 14px; color: var(--text); line-height: 1.3 }
.poll-option input[type=radio] { accent-color: var(--primary); width: 15px; height: 15px; flex-shrink: 0; cursor: pointer }
.poll-submit {
  width: 100%; background: var(--primary); color: #fff; border: none;
  border-radius: 8px; padding: 9px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: background .15s;
}
.poll-submit:hover { background: var(--primary-h) }

.poll-results { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px }
.poll-row { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 3px 8px }
.poll-row-label { font-size: 13px; color: var(--text); grid-column: 1 }
.poll-pct { font-size: 12px; color: var(--dim); font-weight: 600; grid-column: 2; grid-row: 1; align-self: center }
.poll-bar { grid-column: 1 / -1; height: 5px; background: var(--border); border-radius: 3px; overflow: hidden }
.poll-bar-fill { height: 100%; background: var(--dim); border-radius: 3px; transition: width .4s }
.poll-row--mine .poll-row-label { font-weight: 700 }
.poll-row--mine .poll-bar-fill { background: var(--primary) }
.poll-total { font-size: 12px; color: var(--dim); text-align: right }

/* ─── Страница опроса ─── */
.page--single { grid-template-columns: 1fr }
.page--single main { max-width: 680px; margin: 0 auto; width: 100% }

.poll-page {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  padding: 32px 36px;
  margin-bottom: 24px;
  text-align: center;
}
.poll-page-q {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 28px;
  color: var(--text);
}

.poll-form--page {}
.poll-options--page { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; text-align: left }
.poll-option--page {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  font-size: 16px; color: var(--text); line-height: 1.3;
  background: var(--bg); border-radius: 10px; padding: 14px 16px;
  border: 2px solid transparent; transition: border-color .15s;
}
.poll-option--page:hover { border-color: var(--primary) }
.poll-option--page input[type=radio] { accent-color: var(--primary); width: 17px; height: 17px; flex-shrink: 0; cursor: pointer }
.poll-submit--page {
  width: 100%; max-width: 260px; background: var(--primary); color: #fff;
  border: none; border-radius: 10px; padding: 13px; font-size: 16px;
  font-weight: 700; cursor: pointer; font-family: inherit; transition: background .15s;
}
.poll-submit--page:hover { background: var(--primary-h) }

.poll-results--page { text-align: left }
.poll-results--page .poll-row { margin-bottom: 14px }
.poll-results--page .poll-row-label { font-size: 15px; margin-bottom: 6px }
.poll-results--page .poll-bar { height: 8px; border-radius: 4px }
.poll-results--page .poll-pct { font-size: 13px; margin-top: 3px; text-align: right }
.poll-results--page .poll-total { font-size: 13px; margin-top: 16px; text-align: center }

/* ─── Футер ─── */
.footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 20px 24px;
  font-size: 13px;
  color: var(--dim);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-brand { font-weight: 700; color: var(--muted); letter-spacing: .02em; }
.footer a { color: var(--dim); text-decoration: none; }
.footer a:hover { color: var(--muted); }

/* ─── Cookie banner ─── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 14px 24px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; z-index: 9990; font-size: 13px;
  color: var(--text);
}
.cookie-bar a { color: var(--primary); }
.cookie-btn {
  background: var(--primary); color: #fff; border: none;
  padding: 8px 20px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap;
}
.cookie-btn:hover { background: var(--primary-h); }
@media(max-width:600px) { .cookie-bar { flex-direction: column; text-align: center; } }

/* ─── Аватарки ─── */
.av-1 { background: #c06040 }
.av-2 { background: #b07a30 }
.av-3 { background: #5a8a60 }
.av-4 { background: #5560a0 }
.av-5 { background: #a05080 }
.av-6 { background: #2e90a8 }

/* ─── Фильтр категорий ─── */
.cat-filter {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.cat-filter a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  transition: all .15s;
}
.cat-filter a:hover { border-color: var(--primary); color: var(--primary) }
.cat-filter a.active { background: var(--primary); border-color: var(--primary); color: #fff }

/* ─── Сортировка ─── */
.sort-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.sort-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all .15s;
  text-decoration: none;
}
.sort-btn:hover { border-color: var(--primary); color: var(--primary); text-decoration: none }
.sort-btn.active { background: var(--primary-l); border-color: var(--primary); color: var(--primary) }

/* ─── Сетка карточек ─── */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  color: var(--text);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.12); transform: translateY(-2px) }

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.card-img--placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #ede3d8 0%, #e0d0be 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
}

.card-body { padding: 16px 18px; display: flex; flex-direction: column; flex: 1 }
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.card-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--primary);
}
.card-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.card-badge--hot    { background: #fff0e0; color: #c05a00 }
.card-badge--spicy  { background: #fde8e8; color: #b02020 }
.card-badge--mixed  { background: #fdf5e0; color: #8a6020 }
.card-badge--warm   { background: #e8f0f8; color: #305080 }

.card--hot    { border-color: #f0c080 }
.card--spicy  { border-color: #e8a0a0 }
.card--mixed  { border-color: #d4b870 }
.card--warm   { border-color: #a0b8d8 }
.card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 9px;
  color: #5a4a44;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--dim);
  flex-wrap: wrap;
}
.card-stat { color: var(--dim); font-size: 12px }
.card-stat:first-of-type { margin-left: auto }

/* ─── Пагинация ─── */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 8px;
}
.pagination a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  transition: all .15s;
}
.pagination a:hover { border-color: var(--primary); color: var(--primary) }
.pagination a.active { background: var(--primary); border-color: var(--primary); color: #fff }

/* ─── Пусто ─── */
.empty { padding: 40px; text-align: center; color: var(--muted); font-size: 16px }

/* ─── Мобильная навигация (нижняя панель) ─── */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  z-index: 200;
  height: 54px;
  box-shadow: 0 -2px 10px rgba(0,0,0,.08);
}
.mobile-nav a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--dim);
  text-decoration: none;
  transition: color .15s;
  padding: 0 6px;
  text-align: center;
  line-height: 1.2;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--primary) }
.mobile-nav a.mobile-nav--cta {
  color: #fff;
  background: var(--primary);
  font-size: 13px;
}
.mobile-nav a.mobile-nav--cta:hover { background: var(--primary-h) }

/* CTA: полный текст / короткий */
.cta-short { display: none }

/* ─── Мобильная адаптация ─── */
@media (max-width: 800px) {
  .page { grid-template-columns: 1fr; padding: 12px 12px; gap: 16px }
  .sidebar { display: none }
  .header-inner { gap: 12px; padding: 0 14px }
  .nav { display: none }
  .cta-full { display: none }
  .cta-short { display: inline }
  body { padding-bottom: 54px }
  .mobile-nav { display: flex }
  .cookie-bar { bottom: 54px }

  .story-body { padding: 18px 16px }
  .story-title { font-size: 21px }
  .story-text { font-size: 16px }
  .story-img { height: 200px }

  .reactions { padding: 12px 12px; gap: 6px; flex-wrap: wrap }
  .reaction-btn { flex: 1; min-width: 0; padding: 9px 8px; font-size: 13px; justify-content: center }

  .share-row { padding: 12px 16px; flex-wrap: wrap }
  .comments-head { padding: 12px 14px }
  .cmt-item { padding: 10px 14px }
  .cmt-form-main { padding: 12px 14px }
  .cmt-replies { padding-left: 34px }
  .cmt-author-input { width: 100% }

  .stories-grid { grid-template-columns: 1fr }
  .cat-filter { gap: 5px }
}
