@charset "utf-8";

/* 게시판 공통 요소 */
@import url('/Web-home/fnct/bbs/bbs_common/css/board_common.css');

/* 웹진 타입 */
.webzine > ul {border-top: 2px solid #2c2c2c;}
.webzine > ul > li {border-bottom: 1px solid #e2e2e2;}
.webzine a {display: flex; padding: 3rem; transition: background .35s;}
.webzine a:hover {background: #f1f6fa;}
.webzine .thum {overflow: hidden; display: flex; align-items: center; justify-content: center; width: 35rem; height: 23rem; border-radius: 1rem;}
.webzine .thum img {object-fit: cover; width: 120%; height: 100%;}
.webzine .conts {width: calc(100% - 35rem); padding-left: 5rem;}
.webzine .conts .sub {display: none;}
.webzine .conts .title {display: flex; align-items: center; margin-top: 1.5rem; font-family: pb; font-size: 2rem; color: #121212;}
.webzine .conts .title em {overflow:hidden; position: relative; display:-webkit-inline-box; line-clamp: 1; -webkit-line-clamp: 1; -webkit-box-orient:vertical;}
.webzine .conts .title em::after {content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: #121212; transition: width .35s;}
.webzine a:hover .conts .title em::after {width: 100%;}
.webzine .conts .title .new {flex-shrink: 0; position: relative; top: -.1rem; display: inline-flex; width: 2.7rem; height: 2.7rem; margin-left: 1rem; background: url('../../bbs_common/images/ic-new.png') no-repeat center; text-indent: -9999rem;}
.webzine .conts .contentTxt {overflow: hidden; display: -webkit-box; margin-top: 1.5rem; font-family: pr; font-size: 1.7rem; line-height: 1.8; color: #666666; line-clamp: 3; -webkit-line-clamp: 3; -webkit-box-orient: vertical;}
.webzine .conts .detail {display: flex; align-items: center; margin-top: 5rem;}
.webzine .conts .detail li {position: relative; margin-right: 2rem; padding-right: 2rem; font-family: pm; font-size: 1.6rem; color: #666666;}
.webzine .conts .detail li::after {content: ''; position: absolute; left: 100%; top: .4rem; width: 1px; height: 1.5rem; background: #dcdcdc;}
.webzine .conts .detail li:last-child::after {display: none;}
.webzine .conts .detail li strong {color: #2a2a2a;}
.webzine .conts .detail li strong::after {content: ' : ';}

@media screen and (max-width: 1100px) {
	.webzine .thum {width: 28rem;}
	.webzine .conts {width: calc(100% - 28rem);}
	.webzine .conts .contentTxt {line-clamp: 2; -webkit-line-clamp: 2;}
	.webzine .conts {padding-left: 3rem;}
	.webzine .conts .detail li {margin-right: 1rem; padding-right: 1rem;}
}

@media screen and (max-width: 800px) {
	.webzine .thum {width: 20rem;}
	.webzine .conts {width: calc(100% - 20rem);}
	.webzine .conts .detail li {font-size: 1.5rem;}
}

@media screen and (max-width: 768px) {
	.webzine a {flex-direction: column; align-items: flex-start;}
	.webzine .thum {width: 100%; height: auto; text-align: center;}
	.webzine .thum img {width: 100%;}
	.webzine .conts {width: 100%; padding-left: 0; padding-top: 3rem;}
	.webzine .conts .title {margin-top: 0;}
	.webzine .conts .detail {margin-top: .8rem;}
	.webzine .conts .detail li {margin-right: .8rem; padding-right: .8rem; font-size: 1.4rem;}
	.webzine .conts .contentTxt {margin-top: 1rem; font-size: 1.6rem;}
}