@charset "utf-8";

/** 리스트  */
.notice-list{
 border-top: 2px solid #222;
 border-bottom: 1px solid #cecece;
 margin-bottom: 100px;
}

.notice-list ul{

}

.notice-list ul li{
	padding: 24px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
}

.notice-list ul li.no_data{
	justify-content: center;
	font-size: 18px;
}

.notice-list ul li + li{
	border-top: 1px solid #cecece;
}

.notice-label{
	background: var(--main-color);
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	padding: 4px 15px;
	border-radius: 24px; 
}

.new-label{
	font-style: italic;
	font-weight: 500;
	color: #FF0000;
	margin-left: 12px;
}

.notice-tit-wrap{
	flex: 1;
}

.notice-tit-wrap .notice-tit{

}

.notice-tit-wrap .notice-tit a{
	font-size: 20px;
	font-weight: 600;
}

.notice-tit-wrap .notice-tit a:hover{
	text-decoration: underline;
}

.notice-tit-wrap .date{
	color: #717171;
	display: block;
	margin-top: 8px;
}

.btn-link{
	
}

.btn-link a{
	display: block;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #cecece;
	font-size: 20px;
	background: #fff;
	border-radius: 50%;
	transition: all .3s ease-in-out;
}


.notice-list ul li:hover{
	background: var(--light-gray);
	transition: background .3s ease-in;
}

.notice-list ul li:hover .btn-link a{
	background: var(--main-color);
	color: #fff;
	border: 1px solid transparent;
}


/** view */
.board-view{
	width: 100%;
	height: 100%;
	border-top: 2px solid #222;
}

.board-title-wrap{
	padding: 32px 16px;
	border-bottom: 1px solid #cecece;

}

.board-title h5{
	font-size: 32px;
	font-weight: 600;
}

.board-title span{
	color: #717171;
	margin-top: 16px;
	display: block;
}

.board-info{
	display: flex;    
	align-items: center;
  gap: 56px;
	margin-top: 16px;
}

.board-info dl{
	display: flex;
	font-size: 18px;
	position: relative;
}

.board-info dl dt, .board-info dl dd{
	padding: 0 20px;
	color: #717171;
}

.board-info dl dt{
	position: relative;
	padding-left: 0;
}

.board-info dl dt::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	width: 1px;
	height: 13px;
	background: #ccc;
}

.board-cont-wrap{
	padding: 32px 0;
}

.file-wrap{
	width: 100%;
	background: var(--light-gray);
	border-radius: 8px;
	margin-bottom: 40px;
}

.file-wrap .file-list{
	padding: 14px 16px;
}

.file-wrap .file-list li{
	position: relative;
}

.file-wrap .file-list li::before{
	content: '';
	background: url('/images/notice_file.svg') no-repeat;
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: middle;
  margin-right: 8px;
}


.board-cont{
	border-bottom: 1px solid #cecece;
	padding-bottom: 40px;
}

.board-cont p{
	line-height: 1.8;
}

.notice-btn{
	width: 100%;
	text-align: center;
	margin: 0 auto;
	padding: 24px 0 60px;
}

.notice-btn .list-btn{
	background: var(--navy);
	color: #fff;
	border-radius: 8px;
	padding: 16px 80px;
	font-size: 18px;
	display: inline-block;
}


@media (max-width: 1080px) {
 .btn-link{
		display: none;
 }

 .notice-tit-wrap .notice-tit a{
	font-size: 18px;
 }

 .notice-tit-wrap .date, .new-label{
	font-size: 15px;
 }

}

@media (max-width: 801px) {
	.notice-list ul li{
		padding: 16px;
	}
}



@media (max-width: 680px) {
	.board-title h5{
		font-size: 24px;
	}

	
}