/* ============ adventure feed (news) — shared ============ */
.feed-grid { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.feed-card { position: relative; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, rgba(28,46,39,0.8), rgba(19,33,28,0.8));
  transition: border-color .25s, box-shadow .25s; }
.feed-card:hover { border-color: var(--teal); box-shadow: 0 0 18px var(--teal-glow); }
.feed-card.open { border-color: var(--teal); box-shadow: 0 0 22px var(--teal-glow); }

/* свёрнутый заголовок */
.fc-head { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  background: none; border: none; cursor: pointer; color: inherit; font-family: inherit;
  padding: 14px clamp(14px,2.5vw,22px); }
.fc-thumb { flex: none; width: 52px; height: 52px; border-radius: 10px; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center; font-size: 26px; border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--stone-2), var(--abyss-2)); box-shadow: inset 0 0 18px rgba(0,0,0,.3);
  transition: border-color .25s, box-shadow .25s; }
.feed-card:hover .fc-thumb, .feed-card.open .fc-thumb { border-color: var(--teal); }
.fc-thumb img, .fc-thumb video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fc-thumb .media-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: #fff; font-size: 20px; text-shadow: 0 0 8px rgba(0,0,0,.8); pointer-events: none; }
.fc-htx { flex: 1; min-width: 0; }
.fc-title { display: block; font-family: 'Cinzel', serif; font-weight: 700; font-size: clamp(15px,2vw,18px);
  color: var(--gold-br); margin-bottom: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fc-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.fc-meta .fc-type { color: var(--teal); }
.fc-meta .fc-stat { display: inline-flex; align-items: center; gap: 4px; opacity: .9; }
.fc-caret { flex: none; color: var(--teal); transition: transform .25s; font-size: 11px; }
.feed-card.open .fc-caret { transform: rotate(180deg); }

/* развёрнутое тело */
.fc-detail { display: none; padding: 0 clamp(14px,2.5vw,22px) 18px; }
.feed-card.open .fc-detail { display: block; }
.fc-body { font-size: 14.5px; color: var(--text); line-height: 1.55; margin: 2px 0 14px; white-space: pre-wrap; word-break: break-word; }
.fc-detail .fc-media { display: block; width: 100%; max-width: 420px; border-radius: 12px; overflow: hidden; position: relative; border: 1px solid var(--line); margin: 0 0 14px; cursor: zoom-in; transition: border-color .2s, box-shadow .2s; }
.fc-detail .fc-media:hover { border-color: var(--teal); box-shadow: 0 0 18px var(--teal-glow); }
.fc-detail .fc-media img, .fc-detail .fc-media video { display: block; width: 100%; height: auto; }

/* мини-лайтбокс (используется на страницах без общего kvLightbox) */
.kvlb { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; background: rgba(4,10,8,0.92); padding: 24px; }
.kvlb.open { display: flex; }
.kvlb-media { max-width: min(94vw, 1100px); max-height: 90vh; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.kvlb-close { position: absolute; top: clamp(12px,3vw,22px); right: clamp(12px,3vw,22px); width: 44px; height: 44px; border-radius: 11px; background: rgba(6,17,14,0.7); border: 1px solid var(--line); color: var(--gold-br); font-size: 20px; cursor: pointer; }
.kvlb-close:hover { border-color: var(--teal); box-shadow: 0 0 16px var(--teal-glow); }
.fc-go { color: var(--teal); font-family: 'Cinzel', serif; letter-spacing: 0.04em; text-decoration: none; }
a.fc-go:hover { text-decoration: underline; }

/* соц-футер: лайк + комментарии */
.fc-social { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--line); padding-top: 12px; margin-top: 4px; }
.fc-btn { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.03); border: 1px solid var(--line); color: var(--muted);
  border-radius: 999px; padding: 6px 14px; font-size: 13px; cursor: pointer; font-family: inherit; transition: color .2s, border-color .2s, background .2s; }
.fc-btn:hover { border-color: var(--teal); color: var(--text); }
.fc-like .fc-heart { font-size: 15px; line-height: 1; transition: transform .2s; }
.fc-like.liked { color: #ff6b8a; border-color: rgba(255,107,138,0.5); background: rgba(255,107,138,0.1); }
.fc-like.liked .fc-heart { transform: scale(1.15); }
.fc-social .fc-go { margin-left: auto; }

/* тред комментариев */
.fc-comments { display: none; flex-direction: column; gap: 12px; margin-top: 12px; }
.fc-comments.open { display: flex; }
.fc-clist { display: flex; flex-direction: column; gap: 10px; }
.fc-cmt { background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; }
.fc-cmt .fc-cmt-a { font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 0.06em; color: var(--teal); margin-bottom: 3px; }
.fc-cmt .fc-cmt-b { font-size: 14px; color: var(--text); line-height: 1.45; white-space: pre-wrap; word-break: break-word; }
.fc-cempty { font-size: 13px; color: var(--muted); opacity: .7; }
.fc-cform { display: grid; grid-template-columns: minmax(0,150px) 1fr auto; gap: 8px; }
.fc-cform input { background: rgba(0,0,0,0.25); border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; color: var(--text); font-family: inherit; font-size: 14px; min-width: 0; }
.fc-cform input:focus { outline: none; border-color: var(--teal); }
.fc-cform button { background: var(--teal); color: #06231e; border: none; border-radius: 10px; padding: 0 16px; font-weight: 700; cursor: pointer; font-family: 'Cinzel', serif; }
.fc-cform button:disabled { opacity: .5; cursor: default; }
@media (max-width: 620px) { .fc-cform { grid-template-columns: 1fr auto; } .fc-cform input.fc-cauthor { grid-column: 1 / -1; } }

/* ссылка «все новости» */
.feed-more { text-align: center; margin: 26px auto 0; }
.feed-empty { text-align: center; color: var(--muted); opacity: .8; padding: 20px; }
