.board .list {
    gap: 24px;
}
.board .list .item .box {
	gap: 40px;
	padding: 40px;
	border-radius: 30px;
	background: rgba(5, 0, 28, 0.15);
	box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.3), inset 0 0 5px rgba(255, 255, 255, 0.3);
	box-sizing: border-box;
}
.board .list .item .box .img {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 57%;
    border-radius: 10px;
    overflow: hidden;
}
.board .list .item .box .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.board .list .item .box .info {
	gap: 16px;
	font-size: 18px;
	line-height: 1.2;
}
.board .list .item .box .info .title {
	font-size: 20px;
	font-weight: 500;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.board .list .item .box .info .desc {
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.board .list .item .box .info span {
	opacity: .6;
}



.read {
    gap: 40px;
    padding-bottom: 40px;
}
.read .title h4 {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: capitalize;
}
.read .title p {
    line-height: 1.4;
    opacity: .8;
}
.read .conts {
    font-size: 18px;
    line-height: 1.4;
}
.read .conts img {
    max-width: 100%;
}
.read .btn_area a {
    font-size: 18px;
    opacity: .6;
}



@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1024px) {
    .board .list .item .box {
		gap: 30px;
		padding: 25px;
	}
	.board .list .item .box .info {
		font-size: 14px;
	}
	.board .list .item .box .info .title {
		font-size: 18px;
	}


    .read .title h4 {
        font-size: 20px;
    }
    .read .title p {
        font-size: 14px;
    }
    .read .conts {
        font-size: 14px;
    }
    .read .btn_area a {
        font-size: 16px;
    }
}
@media screen and (max-width: 700px) {
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}
