.lst-review-items{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    position: relative;
}
.lst-review-items .review-item{
    padding-bottom: 20px;
}
.review-sub-title{
   font-size: 24px;
    line-height: 1.5; 
    font-family: "Noto Sans", "Noto Sans Fallback";
    font-weight: 400;
    padding-bottom: 50px;
}
.lst-review-items .review-item:last-child{
    padding-bottom: 0;
}
.lst-review-items .review-content-inner{
    display: flex;
    align-items: center;
    gap: 25px;
}
.lst-review-items  .review-thumbnail img{
    width: 65px;
    height: auto;
}
.lst-review-items .review-info{
    width: 100%;
    margin-bottom: 1em;
    padding-bottom: 1.2em;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.lst-review-items .customer-rating{
    padding: 5px 0;
}
.lst-review-items .comment{
    padding: 5px 0;
    font-family: "Noto Sans", "Noto Sans Fallback";
    font-weight: 400;
    font-size:16px;
    color:#444;
    line-height: 22px;
}
.lst-review-items .time{
    padding: 5px 0;
    font-family: "Noto Sans", "Noto Sans Fallback";
    font-weight: 400;
    font-size:16px;
    color:rgba(171, 150, 79, 1);
    line-height: 22px;
}

/* =========================
   Reviews Grid Responsive
   ========================= */

   /* Tablet - 1280px */
@media (max-width: 1280px) {
    .lst-review-items{
        padding:60px 50px;
    }
}

/* Tablet - 992px */
@media (max-width: 992px) {
    .lst-review-items .review-content-inner {
        flex-direction: row; /* keep horizontal */
        gap: 20px;
    }

    .lst-review-items .review-thumbnail img {
        width: 50px;
        height: auto;
    }

    .lst-review-items .review-info {
        padding-bottom: 1em;
    }

}

/* Small Tablet / Large Mobile - 768px */
@media (max-width: 768px) {
    .lst-review-items .review-content-inner {
        flex-direction: column; /* stack vertically */
        align-items: flex-start;
        gap: 15px;
    }

    .lst-review-items .review-thumbnail img {
        width: 55px;
        margin-bottom: 10px;
    }

    .lst-review-items .review-info {
        padding-bottom: 0.8em;
        text-align: left;
    }

}

/* Mobile - 480px */
@media (max-width: 480px) {
    .lst-review-items .review-content-inner {
        flex-direction: column;
        gap: 10px;
    }

    .lst-review-items .review-thumbnail img {
        width: 45px;
        margin-bottom: 8px;
    }

    .lst-review-items .review-info {
        font-size: 14px;
        padding-bottom: 0.6em;
    }

    .lst-review-items .comment {
        font-size: 14px;
        line-height: 20px;
    }

    .lst-review-items .time {
        font-size: 14px;
        line-height: 20px;
    }

}


/* blog css */

.blog-archive {
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    transition: 0.3s ease;
}

.blog-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.blog-thumb img {
    width: 100%;
    height: 250px;
}

.blog-title {
    font-size: 20px;
    margin: 15px 0;
}

.blog-title a{
    color: #333;
    text-decoration: none;
}

.blog-title a:hover{
    color: #AB964F;
}

.blog-archive .read-more {
    background: #BB8D6A;
    color: #fff;
    padding: 15px 98px;
    display: inline-block;
    text-decoration: none;
    line-height: 22px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .2s ease, border-color .2s ease;
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
}
.blog-archive .read-more:hover {
    background: #000;
}
.blog-meta{
  font-size: 14px;
  color: #777;
  padding-bottom: 10px;
}
.blog-meta span{
    font-weight: 600;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}