.blogs-container {
    display: flex;
    justify-content: center;
    padding: 30px 20px;
    background: #f9f9f9;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    max-width: 500px;
    width: 100%;
}

.blog-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #157347;
    margin: 18px 16px 8px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 4px 16px 12px;
    font-size: 14px;
    color: #555;
    align-items: center;
    line-height: 1.5;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #157347;
}

.blog-card p {
    margin: 0 16px 8px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.read-more {
    margin: 0 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #157347;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .blog-card-link {
        max-width: 90%;
    }

    .blog-card img {
        height: 200px;
    }

    .blog-card h3 {
        font-size: 20px;
    }

    .blog-card p,
    .blog-meta {
        font-size: 14px;
    }

    .read-more {
        font-size: 14px;
    }
}
