.board .tit {
    margin: 40px 0 20px;
}
.board .pagenavi {
	margin-top: 30px;
}

.board .gallery_type {
	gap: 40px 20px;
}
.board .gallery_type .item {
	width: calc(33.333% - 14px);
}
.board .gallery_type .item .thumb {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 61%;
	overflow: hidden;
	border-radius: 10px;
}
.board .gallery_type .item .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.board .gallery_type .item p {
	text-align: center;
	margin-top: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	color: var(--gray2);
}


.board .read {
	padding: 40px 0;
	gap: 20px;
}
.board .read .subject {
    background: var(--black);
    padding: 20px;
	border-radius: 10px;
	gap: 10px;
    box-sizing: border-box;
}
.board .read .subject h4 {
	font-size: 20px;
}
.board .read .subject .util {
	justify-content: end;
	gap: 10px;
}
.board .read .subject .util .view {
	border-right: 1px solid var(--gray2);
	padding-right: 10px;
}
.board .read .cont img {
	max-width: 100%;
}
.board .read .btn_area {
	justify-content: center;
	border-top: 1px solid rgba(255,255,255,0.3);
	padding-top: 20px;
}
.board .read .btn_area a {
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}





@media screen and (max-width: 1260px) {
}
@media screen and (max-width: 1024px) {
	.board .gallery_type .item {
		width: calc(50% - 10px);
	}

	.board .read .subject h4 {
		font-size: 16px;
	}
	.board .read .subject .util {
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
	.board .gallery_type {
		gap: 30px 15px;
	}
	.board .gallery_type .item {
		width: calc(50% - 8px);
	}
	.board .gallery_type .item p {
		font-size: 14px;
		margin-top: 10px;
	}
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}