/* HIVE 신문 게시판 — 최신 신문들이 합쳐진 고정 이미지(3:1) 하나를 그대로 보여줌 */

.board-image { width: 100%; aspect-ratio: 3 / 1; object-fit: cover;
    border: var(--bd); border-radius: var(--r); box-shadow: var(--sh); }

.archive-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.archive-list li { border: var(--bd); border-radius: 12px 9px 13px 10px; overflow: hidden; }
.archive-list .a-link { display: flex; align-items: baseline; gap: 12px; padding: 12px 16px;
    background: var(--card); color: inherit; text-decoration: none;
    transition: background 0.15s var(--ease); }
.archive-list .a-link:hover { background: var(--sienna); }
.archive-list .a-issue { font-family: var(--mono); font-size: 0.72rem; color: var(--mut); flex-shrink: 0; }
.archive-list .a-title { font-weight: 700; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.archive-list .a-meta { font-family: var(--mono); font-size: 0.72rem; color: var(--mut); flex-shrink: 0; white-space: nowrap; }
