.rvItem .fbox {
    display: flex;
    gap: 24px;
    align-items: center;  /* ✅ 세로 정렬 */
    min-height: 220px;
}

.rvItem .lft {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    max-width: 420px;
    min-height: 220px;
    height: 100%;
    overflow: hidden;
    /* ✅ 배경 제거: lft만 하얀색 안 되게 */
    background: none;
}

.rvItem .lft img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}