.elementor-148844 .elementor-element.elementor-element-abca231{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-148844 .elementor-element.elementor-element-abca231{--content-width:90%;}}/* Start custom CSS */.projects-filters {
        text-align: center;
        margin-bottom: 20px;
    }

    .filter-group {
        margin-bottom: 15px;
    }

    .filter-buttons {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 5px;
    }

    .filter-btn, #year-select {
        padding: 6px 12px;
        font-size: 14px;
        border: 0px solid #ccc;
        background: #fff;
        cursor: pointer;
        transition: background-color 0.2s, color 0.2s;
    }

    .filter-btn:hover, #year-select:hover {
        background-color: #e2e2e2;
    }

    .filter-btn.active {
        background-color: #ccc;
        font-weight: bold;
        color: #000;
    }

    #year-select {
        height: 32px;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .project-item {
        width: 100%;
    }

    .project-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .project-card {
        border: 1px solid #ddd;
        padding: 10px;
        background: #fff;
        transition: box-shadow 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .project-card:hover {
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .project-img {
        position: relative;
        width: 100%;
        padding-top: 75%; /* 4:3 aspect ratio */
        overflow: hidden;
        background: #f0f0f0;
    }

    .project-img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-title {
        font-size: 16px;
        margin-top: 10px;
        flex-grow: 1;
    }

    .project-date {
        font-size: 14px;
        color: #666;
        margin-top: 4px;
    }

    @media (max-width: 992px) {
        .projects-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .projects-grid {
            grid-template-columns: 1fr;
        }
    }/* End custom CSS */