.blog-container {
    margin: 1.5rem auto;
    display: flex;
    flex-wrap: column;
    gap: 20px;
    justify-content: center;
}

.blog-card {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    /* max-width: 800px; */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    border-left: 6px solid green;
}

.blog-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: rgb(30, 92, 143);
}

.blog-excerpt {
    font-size: 1rem;
    /* color: #424242; */
    line-height: 1.6;
}

@media (max-width: 768px) {
    .blog-container {
        flex-direction: column;
        align-items: center;
    }
}