.blog-section {
    padding: 40px 40px;
    background-color: #ffffff; /* Slightly lighter dark green for the blog section */
    text-align: center;
}

.blog-section h2 {
    font-size: 2.5em;
    color: #272727;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.blog-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background-color: #ffffff;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 30px; /* Space between posts */
    max-width: 1200px; /* Max width for content */
    margin: 0 auto/* Center the grid */
}

.blog-post {
    background-color: #ffffff; /* Darker green for post background */
    border: 1px solid #272727; /* Green border */
    padding: 25px;
    text-align: left;
    box-shadow: 0 0 8px rgba(239, 239, 239, 0.6); /* Subtle glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 1.6; /* Increased line height for better readability */
}

.blog-post:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 5px 15px rgba(152, 152, 152, 0.6); /* More pronounced glow */
}

.blog-post h3 {
    font-size: 1.5em;
    color: #272727; /* Slightly lighter text for titles */
    margin-top: 0;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    line-height: 1.4; /* Adjusted line height for titles */
}

.blog-post h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background-color: #272727;
}

.blog-post .meta {
    font-size: 0.7em;
    color: #272727; /* Brighter green for meta info */
    margin-bottom: 15px;
    display: block; /* Ensures it takes full width */
    line-height: 1.5; /* Adjusted line height for meta info */
}

.blog-post p {
    font-family: Arial, sans-serif; /* Use a more readable font for body text */
    font-size: 1em;
    color: #272727; /* Lighter green for body text */
    margin-bottom: 20px;
    line-height: 1.6; /* Increased line height for paragraphs */
    letter-spacing: 0.3px; /* Added slight letter spacing */
}

.blog-post img {
    width: 50%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.blog-post .read-more {
    display: inline-block;
    background-color: #ededed;
    color: #272727;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 0.8em;
    border: 1px solid #272727;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.blog-post .read-more:hover {
    background-color: #272727;
    color: #ffffff;
    border-color: #272727;
}