
.post__inner {
    display: block;
    overflow: hidden;
}

.post__title {
	font-size: 30px;
	line-height: 1;
	font-weight: 600;
	color: #002E4B;
	border-bottom: 1px solid #002E4B;
	padding-bottom: 20px;
}

.post__content {
	display: flex;
    overflow: hidden;
	justify-content: space-between;
	margin: 20px 0;
}


.post__content-img {
	width: 100%;
    height: 500px;
	overflow: hidden;
}

.post__content-img img{
	width: 100%;
    height: 100%;
	object-fit: cover;
}

.post__content .noimg {
	width: 100%;
	height: auto;
    object-fit: cover;
}

.post__list {
	display: block;
    height: 400px;
	text-align: end;
	margin-left: 20px;
	position: relative;
    
	
}

.post__data li {
    display: flex;
    justify-content: end;
	position: relative;
	list-style-type: none;
	font-size: 20px;
	font-weight: 500;
	border-radius: 6px;
	text-transform: uppercase;
	background-color: rgb(226, 233, 245);
	margin-bottom: 10px;
	padding: 10px;
	

}

.post__data-link {
	text-decoration: none;
	color: #052C65;
}

.post__data-social {
	display: flex;
	justify-content: center;
}
.post__social {
	display: flex;
	
	align-items: center;
	
	
	
}

.icon {
	justify-content: center;
}

.post__description {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
	border-top: 1px solid #BDBDBD;
	padding-top: 20px;

}

.btn-bottom {
	position: absolute;
	right: 0;
	bottom: 0;
	
}
/********************related************/

.related {
    
    border-bottom: 1px solid #8e736d;

}

.postsub__title {
    color: #052C65;
    font-size: 18px;
    font-weight: 500;
    margin: 30px 15px 10px 0;
}

.related__list {
    display: flex;
    flex-wrap: wrap;

    
    


}

.related__list-item {
    width: 50%;
    padding-bottom: 10px ;
    
   
}

.related__list-title {
    padding: 0;
    margin:0 20px 5px 0;
    line-height: 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;

    
    
}

.related__link {
    color: #1a2669;
    font-weight: 500;
}


.related__list-date {
    font-size: 12px;
    font-weight: 300;
    color: #828282;
    
}



/********************pagination************/

.pagination {
    display: flex;
    margin-top: 10px;
    justify-content: center;
    
}

.pagination__item {
    margin: 0 10px;
    list-style-type: none;
}

.pagination__link {
    display: block;
    width: 40px;
    height: 40px;
    text-decoration: none;
    
    
    background-color: #052C65;
    border-radius: 3px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    border: none;
    
    
}

.pagination__link:hover {
    background-color: lighten #081f41;
    opacity: 50%;
}

.pagination__link:active {
    background-color: rgb(23, 23, 167);
    box-shadow: 0 0 10px rgba(58, 108, 234, 15);
}

