.page_archive{
	padding: 50px 0;
}
h1.th_pagearchive {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    font-size: 33px;
    text-transform: uppercase;
    color: var(--cl2);
    font-weight: bold;
    text-align: left;
}
h1.th_pagearchive::after {
    content: '';
    position: absolute;
    left: 0%;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: var(--cl1);
}
.slogan_pagearchive{
	margin-bottom: 10px;
}
.grid_archive{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
}
.col_archive{
	grid-column-end: span 1;
}

.itempost{
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
}
.itempost a{
	display: block;
	position: relative;
	height: 100%;
}
.itempost a img{
	width: 100%;
	height: auto;
	object-fit: fill;
}
.info__itempost{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient( 0deg, rgba(59, 96, 188, 1) 0%, rgba(59, 96, 188, 0.8) 30%, rgba(59, 96, 188, 0) 100% );
	padding: 5px 10px;
}
.info__itempost h3{
	margin: 0;
	padding: 0;
	margin-bottom: 3px;
	padding-bottom: 3px;
	text-transform: capitalize;
	border-bottom: 1px solid rgb(255 255 255 / 20%);
	font-size: 15px;
	color: #fff;
}
.info__itempost .date__itempost{
	color: #fff;
}

@media only screen and (max-width: 991px){
	.page_archive {
		padding: 30px 0;
	}
}
@media(min-width: 768px) and (max-width: 991px){

}
@media only screen and (max-width: 767px){
	.grid_archive{
		grid-template-columns: repeat(1, 1fr);
	}
}

.hl-pagination{
    display: inline-block;
    width: 100%;
}

.navigation.pagination{
    float: left;
    width: 100%;
    text-align: center;
    display:block;
    margin: 30px 0;
}
.nav-links{
    display: flex;
    justify-content: center;
}

.navigation.pagination .screen-reader-text{
    display:none;
}
.navigation.pagination .page-numbers .icon{
    width:11px;
    height:11px;
    color: #fff;
    fill:#fff;
}
.navigation.pagination .page-numbers{
    background: #ffffff;
    color: #000;
    padding: 8px 12px;
    position: relative;
    border-radius: 5px;
    margin-right: 5px;
    border: 1px solid #ddd;
    line-height: 1;
}
.navigation.pagination .page-numbers:after{
    position:absolute;
    top:45%;
    left:50%;
    transform:translate(-50%,-50%)
}

.navigation.pagination .page-numbers.next:after{
    content:"»";
}

.navigation.pagination .page-numbers.prev:after{
    content:"«";
}

.navigation.pagination .page-numbers.current{
    background: #fb7a1c;
    color: #fff;
    border: 1px solid #fb7a1c;
}