#forum-container {
    background: #111;
    color: #ddd;
    font-family: sans-serif;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem; /* row gap 1.5rem, column gap 2rem */
}

.post {
    margin-bottom: 0; /* margin handled by gap now */
    padding: 1rem;
    background: #1a1a1a;
    border-left: 4px solid #5eb1ff;
    border-radius: 6px;
}

.meta {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 0.5rem;
}

.meta a {
    color: #5eb1ff;
    text-decoration: none;
}

.meta a:hover {
    text-decoration: underline;
}

.title {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 0.3rem;
}

.title a {
    color: #5eb1ff;
    text-decoration: none;
}

.title a:hover {
    text-decoration: underline;
}

.content {
    color: #ccc;
}

@media (max-width: 600px) {
    #forum-container {
        grid-template-columns: 1fr;
    }
}

.ln-card-header-prefix {
    display: none;
}