.blog-wrapper a {
    text-decoration: none;
}

.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #FAFAFA;
	border-radius: 8px;
    overflow: hidden;
}

.blog-card .blog-image {
    width: 100%;
    height: 325px;
    /* box-shadow: 0px 4px 30.4px 0px #2c2d5e26; */
    /* border-radius: 4px; */
    object-fit: contain;
    /* overflow: hidden; */
}

.blog-card.blog-card-sidebar .blog-image {
    width: 100%;
    height: 150px;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
}

.blog-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0px 12px 16px;
}

.blog-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-info h2 {
    /* font-size: 24px; */
    font-size: 18px;
    font-weight: 600;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.blog-pill {
    background: #4B93EC33;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #000000;
    text-wrap: nowrap;


}

.circle-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 4px 2.5px #D1D1D140;

}

.chevron-circle-icon {
    stroke: #018F83;
    font-size: 14px;
}

.blog-desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #5C5C5C;
    font-size: 16px;
    font-weight: 400;

}

.blog-date {
    gap: 12px;
}

.blog-date svg {
    stroke: #e66d70;
    width: 16px;
    height: 16px;
}

.blog-date p {
    font-size: 14px;
    font-weight: 400;
    color: #e66d70;
}


@media screen and (max-width:575px) {
	.blue-header h2 {
		text-align: center;
	}

    .blog-card .blog-image {
        width: 100%;
        height: 100%;
        aspect-ratio: 3/2;
        /* box-shadow: 0px 4px 30.4px 0px #2c2d5e26; */
        /* border-radius: 4px; */
        object-fit: contain;
        /* overflow: hidden; */
    }
}
