




.recent-blogs-container {
	margin-bottom: 0rem;
}

.recent-blogs-container.related {
	
}

.recent-blogs-container .rich-text {
	margin-bottom: 6.7rem;
}

.recent-blogs-container .posts {
	gap:20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.recent-blogs-container .posts .post {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 15px;

	background-color: var(--white);
}



.recent-blogs-container .posts.grid .post:nth-child(1) .body .summary {
	display: none;
}


.recent-blogs-container .posts.grid .post:nth-child(1) .body .post-footer {
	display: block;
}



.recent-blogs-container .posts.grid .post:nth-child(1) .body .post-footer .written-author {
	margin-bottom: 2rem;
}





.recent-blogs-container .posts .post .post-container {
    flex: 1;
    display: flex\;
    flex-direction: column;
    padding: 15px;
    border-radius: 15px;
    border: 2px solid #1976D2;
}

.recent-blogs-container .posts .post .featured-image {
	flex: 1;
	display: flex;
	overflow: hidden;
	max-height: 250px;

	align-items: center;
	justify-content: center;
}

.recent-blogs-container .posts .post .featured-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.recent-blogs-container .posts .post .featured-image img {
display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 250px;
   min-height: 250px;
    width: 100%;
    border-radius: 15px;

}

.recent-blogs-container .posts .post .body {
    flex: 1;
    display: flex;
    padding: 27px 0px 0px 0px;
    flex-direction: column;
}

.recent-blogs-container .posts .post .body .tag {
	letter-spacing: 0;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 5px;
    color: #1976D2;
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.recent-blogs-container .posts .post .body .blog-post-title {
    letter-spacing: 0;
    overflow: hidden;
    color: var(--bodyColour);
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-blogs-container .posts .post .body .blog-post-title a {
	color: inherit;
	text-decoration: none;
}

.recent-blogs-container .posts .post .body .summary-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: end;
      display: none !important;
}

.recent-blogs-container .posts .post .body .summary {
	display: none;
	font-size: 1.6rem;
	color: #161B30;
	letter-spacing: 0;
	line-height: 25px;
	font-weight: 400;
}

.recent-blogs-container .posts .post .body .summary-container .author {
	font-size: 1.6rem;
	color: #161B30;
	letter-spacing: 0;
	line-height: 25px;
	font-weight: 600;
}


@media(max-width:992px){
    .recent-blogs-container .posts {
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }


}

@media(max-width:767px){
    .recent-blogs-container .posts {
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }


}











.recent-blogs-container .pagination {
    display: flex;
	gap: 5px;
	justify-content: center;
	align-items: center;
	padding-top: 9rem;
}

.recent-blogs-container .pagination .page-number {
	color: #141517;
	font-size: 16px;
	letter-spacing: 0;
	text-align: center;
	line-height: 25px;
	font-weight: 400;
	text-decoration: none;
	padding: 5px 10px;
}

.recent-blogs-container .pagination .page-number.active {
    color: #00A9F3;
	font-weight: 700;
}

.recent-blogs-container .pagination .previous-posts {
	margin-right: 10px;
}

.recent-blogs-container .pagination .next-posts {
	margin-left: 10px;
}
























