/* ======================================================
   Форум (только для чтения) — /forum/forum.css
   ====================================================== */
.forum-wrap {
    max-width: 900px;
    margin: 0;
    padding: 0 0 1rem;
}
.forum-h1 {
    font-family: Roboto, sans-serif;
    font-weight: 100;
    font-size: 21pt;
    margin-bottom: 0.5rem;
}
.forum-back {
    margin: 0.5rem 0;
}
.forum-back a {
    color: #6a5acd;
    text-decoration: none;
}
.forum-back a:hover {
    text-decoration: underline;
}
.forum-empty {
    color: #888;
    font-style: italic;
    margin: 1.5rem 0;
}

/* Список разделов */
.forum-board-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.forum-board-item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 0.6rem;
    background: #fafafa;
    padding: 0.75rem 1rem;
}
.forum-board-link {
    font-weight: 600;
    font-size: 1.05em;
    color: #333;
    text-decoration: none;
}
.forum-board-link:hover {
    text-decoration: underline;
    color: #6a5acd;
}
.forum-board-desc {
    display: block;
    color: #666;
    font-size: 0.9em;
    margin-top: 0.25rem;
}
.forum-board-stats {
    display: block;
    font-size: 0.85em;
    color: #888;
    margin-top: 0.2rem;
}

/* Список тем (обсуждений) */
.forum-topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.forum-topic-item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 0.6rem;
    background: #fafafa;
    padding: 0.75rem 1rem;
}
.forum-topic-link {
    font-weight: 600;
    font-size: 1.05em;
    color: #333;
    text-decoration: none;
}
.forum-topic-link:hover {
    text-decoration: underline;
    color: #6a5acd;
}
.forum-topic-stats {
    display: block;
    font-size: 0.85em;
    color: #888;
    margin-top: 0.2rem;
}

/* Последние сообщения (под доской или в блоке раздела) */
.forum-last-label {
    display: block;
    font-size: 0.9em;
    color: #555;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
}
.forum-last-msgs {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    font-size: 0.9em;
}
.forum-last-msg {
    margin-bottom: 0.25rem;
}
.forum-last-msg a {
    color: #6a5acd;
    text-decoration: none;
}
.forum-last-msg a:hover {
    text-decoration: underline;
}
.forum-last-msg-meta {
    color: #888;
}
.forum-last-block {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}
.forum-last-block-title {
    font-weight: 600;
    font-size: 0.95em;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Описание раздела на странице ленты */
.forum-board-desc-block {
    color: #666;
    margin-bottom: 0.75rem;
    font-size: 0.95em;
}

/* Лента сообщений */
.forum-feed {
    margin-top: 0.5rem;
}
.forum-msg {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 0.8rem;
    background: #fafafa;
    padding: 0.75rem 1rem;
}
.forum-msg-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}
.forum-msg-author {
    font-weight: 600;
    color: #333;
    font-size: 0.95em;
}
.forum-msg-date {
    color: #888;
    font-size: 0.85em;
}
.forum-msg-body {
    color: #444;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
}
