.blog-section {
    width: 80%;
    max-width: 1200px;
    text-align: center;
    margin: 40px auto; 
   
}

.blog-section h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.blog-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.blog-post {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 32%;
}

.image {
    position: relative;
}

.image img {
    width: 120%;
    height: 400px;
}

.date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #ff6600;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    line-height: 1.2;
}

.content {
    padding: 20px;
    text-align: left;
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author span {
    font-size: 0.9em;
    color: #555;
}

.category {
    color: #ff6600;
}

.content h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.content p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.content a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}