.angie-projects-filter-wrapper-7c6b91dd {
	font-family: 'Helvetica Neue', Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #fcfcfc;
}

/* Header Styles */
.angie-projects-header-7c6b91dd {
    text-align: center;
    margin-bottom: 40px;
}
.angie-projects-subtitle-7c6b91dd {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}
.angie-projects-title-7c6b91dd {
    font-size: 36px;
    font-weight: 500;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.2;
}
.angie-highlight-7c6b91dd {
    color: #4b003b;
    font-weight: 600;
    position: relative;
}
.angie-highlight-7c6b91dd::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: #c9a7c6;
}
.angie-projects-desc-7c6b91dd {
    font-size: 14px;
    color: #666;
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.6;
}

/* Filter Buttons */
.angie-projects-buttons-7c6b91dd {
	display: flex;
	gap: 15px;
	margin-bottom: 50px;
	flex-wrap: wrap;
	justify-content: center;
}
.angie-filter-btn-7c6b91dd {
    display: flex;
    align-items: center;
    gap: 8px;
	padding: 12px 24px;
	border: 1px solid #e0e0e0;
	background: #fff;
    color: #333;
	cursor: pointer;
	border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
	transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.angie-filter-btn-7c6b91dd svg {
    color: #666;
    transition: all 0.3s ease;
}
.angie-filter-btn-7c6b91dd.active,
.angie-filter-btn-7c6b91dd:hover {
	background: #4b003b;
	color: #fff;
    border-color: #4b003b;
    box-shadow: 0 4px 15px rgba(75, 0, 59, 0.2);
}
.angie-filter-btn-7c6b91dd.active svg,
.angie-filter-btn-7c6b91dd:hover svg {
    color: #fff;
}

/* Grid Layout */
.angie-projects-grid-7c6b91dd {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
    margin-bottom: 50px;
}

/* Project Cards */
.angie-project-item-7c6b91dd {
	border-radius: 8px;
	background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	transition: opacity 0.4s ease, transform 0.4s ease;
    border: 1px solid #f0f0f0;
}
.angie-project-item-7c6b91dd.hidden {
	display: none;
}
.angie-project-item-7c6b91dd.hiding {
    opacity: 0;
    transform: scale(0.95);
}

.angie-project-image-wrap-7c6b91dd {
    position: relative;
    width: 100%;
    padding-top: 66%; /* 3:2 Aspect Ratio approx */
    overflow: hidden;
}
.angie-project-image-wrap-7c6b91dd img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.angie-project-item-7c6b91dd:hover .angie-project-image-wrap-7c6b91dd img {
    transform: scale(1.08);
}

/* Card Content */
.angie-project-content-7c6b91dd {
    padding: 25px;
}
.angie-project-content-7c6b91dd h3 {
	margin: 0 0 10px;
	font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}
.angie-project-meta-7c6b91dd {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: 13px;
    margin-bottom: 25px;
}
.angie-project-meta-7c6b91dd svg {
    color: #4b003b;
}

.angie-project-footer-7c6b91dd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}
.angie-project-link-7c6b91dd {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.angie-project-arrow-7c6b91dd {
    color: #333;
    display: flex;
    transition: transform 0.3s ease, color 0.3s ease;
}
.angie-project-item-7c6b91dd:hover .angie-project-link-7c6b91dd,
.angie-project-item-7c6b91dd:hover .angie-project-arrow-7c6b91dd {
    color: #4b003b;
}
.angie-project-item-7c6b91dd:hover .angie-project-arrow-7c6b91dd {
    transform: translateX(5px);
}

/* View All Button */
.angie-projects-bottom-7c6b91dd {
    text-align: center;
}
.angie-view-all-btn-7c6b91dd {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}
.angie-view-all-btn-7c6b91dd:hover {
    background: #333;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .angie-projects-grid-7c6b91dd {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .angie-projects-grid-7c6b91dd {
        grid-template-columns: 1fr;
    }
    .angie-projects-title-7c6b91dd {
        font-size: 28px;
    }
}
