.blog-list-widget {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-list {
	display: flex;
    flex-direction: column;
	gap: 20px;
}

.blog-item {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	display: flex;
}

.blog-content {
	padding-left: 55px;
    padding-right: 22px;
    max-height: 202px;
    margin: 24px 0 24px 0px;
    padding-top: 18px;
	width: 100%;
}

.blog-title {
	color: #58585A;
    font-size: 1.8rem;
    font-weight: bold;	
	margin-bottom: 10px;
}

.blog-excerpt {
	font-size: 1.4rem;
	line-height: 2rem;
	color: #58585A;
	max-height: 80px;
	min-height: 80px;
    overflow: hidden;
	padding-right: 50px;
}

.blog-excerpt-without-categories {
	font-size: 1.4rem;
	line-height: 2rem;
	color: #58585A;
	max-height: 105px;
    min-height: 105px;
    overflow: hidden;
	padding-right: 50px;
}

.read-more {
	display: inline-block;
	color: #0073aa;
	text-decoration: none;
	font-weight: bold;
}

.blog-thumb img {
	min-width: 299px;
    min-height: 202px;
    max-width: 299px;
    max-height: 202px;
    object-fit: cover;
    margin: 24px 0 24px 24px;
	display: block;
}

.blog-category {
	color: #EA6609;
    font-size: 1.2rem;
    font-weight: bold;	
	margin-bottom: 5px;
	text-transform: uppercase;
}

.blog-categories {
	margin-bottom: 4px;
}

.blog-date {
	font-size: 11px;
	color: #919191;
	margin-top: 16px;
    text-align: right;
	border-top: 1px solid #E0DFDF;
}

.page-numbers.current {
	background-color: #EA6609 !important;
    color: #fff !important;
	border-radius: 4px;
}

.page-numbers {
	padding: 5px 8px 5px 8px;
	font-family: 'Open Sans';
    font-weight: bold;
    font-size: 20px;
	color: #919191 !important;
}

.blog-pagination {
	margin-top: 60px;
}

@media (max-width: 768px) {	
	.blog-item {
		display: flex;
		flex-direction: column;
		padding: 0 30px;
	}
	
	.blog-thumb img {
		min-width: 100%;
		max-height: 430px;
		margin: 24px 0 24px 0;
		aspect-ratio: 3 / 2;
		min-height: initial;
	}
	
	.blog-content {
		padding: 0;
		margin: 0 0 24px 0;
	}
}