.post-tags {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.tags-label {
    display: inline-block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: #f5f5f5;
    color: #555;
    border-radius: 16px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
}

.tag-item:hover {
    background: #e0e0e0;
    color: #222;
    transform: translateY(-1px);
}