/* Portfolio Page Styles */

/* Make ContentCollection wrappers invisible for grid layout */
.neos-contentcollection {
    display: contents;
}

.portfolio-filter-btn {
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    background-color: white;
    color: #333;
    border: 2px solid #333;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-filter-btn:hover {
    background-color: #333;
    color: white;
}

.portfolio-filter-btn.active {
    background-color: var(--color-brand-accent);
    color: white;
    border-color: var(--color-brand-accent);
}

.portfolio-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.portfolio-item.active {
    display: block;
    opacity: 1;
}
