@charset "utf-8";

/* 전체 박스 */
.lt-section-box {
    background: #0d0d0d;
    padding: 15px;
    margin-bottom: 50px;
    border-radius: 10px;
    border: 1px solid #222;
}

/* 제목 줄 */
.lt-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 10px 5px 15px 5px;
    font-size: 1.2em;
    font-weight: bold;
}

.lt-title a {
    color: #fff;
    text-decoration: none;
}

.lt-more-btn {
    color: #bbb !important;
    font-size: 18px;
}

/* 리스트 */
.lt-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 0;
}

/* 리스트 아이템 박스 */
.lt-item {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 10px;
    width: calc(25% - 18px); /* PC 4개 */
    list-style: none;
}

/* 모바일 2개 */
@media (max-width: 768px) {
    .lt-item {
        width: calc(50% - 10px);
    }
}

/* 썸네일 박스 */
.thumb-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%; /* 기존 썸네일 비율 맞춤 */
    overflow: hidden;
    border-radius: 6px;
}

.thumb-box img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NEW/HOT 아이콘 (좌측 상단) */
.icon-new,
.icon-hot {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e52955;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
}

.icon-new { background: #6db142; }

/* 게시판 라벨 (좌측 하단) */
.thumb-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
}

/* 제목 */
.lt-subject {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

/* 조회수 */
.lt-hit {
    margin-top: 5px;
    font-size: 12px;
    color: #ccc;
}

/* empty */
.empty {
    padding: 20px;
    color: #999;
}
