.favorite_cont_list_area{
    display: flex;
    width: 100%;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    /* display:none; */
}

.favorite_cont_list_loop{
    display: flex;
    padding: 18.8rem 12.5rem;
    align-items: flex-start;
    gap: 16rem;
    align-self: stretch;
    border-bottom: 1px solid #EEE;
}


.favorite_cont_list_left_img{
    width: 90px;
    height: 90px;
    background: #E2E2E2;
    border-radius: 8px;
    overflow: hidden;
    

}

.favorite_cont_list_left_img > img{
    width: 100%;
    height: 100%;
    object-fit: cover;     /* ⭐ 핵심 */
    object-position: center;
    border-radius: 8px;
}

.favorite_cont_list_right{
    display: flex;
    padding-right: 16rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 12.5rem;
    flex: 1 0 0;
}

.favorite_cont_list_right_info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6.3rem;
    align-self: stretch;
}

.favorite_cont_list_right_info_top{
    display: flex;
    padding: 3.2rem 4.7rem ;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    border-radius: 3.2rem;
    background: var(--Gray-G-100, #F1F5F9);
}

.favorite_cont_list_right_info_top > span {
    color: var(--Gray-G-500, #64748B);
    font-family: Pretendard;
    font-size: 10rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.favorite_cont_list_right_info_bottom{
    align-self: stretch;
}

.favorite_cont_list_right_info_bottom > span {
    color: #353535;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Pretendard;
    font-size: 12.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */

    display: -webkit-box;          /* ⭐ 핵심 */
    -webkit-line-clamp: 2;         /* ⭐ 2줄 제한 */
    -webkit-box-orient: vertical;  /* ⭐ 핵심 */

    overflow: hidden;              /* 넘침 숨김 */
    text-overflow: ellipsis;       /* ... 처리 */
}
