.categories {
    padding: 20px 20px 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.categories-header {
    margin-bottom: 40px;
}

.categories-title {
    font-size: 48px;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.category-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background-color: var(--bgSoft);
    color: var(--textSoft);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.category-tag:hover {
    background-color: var(--text);
    color: var(--bg);
    transform: translateY(-2px);
}

.category-tag small {
    opacity: 0.7;
    margin-left: 4px;
}
