/* =========================
Popular Post
========================= */
.popular-posts-section{
    padding:60px 0;
}
.popular-posts-section .section-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    margin-bottom:35px;
}
.popular-posts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.post-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
    transition:.3s ease;
}
.post-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 24px rgba(0,0,0,.12);
}
.post-card a{
    display:block;
    color:#333;
    text-decoration:none;
}
.post-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    display:block;
}
.post-card h3{
    font-size:18px;
    line-height:1.6;
    padding:18px;
    margin:0;
}
@media (max-width:991px){
    .popular-posts-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media (max-width:767px){
    .popular-posts-grid{
        grid-template-columns:1fr;
    }
    .popular-posts-section{
        padding:40px 0;
    }
    .popular-posts-section .section-title{
        font-size:26px;
    }
}

/* =========================
Product Info
========================= */
.product-info-bar{
    padding:50px 0;
    border-top:1px solid #eaeaea;
    margin-top:40px;
}

.product-info-bar .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.info-item{
    text-align:center;
    padding:10px 15px;
}

.info-title{
    font-size:15px;
    font-weight:700;
    color:#666;
    margin-bottom:12px;
    position:relative;
}

.info-title:after{
    content:"";
    display:block;
    width:32px;
    height:2px;
    background:#4f46e5;
    margin:10px auto 0;
}

.info-content{
    font-size:15px;
    line-height:1.8;
    color:#222;
}

@media(max-width:991px){
    .product-info-bar .container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .product-info-bar .container{
        grid-template-columns:1fr;
        gap:20px;
    }

    .product-info-bar{
        padding:35px 0;
    }
}