.tag {
    background-color: #eef2ff;
    color: #4338ca;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tag:hover {
    background-color: #e0e7ff;
    color: #3730a3;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: #374151;
    font-weight: 500;
    transition: color 0.2s ease;
}

.category-link:hover {
    color: #0d6efd;
}

.category-link span:last-child {
    font-size: 0.75rem;
    color: #9ca3af;
}

.prose {
    max-width: 100%;
}

.prose h2 {
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
}

.prose p {
    line-height: 1.7;
    margin-bottom: 1.25em;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-bottom: 1.25em;
}

.prose a {
    color: #0d6efd;
    text-decoration: none;
}

.prose a:hover {
    text-decoration: underline;
}

.comment {
    border-left: 2px solid #e5e7eb;
}

.comment .comment {
    margin-left: 1rem;
    border-left-color: #d1d5db;
}

@media (min-width: 768px) {
    .comment .comment {
        margin-left: 2rem;
    }
}