/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 14 2024 | 00:48:27 */
.blog-section {
	grid-template-columns: 7fr 3fr;
}

.blog-section .right h2 {
	margin-top: 30px;
}
.blog-section .right p {
	padding-top: 5px; 
	padding-bottom: 5px;
}

.blog-section .right p a {
	transition: 0.4s;
}
.blog-section .right p a:hover {
	transition: 0.4s;
	color: rgb(35, 164, 85);
}

.blog-section .left hr {
	margin-top: 15px;
	margin-bottom: 10px;
	border: none;
    border-top: 2px solid rgb(35, 164, 85); /* Set the color and thickness */
}
.blog-section .right hr {
	margin-top: 15px;
	margin-bottom: 10px;
	border: none;
    border-top: 2px solid rgb(35, 164, 85); /* Set the color and thickness */
}

.blog-section form {
    display: flex;
    align-items: center;
}

.blog-section input[type="text"] {
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px; /* Rounded corners for the left side */
    flex: 1; /* Allow input to expand */
}

.blog-section button {
    background-color: rgb(35, 164, 85);
    border: none;
    padding: 8px 12px;
	box-sizing: border-box; 
	height: 44px;
    cursor: pointer;
    color: white;
    border-radius: 0 4px 4px 0; /* Rounded corners for the right side */
	transition: 0.4s;
}

.blog-section button:hover {
    background-color: rgb(28, 135, 70); /* Darken the button on hover */
	transition: 0.4s;
}

.blog-section button img {
	width: 20px; 
	height: 20px;
	margin-top: 4px;
}

.blog-section input[type="text"]::placeholder {
    color: #999;
}

.recent-post {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #ddd; /* Optional styling */
    padding: 10px 0;
}

.recent-post:hover {
    background-color: #f9f9f9; /* Optional hover effect */
}

.right .post-thumbnail {
    margin-right: 20px; /* Space between image and text */
}

.right .post-thumbnail img {
    width: 40px; /* Adjust image size */
    height: 40px;
    object-fit: cover; /* Ensure images are cropped uniformly */
}

.post-title h3 {
    font-size: 14px;
    margin: 0;
	transition: 0.4s;
}
.post-title h3:hover {
	transition: 0.4s;
	color: rgb(35, 164, 85);
}

.latest-posts-container {
    max-width: 800px;
    margin: 0 auto;
}

.post-item {
    margin-bottom: 40px;
}

.left .post-thumbnail {
    margin-bottom: 15px;
}

.left .post-thumbnail img {
    width: 100%;
    height: auto;
	aspect-ratio: 2;
	object-fit: cover;
    border-radius: 5px;
}

.left h2 {
	font-size: 30px;
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.post-meta .author {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.post-meta .author img {
    border-radius: 50%;
    margin-right: 10px;
}

.post-meta .date {
    color: #888;
}

.post-excerpt {
    margin-bottom: 20px;
}

.read-more .btn {
    background-color: rgb(35, 164, 85);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.read-more .btn:hover {
    background-color: rgb(28, 135, 70);
}

.pagination {
    text-align: center;
	margin-top: 25px;
}

.pagination a {
    margin: 0px 5px;
    padding: 10px 15px;
    background-color: #eee;
    text-decoration: none;
    border-radius: 3px;
    color: #333;
}

.pagination a:hover {
    background-color: rgb(35, 164, 85);
    color: white;
}


@media screen and (max-width: 820px) {
	.blog-section {
		grid-template-columns: 1fr;
	}
}