@charset "utf-8";

/* 새글 스킨 (latest) - 카드형 */
.lat { position: relative; margin-bottom: 20px; }

.lat_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #BFC8D1;
    border-radius: clamp(1.2rem, 1vw, 1.6rem);
    overflow: hidden;
    background: #fff;
}

.lat_card {
    display: flex;
    flex-direction: column;
    padding: clamp(2.8rem, 3vw, 4rem) clamp(2rem, 2.4vw, 3rem);
    border-right: 1px solid #BFC8D1;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}
.lat_card:last-child { border-right: none; }
.lat_card:hover { background: #f2f4f8; }
.lat_card:hover .lat_badge { background: var(--main-s); color: white;}

.lat_badge {
    align-self: flex-start;
    padding: 2px 10px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-s);
    border: 1px solid var(--main-s);
    border-radius: 4px;
    background: #fff;
    transition: all 0.15s ease;
}

.lat_card_title {
    font-size: clamp(1.9rem, 2vw, 2.2rem);
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}
.lat_card_title .new_icon {
    display: inline-block; width: 16px; line-height: 16px; font-size: 0.75em;
    color: #23db79; background: #b9ffda; text-align: center; border-radius: 2px;
    margin-left: 4px; font-weight: bold; vertical-align: middle;
}
.lat_card_title .hot_icon {
    display: inline-block; width: 16px; line-height: 16px; font-size: 0.75em;
    color: #ff0000; background: #ffb9b9; text-align: center; border-radius: 2px;
    vertical-align: middle;
}

.lat_card_desc {
    font-size: clamp(1.5rem, 1.6vw, 1.6rem);
    line-height: 1.5;
    color: #697077;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
    flex: 1;
}

.lat_card_meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}
.lt_date { color: #9ca3af; font-size: 14px; }
.lt_cmt {
    background: #e9eff5; color: #3a8afd; font-size: 11px;
    height: 16px; line-height: 16px; padding: 0 5px; border-radius: 3px;
}

.lat_empty {
    grid-column: 1 / -1;
    line-height: 145px;
    color: #666;
    text-align: center;
}

.lt_more {
    position: absolute;
    top: -34px;
    right: 0;
    display: block;
    width: 40px;
    line-height: 25px;
    color: #3a8afd;
    border-radius: 3px;
    text-align: center;
}
.lt_more:hover { color: #777; }

/* 모바일: 1열로 스택 */
@media (max-width: 768px) {
    .lat_grid { grid-template-columns: 1fr; }
    .lat_card { border-right: none; border-bottom: 1px solid #BFC8D1; }
    .lat_card:last-child { border-bottom: none; }
}