.fetch-blog-posts-card-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: start !important;
    gap: 30px;
}


.fetch-blog-posts-card {
    box-sizing: border-box;
    width: calc(33.3333% - 20px);
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fetch-blog-posts-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.fetch-blog-posts-card-title {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}

.fetch-blog-posts-card-description {
    margin-top: 10px;
	margin-bottom: 20px;
    font-size: 14px;
}

.fetch-blog-posts-card-read-more {
    margin-top: auto;
    background-color: #b0cb1f;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
	width: 150px;
}

.fetch-blog-posts-card-read-more:hover {
    background-color: #91a51c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}


/* Media query for mobile devices */
@media screen and (max-width: 767px) {
    .fetch-blog-posts-card {
        width: 100%;
        margin-bottom: 20px;
    }
    .fetch-blog-posts-card-container {
        justify-content: start !important;
        gap: 0;
    }
}
