/* Blog Category Filter Styles */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(29, 191, 115, 0.2);
    border-radius: 50px;
    color: #a0a8c0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn svg {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.category-btn:hover {
    background: rgba(29, 191, 115, 0.1);
    border-color: rgba(29, 191, 115, 0.4);
    color: #1dbf73;
    transform: translateY(-2px);
}

.category-btn:hover svg {
    opacity: 1;
}

.category-btn.active {
    background: linear-gradient(135deg, #1dbf73, #00d9ff);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(29, 191, 115, 0.4);
}

.category-btn.active svg {
    opacity: 1;
}

/* Responsive Category Buttons */
@media (max-width: 768px) {
    .blog-categories {
        gap: 8px;
        margin-bottom: 30px;
    }

    .category-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .category-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .category-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}