/* ==========================================================================
   INFOGRAPHIC.CSS : 상품별 인포그래픽 공통 스타일 (인라인 SVG 벡터)
   작업지시서 LG15441644_작업지시서_20260907_상품인포그래픽.md 29~30번 기준
   -------------------------------------------------------------------------- */
.product-infographic {
    width: 100%;
    max-width: 640px;
    margin: 32px auto;
}

.product-infographic--wide {
    max-width: 900px;
}

.product-infographic--square {
    max-width: 480px;
}

.product-infographic svg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: var(--knu-bg-gray, #f8fafc);
    border: 1px solid var(--knu-border, #e5e7eb);
    box-shadow: var(--knu-shadow-sm, 0 4px 12px rgba(15, 43, 76, .05));
}

.product-infographic figcaption {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: var(--knu-text-muted, #6b7280);
}

@media (hover: hover) {
    .product-infographic svg {
        transition: transform .25s ease, box-shadow .25s ease;
    }

    .product-infographic:hover svg {
        transform: translateY(-4px);
        box-shadow: var(--knu-shadow-md, 0 12px 28px rgba(15, 43, 76, .08));
    }
}

@media (max-width: 480px) {
    .product-infographic {
        margin: 24px auto;
    }

    .product-infographic figcaption {
        font-size: 13px;
    }
}
