@charset "utf-8";

/* 주보 최신글 카드 */
.love-weekly-latest {
    width: 100%;
    height: 100%;
    background: #fff;
    box-sizing: border-box;
}

.love-weekly-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 38px 28px 24px;
    box-sizing: border-box;
    color: #111;
    text-decoration: none;
    text-align: center;
    background: #fff;
}

.love-weekly-imgbox {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.love-weekly-imgbox img {
    display: block;
    width: auto;
    max-width: 92%;
    max-height: 210px;
    object-fit: contain;
    border: 0;
}

.love-weekly-title {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.love-weekly-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 310px;
    padding: 30px;
    box-sizing: border-box;
    font-size: 15px;
    color: #777;
    background: #fff;
}

/* 모바일 */
@media (max-width: 768px) {
    .love-weekly-link {
        min-height: 280px;
        padding: 32px 22px 24px;
    }

    .love-weekly-imgbox img {
        max-height: 210px;
    }

    .love-weekly-title {
        margin-top: 16px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .love-weekly-link {
        min-height: 250px;
        padding: 28px 18px 22px;
    }

    .love-weekly-imgbox img {
        max-width: 90%;
        max-height: 185px;
    }

    .love-weekly-title {
        font-size: 15px;
    }
}