/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 17 2024 | 18:12:13 */
.blog main {
	max-width: 1300px; 
	margin-left: auto; 
	margin-right: auto;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 60px;
	padding-bottom: 80px;
	box-sizing: border-box;
}

.blog h1 {
	margin-top: 0;
    font-size: 35px;
	text-align: center;
}

.blog .vc_separator {
    width: 160px;
    height: 3px;
    background-color: green;
    margin-left: auto;
    margin-right: auto;
	margin-bottom: 40px;
}

.blog .post {
	padding-bottom: 60px; 
	border-bottom: 1px #ddd solid;
	margin-bottom: 60px;
}

.blog .post .post-thumbnail img {
	width: 100%;
	height: auto;
	object-fit: cover; 
	aspect-ratio: 3;
}

.blog .title {
	font-size: 24px; 
	font-weight: 400;
	margin-bottom: 20px;
}

.blog .post-content p {
	font-size: 16px;
}

.blog .post-footer {
	color: #555; 
	font-style: italic;
}

.blog .read-more-button {
	color: white;
	padding: 5px 10px; 
	background-color: black;
	display: inline-block;
	margin-bottom: 25px;
}

@media screen and (max-width: 600px) { 
	.blog .title { 
		font-size: 20px;
	}
	
	.blog .read-more-button { 
		margin-bottom: 35px;
	}
}