/* RSS FEED  */
/* 최신글 위젯 전체 박스 */
.latest-posts-widget {
    background: #f8f9fa; /* 연한 배경 */
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

/* "New Updates" 제목 */
.latest-posts-widget .widget-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #495057;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

/* 리스트 스타일 제거 */
.latest-posts-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 각 항목 디자인 */
.latest-posts-widget li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #dee2e6; /* 점선 구분선 */
    padding-bottom: 8px;
}

.latest-posts-widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* 링크 (블록으로 만들어서 클릭 영역 확대) */
.latest-posts-widget a {
    text-decoration: none;
    display: flex;
    justify-content: space-between; /* 제목과 날짜 양끝 정렬 */
    align-items: center;
    color: #333;
    font-size: 0.95rem;
}

.latest-posts-widget a:hover .post-title {
    color: #0056b3;
}

/* 날짜 스타일 (작고 흐리게) */
.latest-posts-widget .post-date {
    font-size: 0.8rem;
    color: #868e96;
    margin-left: 10px;
    white-space: nowrap; /* 줄바꿈 방지 */
}