@charset "utf-8";

/* 1. 최신글 아이템 호버 효과 (다크/라이트 모드 완벽 대응) */
.latest-item {
	transition: background-color 0.2s ease-in-out;
	border-radius: var(--bs-border-radius) !important;
}

.latest-item:hover {
	/* 라이트모드: #f8f9fa, 다크모드: #2b3035 등 테마에 맞게 자동 전환 */
	background-color: var(--bs-tertiary-bg) !important;
}

/* 2. 텍스트 줄바꿈 방지 및 말줄임표 처리 (2줄 꺾임 방지) */
.latest-subject {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.latest-subject * {
	vertical-align: middle;
}
