/* 마키 카드 컴포넌트 스타일 */
.marquee-card {
    width: clamp(150px, 25vw, 280px);
    height: clamp(150px, 25vw, 280px);
    background-color: #fff;
    border-radius: clamp(12px, 2vw, 16px);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.marquee-card:hover {
    transform: scale(1.02);
}

.marquee-card img {
    width: clamp(100px, 18vw, 180px);
    height: auto;
    object-fit: contain;
    max-height: clamp(80px, 12vw, 120px); /* 최대 높이 제한으로 카드를 벗어나지 않게 */
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .marquee-card {
        width: 150px;
        height: 150px;
        flex-shrink: 0;
    }
    
    .marquee-card img {
        width: 100px;
        max-height: 80px;
    }
}
