@charset "utf-8";

/* 전체 최신글 박스 */
.lat {
    position: relative;
    margin-bottom: 4px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 20px;
    transition: all 0.3s ease;
    min-height:587.66px;
}

/* 타이틀 영역 */
.lat .lat_title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #080808;
    margin-bottom: 12px;
}

.lat .lat_title a {
    color: #080808;
    text-decoration: none;
    margin-left: 8px;
    height:36px;
    line-height:36px;
    width:100%;
}

.lat .lat_title a:hover {
    color: #525bf4;
}

/* 아이콘 이미지 */
.lat_icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

/* 리스트 영역 */
.lat ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.lat li {
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lat li:last-child {
    border-bottom: none;
}

.basic_li h3 {
    font-size: 14.2px;
    font-weight: 500;
    color: #2e2e2e;
    text-decoration: none;
}

.basic_li a:hover h3 {
    color: #525bf4;
}

/* 아이콘들 */
.lat li .fa-lock,
.lat li .fa-download,
.lat li .fa-link,
.lat li .fa-heart {
    font-size: 0.85rem;
    margin-right: 4px;
    padding: 2px 4px;
    border-radius: 4px;
    vertical-align: middle;
}

.fa-lock { background: #e3f7f9; color: #0c869b; }
.fa-download { background: #fff3db; color: #daae37; }
.fa-link { background: #f3e8ff; color: #8e44ad; }
.fa-heart { background: #ffe6e6; color: #e74c3c; }

/* 상태 표시 */
.new_icon,
.hot_icon {
    display: inline-block;
    padding: 2px 5px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
    margin-left: 4px;
}

.new_icon {
    background: #d4fbe7;
    color: #0b9d6c;
}

.hot_icon {
    background: #ffdada;
    color: #d93737;
}

.lat .lt_cmt {
    background: #f0f4f9;
    color: #3a8afd;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

/* 작성자 및 날짜 */
.lt_info {
    display: flex;
    justify-content: space-between;
    font-size: 12.8px;
    color: #888;
    margin-top: 2px;
    font-weight:400;
}

/* 더보기 버튼 */
.lat .lt_more {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 10px;
    background: #f0f7ff;
    color: #3a8afd;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s ease;
}

.lat .lt_more:hover {
    background: #e3efff;
    color: #1d6fdc;
}

/* 게시물 없을 때 */
.lat .empty_li {
    text-align: center;
    padding: 50px 0;
    color: #9ca3af;
    font-size: 14px;
}

.lt_date {
    color: #777;
}

.sv_member {
    color: #9ca3af;
}