/* search.css  */
.post-excerpt {
    font-size: 0.9rem;
    color: #475569;
    margin-top: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.genres-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.genres-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.genre-item {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s;
}

.genre-item:hover {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}