@charset "utf-8";

/* 그누보드5 최근글 스킨 CSS */

.pic_lt {
    width: 100%;
    margin-bottom: 30px;
}

.lat_title {
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: bold;
}

.lat_title a {
    text-decoration: none;
    color: #333;
}

.lat_title a:hover {
    color: #0066cc;
}

/* 이미지 스타일 */
.image.minus {
    display: block;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
}

.image.minus img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image.minus:hover img {
    transform: scale(1.05);
}

/* 아이콘 스타일 */
.new_icon, .hot_icon {
    display: inline-block;
    background: #ff4444;
    color: white;
    font-size: 0.7em;
    padding: 2px 4px;
    border-radius: 2px;
    margin-left: 5px;
    font-weight: bold;
}

.hot_icon {
    background: #ff8800;
}