@charset "UTF-8";

/* Project 페이지 스타일 */
.project_list {
    padding: 40px 0;
}

.project_list_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project_item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project_item.on {
    transform: translateY(-5px);
}

.project_image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project_item.on .project_img {
    transform: scale(1.05);
}

.project_info {
    padding: 25px;
}

.project_title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.project_desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project_tag {
    background-color: #007bff;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* 반응형 디자인 */
@media screen and (max-width: 768px) {
    .project_list_inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project_info {
        padding: 20px;
    }
    
    .project_title {
        font-size: 18px;
    }
} 