/* Recent Posts Section Styles */
.recent-posts-section {
    margin-top: 60px;
    margin-bottom: 40px;
    clear: both;
    padding: 1px 20px;
}

.recent-posts-section h2 {
    text-align: center;
    margin: 40px 0;
    font-size: 28px;
    color: #222;
}

.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.recent-post-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.recent-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.recent-post-image {
    overflow: hidden;
    height: 200px;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    padding: 20px;
}

.recent-post-content h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #222;
}

.recent-post-content h3 a {
    color: #aa1d22;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h3 a:hover {
    color: #7a1418;
    text-decoration: underline;
}

.recent-post-excerpt {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.recent-post-link {
    display: inline-block;
    color: #fff;
    background-color: #aa1d22;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.recent-post-link:hover {
    background-color: #7a1418;
    color: #fff;
}
