@charset "UTF-8";


.new-board-wrapper {
    margin: -9.5px 0;
}
.new-board-wrapper > li {
    padding: 0;
    display: block;
    width: 100%;
    padding: 9.5px 0;
}
.new-board-wrapper > li.new-board-notice .new-board-box {
    background-color: #f9f9f9;
}
.new-board-wrapper .new-board-box {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 29px 40px;
}
.new-board-wrapper .new-board-box > * {
    display: inline-block;
    vertical-align: middle;
}
.new-board-wrapper .new-board-area {
    margin: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.new-board-wrapper .new-board-area:hover {
    background-image: linear-gradient(#fff, #fff), linear-gradient(to bottom, #000000, #000000);
    background-origin: border-box;
    background-clip: content-box, border-box;
}
.new-board-wrapper .new-board-area:hover .new-board-box {
    border: 1px solid transparent;
}
.new-board-wrapper .new-board-area:hover .new-board-contents::after {
    background-image: url('/_res/together/img/icon/icon_arrow05.png');
	background-repeat: no-repeat;
	opacity: 1;
}
.new-board-wrapper .new-board-box .date {
    text-align: center;
}
.new-board-wrapper .new-board-box .date p:first-child {
    font-weight: 700;
    font-size: 40px;
    color: #e5e5e5;
}
.new-board-wrapper .new-board-box .date p:last-child {
    font-weight: 500;
    font-size: 16px;
    color: #dadada;
}
.new-board-wrapper .new-board-box .date p:last-child span {
    display: none;
}
.new-board-wrapper .new-board-info {
    display: block;
}
.new-board-info .writer {
    position: relative;
	padding-right: 20px;
}
.new-board-info .writer:after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 1px;
	background-color: #e5e5e5;
}
.new-board-info .hits {
    position: relative;
	padding-left: 20px;	
}
.new-board-wrapper .new-board-contents {
    margin: 0;
    padding-left: 30px;
    width: calc(100% - 100px);
    position: relative;
}
.new-board-wrapper .new-board-contents::after {
	display: block;
    content: '';
    width: 20px;
    height: 19px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-image: url('/_res/together/img/icon/icon_arrow04.png');
	background-repeat: no-repeat;
	background-size: 100%;
	opacity: .7;
    transition: all 0.2s ease;
	
}
.new-board-contents .type {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 26px;
    line-height: 26px;
    border-radius: 5px;
    background-color: #333;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-align: center;
}
.new-board-wrapper .new-board-contents a {
    font-weight: 400;
}
.new-board-wrapper .title {
	display: block;
    font-size: 18px;
    font-weight: 500;
	line-height: 140%;
    color: #0f0f0f;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
.new-board-wrapper .desc {
	width: 92%;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
	line-height: 140%;
    color: #999;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
.new-board-wrapper .new-board-box .date {
    border-right: 1px dashed #e5e5e5;
    padding-right: 33px;
}


@media all and (max-width : 1023px) {	
    .new-board-wrapper .new-board-box {
        padding: 20px;
    }
    .new-board-wrapper .new-board-box .date {
        width: 100%;
        text-align: left;
    }
    .new-board-wrapper .new-board-box .date p:first-child {
        display: none;
    }
    .new-board-wrapper .new-board-box .date p:last-child span {
        display: inline-block;
    }
	.new-board-wrapper .new-board-contents::after {
		display: none;
	}
    .new-board-wrapper .new-board-contents {
        width: 100%;
        padding-left: 0;
        padding-top: 10px;
    }
	.new-board-info .writer {
		padding-right: 1rem;
	}
	.new-board-info .hits {
		padding-left: 1rem;	
	}
	.new-board-contents .type {
        display: block;
        margin-bottom: 5px;
	}	
	.new-board-wrapper .desc {
		font-size: 1rem;
		width: 100%;	
    	-webkit-line-clamp: 3;	
	}
    .new-board-wrapper .title {
		font-size: 1.154rem;
    	-webkit-line-clamp: 3;
    }

}