.tt-blog-categories-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tt-blog-categories-badges .tt-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f3f4f6;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tt-blog-categories-badges .tt-badge:hover {
    background-color: #e5e7eb;
    color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tt-blog-categories-badges .tt-badge-count {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: #cbd5e1;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
}