@charset "utf-8";

/* ==========================================================================
   건강칼럼 게시판 목록
   - module/board/skin/hallym_column/list.php 에서만 로드됩니다
   - 기본 레이아웃은 기존 .thum_list.col (언론보도와 동일) 을 그대로 사용하고,
     대표 이미지가 없는 게시물의 표시만 보정합니다
   ========================================================================== */

/* 이미지가 없는 게시물 — 기본 로고를 꽉 채우지 않고 가운데 배치 */
.thum_list.col .img.no_img {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F5F7FA;
	border: #EBEBEB 1px solid;
	border-bottom: 0;
	box-sizing: border-box;
}

.thum_list.col .img.no_img img {
	width: auto;
	height: auto;
	max-width: 55%;
	max-height: 45%;
	object-fit: contain;
	opacity: .45;
}

@media all and (max-width: 767px) {
	.thum_list.col .img.no_img img { max-width: 50%; max-height: 40%; }
}
