.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.product-image {
    position: relative;
    padding-top: 75%; /* 4:3 비율 */
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.product-info-top {
    height: 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.product-info-top > .product-info-category {
    font-size: .9rem;
    color: #e22727;
    font-weight: 700;
    font-family: 'NanumSquareEB';
}

.product-info-top > .product-info-status {
    font-size: .7rem;
    font-weight: 500;
    color: #fff;
    background: #00a851;
    border-radius: 2rem;
    padding-left: .5rem;
    padding-right: .5rem;
    height: 100%;

    display: flex;
    align-items: center;
    line-height: 100%;
}

.product-info-top > .product-info-status.done {
    color: rgb(153, 153, 153);
    background: rgb(237, 237, 237);
}

.product-info-top > .product-info-status.in-progress {
    color: #fff;
    background: #c6060d;
}

.product-title {
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    font-family: 'NanumSquareEB';
    color: #333;
}

.product-specs {
    font-size: 14px;
    color: #666;
}

.product-specs p {
    margin: 8px 0;
}

.product-specs span {
    font-weight: 500;
    color: var(--point-color);
    font-family: 'NanumSquareB';
}

@media (max-width: 999px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(237px, 1fr));
        gap: 8px;
    }
}


/* 반응형 */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
        gap: 8px;
    }
    
    .product-title {
        font-size: 20px;
    }
}