.choose_blog_topic h6 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    color: #fff;
}
.article_img .tag_name {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 31px;
    background: var(--Mist, #F6F6F7);
    font-size: 16px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.article_title {
    color: var(--Charcoal, #212428);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
.article .article_content{
    margin-top: -4px;
    border-radius: 0 0 10px 10px;
}
.popular_post_content .pop_post_tag{
    margin-bottom: 0;
}
.popular_post {
    border-radius: 10px;
    background: var(--Mist, #F6F6F7);
    padding: 16px 12px;
    color: #212428;
}
.pop_post_tag {
    color: var(--Charcoal-50, #8B8C8E);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.popular_post_img img {
    max-width: 60px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 5px;
}

.blog_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.blog_pagination button {
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.blog_pagination button:disabled {
  border-color: #ddd;
  color: #ddd;
  cursor: not-allowed;
}
.blog_pagination button:hover:not(:disabled) {
  background: #C8E6DC;
  color: #000;
  border: 1px solid #C8E6DC;
}
.page-info {
  font-size: 18px;
}
.qure_blogs .article{
    height: 100%;
}
/* css for single blog post  */
.post p{
    margin-bottom: 0;
}
.this_article strong{
    font-size: 24px;
}
.post_details ul li {
    list-style: disc;
    margin-bottom: 15px;
}
.post_details ul li a {
    color: #212428;
    border-bottom: 2px solid #91BAEC;
}
.post_details ul{
    padding-left: 20px;
    padding-top: 20px;
}
.discover_best_seller {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
}
.discover_best_seller p{
    margin-bottom: 10px;
}
.benefits_of_led ul li{
    list-style: disc;
}
.benefits_of_led ul{
    padding-left: 20px;
}
.blogs li.breadcrumb-item a {
    color: #000;
}
.article_content>div {
    flex-direction: column;
    gap: 3px !important;
}

@media(min-width:768px){
    .article_title {
        min-height: 72px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}


/* css for blog page for live fixes  */
body.blog .article img {
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}
body.blog .article a.btn {
    margin-top: 20px;
}
@media(min-width:768px){
    body.blog .article img {
        max-width: 240px;
        min-height: 178px;
    }
}
/* css for blog page for live fixes  */
