.elementor-148829 .elementor-element.elementor-element-42415ce{--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;}/* 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 {
            column-count: 3;
            column-gap: 16px;
        }

        .project-item {
            break-inside: avoid;
            margin-bottom: 16px;
            display: inline-block;
            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 {
                column-count: 2;
            }
        }

        @media (max-width: 600px) {
            .projects-grid {
                column-count: 1;
            }
        }/* End custom CSS */