@charset "utf-8";

/* 최신글 카드 이미지 및 노이미지 박스 높이 통일 */
.card-img-top, .no-img-box {
    width: 100%;
    height: 180px !important; /* 이미지와 박스 높이를 똑같이 맞춰야 정렬됨 */
    object-fit: cover;
}

/* 노이미지 제목 박스 */
.no-img-box {
    background: #333 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    box-sizing: border-box !important;
}

/* 박스 내 텍스트 2줄 제한 */
.no-img-text {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    text-align: center !important;
    word-break: keep-all !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.card-title { height: 2.8em; overflow: hidden; margin-top:10px; }