/* ---------- 직관인증 피드 (사진 카드 + 하단 자막 띠) ---------- */
.ev-feed { border-top: 1px solid var(--line); padding-top: var(--gap); min-height: 0; }
.feed { flex: 1; min-height: 0; overflow: auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--gap); align-content: start; }
.post { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--panel-2); min-height: 220px; }
.post-en { position: absolute; left: 0; top: 18px; z-index: 2; background: var(--ink); color: #fff; padding: 5px 20px 5px 12px; font-size: 12px; }
.post-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: var(--ink); color: #fff; display: grid; grid-template-columns: 1fr auto; gap: 2px 10px; padding: 12px 14px;
}
.post-foot b { font-size: 15px; }
.post-foot small { grid-column: 1; color: var(--ink-3); font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.post-time { grid-row: 2; grid-column: 2; color: var(--ink-3); font-size: 11px; text-align: right; }
.post-foot .chip { grid-row: 1; grid-column: 2; height: 26px; font-size: 12px; }
.post .reactions { position: absolute; left: 10px; right: 10px; bottom: 70px; z-index: 3; display: flex; flex-wrap: wrap; gap: 6px; opacity: 0; transition: opacity 0.2s; }
.post:hover .reactions, .post:focus-within .reactions { opacity: 1; }
.reactions button { height: 32px; padding: 0 10px; border-radius: 99px; background: rgba(255,255,255,0.92); font-size: 15px; transition: transform 0.12s; }
.reactions button.is-mine { background: var(--hot); }
.reactions button:active { transform: scale(1.15); }
.reactions small { font-weight: 700; color: var(--ink-2); }
.admin-post-actions { position: absolute; right: 10px; top: 14px; z-index: 3; }

.chip.private { background: var(--panel-2); color: var(--ink-2); height: 26px; font-size: 12px; }
.chip.danger { background: var(--live); color: #fff; }
.post.is-private .post-photo { filter: grayscale(1) blur(2px); }
.post.is-masked .post-photo { display: grid; place-items: center; font-size: 40px; }

/* ---------- 올리기 시트 ---------- */
.composer { display: flex; flex-direction: column; gap: 12px; }
.photo-pick { cursor: pointer; }
.photo-preview { height: 200px; border-radius: var(--r-md); overflow: hidden; font-size: 14px; }
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.input {
  width: 100%; padding: 14px 16px; border-radius: var(--r-md);
  background: var(--panel); border: 2px solid transparent; outline: none;
  font: inherit; font-size: 16px; color: var(--ink); resize: none;
}
.input:focus { border-color: var(--team); background: #fff; }

.visibility { border: 0; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.visibility legend { font-size: 13px; font-weight: 700; color: var(--ink-3); margin-bottom: 8px; }
.visibility label { cursor: pointer; }
.visibility input { position: absolute; opacity: 0; }
.visibility span {
  display: flex; flex-direction: column; gap: 2px; padding: 12px 16px;
  background: var(--panel); color: var(--ink);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.visibility span small { color: var(--ink-3); font-size: 12px; }
.visibility input:checked + span { background: var(--ink); color: #fff; }
.visibility input:checked + span small { color: var(--hot); }
.composer-hint { color: var(--ink-3); font-size: 13px; }
