/* Avada Related Posts Titles - 캡션 스타일 */

/* 가로는 자르고(컬럼 수 고정), 세로(캡션)만 보이게 */
.single-related-posts .awb-swiper {
	overflow-x: hidden !important;
	overflow-y: visible !important;
}
.single-related-posts .swiper-wrapper,
.single-related-posts .swiper-slide {
	height: auto !important;
}
.single-related-posts .fusion-carousel-item-wrapper {
	height: auto !important;
}

/* 이미지 아래 삽입되는 제목 링크 */
.single-related-posts .rel-caption {
	display: -webkit-box;
	-webkit-line-clamp: 2;          /* 2줄까지, 넘으면 ... */
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 8px 4px 0;
	padding: 0 2px;
	font-size: 13px;
	line-height: 1.35;
	color: #333;
	text-align: center;
	text-decoration: none;
	word-break: keep-all;           /* 한글 단어 단위 줄바꿈 */
}
.single-related-posts .rel-caption:hover {
	color: #0d6efd;                 /* 필요 시 사이트 메인 색상으로 조정 */
}
