.current-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.post-tag-item {
    display: inline-block;
    background-color: #f0f0f0;
    color: #333;
    padding: 6px 12px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.post-tag-item:hover {
    background-color: #0073aa;
    color: white;
    text-decoration: none;
}

.no-post-tags {
    color: #666;
    font-style: italic;
    opacity: 0.8;
} 