/* 프로젝트 카테고리 스타일 */
.project-category {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-image {
    height: 240px;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* 기존 스타일... */ 