.blogs .text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:24px;margin:40px 0;text-align:center}
.blogs .cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
@media(max-width:991px){.blogs .cards{grid-template-columns:repeat(2,1fr)}
}@media(max-width:576px){.blogs .cards{grid-template-columns:repeat(1,1fr)}
}.blogs .cards .card{background-color:var(--color_pure-white);width:100%;min-height:400px;height:auto;border-radius:18px}
.blogs .cards .card .post-image img{border-radius:18px 18px 0 0;height:200px;-o-object-fit:cover;object-fit:cover}
.blogs .cards .card .bottom-card{padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;min-height:200px}
.blogs .cards .card .bottom-card .product-name-card{font-size:20px;font-weight:600;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:4.5em;text-align:start;display:-webkit-box}
.blogs .cards .card .bottom-card .post-excerpt{font-size:16px;font-weight:400;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:4.5em;text-align:start;display:-webkit-box}
.blogs .cards .card .bottom-card .post-date{font-size:16px;font-weight:400;color:var(--color_dark-gray)}