/* ============================================
   THREADS.CSS - Thread-specific styles
   ============================================ */

/* Override grid layout for full-width cards */
.characters-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card.thread {
    width: 100%;
    max-width: none;
    display: flex;
    padding: 0;
}

.thread-type-sidebar {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    min-width: 2rem;
}

.thread-type-sidebar.rumor {
    background: #9b59b6;
}

.thread-type-sidebar.posting {
    background: #e67e22;
}

.thread-type-sidebar.quest {
    background: #3498db;
}

.thread-type-sidebar.mystery {
    background: #e74c3c;
}

.thread-type-sidebar.default {
    background: #95a5a6;
}

.thread-content {
    flex: 1;
    padding: 1.5rem;
}

.tag a {
    color: inherit;
    text-decoration: none;
}

.thread-title-container {
    margin-bottom: 0.5rem;
}

.thread-title {
    margin: 0;
}

.thread-notes {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
}

.thread-notes li {
    margin: 0.25rem 0;
    /* line-height: 1.4; */
}

.thread-empty-state {
    text-align: center;
    color: #888;
    padding: 2rem;
}

.thread-date-tag {
    margin: 0 0.15em;
    vertical-align: middle;
}