/* Filters (Pure Text Only) */
.portfolio-filters-ee95ea94 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Controlled via Elementor */
    margin-bottom: 30px;
    background: #fff; /* Ensure white background for the container area if needed, though usually transparent is better. Leaving transparent to inherit page bg */
}

.portfolio-filter-text-ee95ea94 {
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #555;
    transition: color 0.3s ease;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.portfolio-filter-text-ee95ea94:hover {
    color: #000;
}

.portfolio-filter-text-ee95ea94.active {
    color: #000;
    font-weight: 700;
}

/* Load More */
.portfolio-load-more-wrap-ee95ea94 {
    text-align: center;
    margin-top: 30px;
}

.portfolio-load-more-ee95ea94 {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    transition: background 0.3s;
}

.portfolio-load-more-ee95ea94:hover {
    background: #444;
}

/* Simple Grid */
.portfolio-layout-ee95ea94-simple .portfolio-grid-ee95ea94 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-layout-ee95ea94-simple .portfolio-image-ee95ea94 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.portfolio-layout-ee95ea94-simple .portfolio-content-ee95ea94 {
    padding: 15px 0;
}

/* Masonry Grid */
.portfolio-layout-ee95ea94-masonry .portfolio-grid-ee95ea94 {
    column-count: 3;
    column-gap: 20px;
    display: block;
}

.portfolio-layout-ee95ea94-masonry .portfolio-item-ee95ea94 {
    break-inside: avoid;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.portfolio-layout-ee95ea94-masonry .portfolio-image-ee95ea94 img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-layout-ee95ea94-masonry .portfolio-content-ee95ea94 {
    padding: 15px 0;
}

/* Card Overlay */
.portfolio-layout-ee95ea94-overlay .portfolio-grid-ee95ea94 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-layout-ee95ea94-overlay .portfolio-item-ee95ea94 {
    position: relative;
    overflow: hidden;
    display: flex;
    border-radius: 8px;
}

.portfolio-layout-ee95ea94-overlay .portfolio-image-ee95ea94 {
    width: 100%;
}

.portfolio-layout-ee95ea94-overlay .portfolio-image-ee95ea94 img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-layout-ee95ea94-overlay .portfolio-item-ee95ea94:hover .portfolio-image-ee95ea94 img {
    transform: scale(1.05);
}

.portfolio-layout-ee95ea94-overlay .portfolio-content-ee95ea94 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.portfolio-layout-ee95ea94-overlay .portfolio-item-ee95ea94:hover .portfolio-content-ee95ea94 {
    transform: translateY(0);
}

.portfolio-title-ee95ea94 {
    margin: 0 0 10px 0;
}

.portfolio-desc-ee95ea94 {
    margin: 0;
}