.post-tags {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.tags-label {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.tags-label i {
    margin-right: 8px;
    color: #555;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: #f0f0f0;
    border-radius: 15px;
    font-size: 0.9em;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background-color: #e0e0e0;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}