@charset "UTF-8";

/* ---------------------------------------------------------
	CSS Document news
--------------------------------------------------------- */

#news .container {
	display: flex;
	justify-content: space-between;
}

#news .sidebar {
	text-align: left;
	font-size: 16px;
	line-height: 1;
}

#news .sidebar a {
	display: inline-block;
	vertical-align: top;
	padding: 15px 0;
	text-decoration: none;
	color: var(--black);
}

#news .sidebar .active a {
	color: var(--green);
}

#news .sidebar .active a:after {
	display: inline-block;
	vertical-align: 0.2em;
	content: '';
	width: 6px;
	height: 6px;
	margin-left: 0.8em;
	border-radius: 100%;
	background: var(--green);
}

#news .news-list {
	width: 920px;
	text-align: left;
}

#news .entry_list_title {
	margin-bottom: 35px;
	padding-bottom: 35px;
	border-bottom: solid 1px #CCD3CD;
	font-weight: 600;
	font-size: 26px;
	line-height: 1.5;
	color: var(--green);
}

#news .entry_list_title span {
	font-size: 20px;
}

#news .news-item {
	margin-bottom: 35px;
	padding-bottom: 35px;
	border-bottom: solid 1px #CCD3CD;
}

#news .news-item a {
	display: flex;
	gap: 30px;
	text-decoration: none;
	line-height: 1.3;
	color: var(--black);
	opacity: 1;
}

#news time {
	font-size: 15px;
	line-height: 22px;
	letter-spacing: 0.05em;
	transition: color .4s;
}

#news a:hover time {
	color: var(--green);
}

#news .news-category {
	width: 143px;
	height: 22px;
	border-radius: 22px;
	background: #6B7E73;
	text-align: center;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	transition: opacity .4s;
}

#news a:hover .news-category {
	opacity: 0.6;
}

#news h3 {
	flex: 1;
	overflow: hidden;
	padding-bottom: 6px;
	text-align: left;
	text-overflow: ellipsis;
	font-weight: 500;
	font-size: 15px;
	white-space: nowrap;
	cursor: pointer;
	transition: color .4s;
}

#news a:hover h3 {
	text-decoration: underline;
	text-underline-offset: 6px;
	color: var(--green);
}

#news .btn {
	text-align: right;
}

/* ---------------------------------------------------------
	CSS Document detail
--------------------------------------------------------- */

#news .news-detail {
	width: 920px;
	text-align: left;
}

#news .entry_meta {
	display: flex;
	gap: 20px;
	margin-bottom: 10px;
}

#news .entry_category a {
	display: inline-block;
	vertical-align: top;
	height: 22px;
	padding: 0 0.8em;
	border-radius: 22px;
	background: #6B7E73;
	text-decoration: none;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
}

#news h1 {
	margin-bottom: 30px;
	font-weight: 500;
	font-size: 26px;
	line-height: 1.5;
	color: var(--green);
}

#news h1:after {
	display: block;
	content: '';
	height: 1px;
	margin-top: 30px;
	background: #CCD3CD;
}

#news .entry_body:after {
	display: block;
	content: '';
	height: 1px;
	margin-top: 60px;
	background: #CCD3CD;
}

#news .entry_body p {
	margin-bottom: 2em;
}

#news .entry_body hr {
	height: 1px;
	margin-bottom: 2em;
	border: 0;
	background: #CCD3CD;
}

#news .entry_body ul {
	margin-bottom: 2em;
	margin-left: 18px;
}

#news .entry_body ol {
	margin-bottom: 2em;
	margin-left: 24px;
}

#news .entry_body table {
	width: 100%;
	margin-bottom: 2em;
}

#news .entry_body th {
	padding: 15px 10px;
	border: solid 1px #dad8d5;
	background: #f8f7f7;
	text-align: center;
	white-space: nowrap;
	font-weight: normal;
}

#news .entry_body td {
	padding: 15px 10px;
	border: solid 1px #dad8d5;
	text-align: left;
}

#news .entry_body .white_box {
	margin-bottom: 2em;
	padding: 30px 40px;
	background: #fff;
}

#news .entry_body .white_box p:last-of-type {
	margin-bottom: 0;
}

#news .entry_body .green_box {
	margin-bottom: 2em;
	padding: 30px 40px;
	background: rgba(214, 228, 198, 0.3);
}

#news .entry_body .green_box p:last-of-type {
	margin-bottom: 0;
}

/* ---------------------------------------------------------
	CSS Document pagination
--------------------------------------------------------- */

#pagination {
	margin-top: 60px;
	text-align: center;
}

#pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	font-size: 14px;
	line-height: 28px;
	position: relative;
}

#pagination li a {
	text-decoration: none;
}

#pagination li.link_page a,
#pagination li.current span {
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 100%;
	color: var(--black);
}

#pagination li.current span {
	background: #6FAF8A;
	color: #fff;
}

#pagination li.prev,
#pagination li.next {
	line-height: 46px;
	position: absolute;
	top: 0;
}

#pagination li.prev {
	left: 0;
}

#pagination li.next {
	right: 0;
}

#pagination li.link_page a:hover,
#pagination li.prev a:hover,
#pagination li.next a:hover {
	color: var(--green);
}

#pagination li.prev a {
	padding-left: 15px;
	color: var(--black);
}
#pagination li.prev:before {
	content: '';
	width: 7px;
	height: 7px;
	margin-top: 20px;
	border-bottom: solid 1px rgba(46, 50, 48, 0.3);
	border-left: solid 1px rgba(46, 50, 48, 0.3);
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	left: 3px;
}

#pagination li.link_prev a {
	display: inline-block;
	vertical-align: top;
	width: 32px;
	height: 32px;
	font-size: 0;
	position: relative;
}
#pagination li.link_prev a:after {
	content: '';
	width: 7px;
	height: 7px;
	margin-top: 11px;
	border-bottom: solid 1px rgba(46, 50, 48, 0.3);
	border-left: solid 1px rgba(46, 50, 48, 0.3);
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	left: 14px;
}

#pagination li.next a {
	padding-right: 15px;
	color: var(--black);
}
#pagination li.next:after {
	content: '';
	width: 7px;
	height: 7px;
	margin-top: 19px;
	border-top: solid 1px rgba(46, 50, 48, 0.3);
	border-right: solid 1px rgba(46, 50, 48, 0.3);
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	right: 3px;
}

#pagination li.link_next a {
	display: inline-block;
	vertical-align: top;
	width: 32px;
	height: 32px;
	font-size: 0;
	position: relative;
}
#pagination li.link_next a:after {
	content: '';
	width: 7px;
	height: 7px;
	margin-top: 11px;
	border-top: solid 1px rgba(46, 50, 48, 0.3);
	border-right: solid 1px rgba(46, 50, 48, 0.3);
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	right: 14px;
}
