.blogLstSec {
    .blogListingWrap {
        .eachBlogCard {
            &:not(:last-child) {
                margin-bottom: 30px;
            }

            .ListCardContPara {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
                margin-top: 8px;
            }
        }

        .pagination {
            justify-content: end;
        }
    }

    .blogSideBar {
        background-color: #fff;
        position: sticky;
        top: 100px;

        .srchWrap {
            margin-bottom: 50px;

            .frmWrap {
                position: relative;
                display: block;

                .inputTxt {
                    width: 100%;
                    min-height: 70px;
                    border-radius: 50px;
                    border: 1px solid #C79F64;
                    background-color: #fff;
                    padding: 0px 65px 0px 25px;
                    text-align: left;
                    outline: 0;
                    color: #BCBCBC;
                    font-size: 18px;
                    font-weight: 400;
                }

                .srchBtn {
                    position: absolute;
                    width: 80px !important;
                    height: 70px;
                    border: none !important;
                    border-radius: 50% !important;
                    background-color: transparent !important;
                    background: url(../images/common/blog-page-search.png) no-repeat center center;
                    right: 0;
                    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7466%) hue-rotate(309deg) brightness(104%) contrast(109%);
                }
            }
        }

        .blgSdeTitle {
            font-size: 20px;
            font-weight: 600;
        }

        .blockCList {
            background: #fff;
            border: 1px solid #00000025;
            border-radius: 15px;
            padding: 20px;

            .blgSdeTitle {
                margin-bottom: 20px;
            }

            .catList {
                background-color: #CBD6F2;
                border-radius: 15px;

                li {
                    display: flex;
                    justify-content: space-between;
                    padding: 24px;
                    font-size: 18px;

                    &:not(:last-child) {
                        border-bottom: 1px solid #00000025;
                    }

                    a {
                        width: calc(100% - 50px);
                        padding-right: 10px;
                        color: #000000;
                    }

                    span {
                        width: 50px;
                        text-align: end;
                    }
                }
            }
        }

        .blockListBg {
            margin-top: 50px;

            .blgSdeTitle {
                padding-bottom: 20px;
            }

            .tagList {
                border-top: 1px solid #00000025;
                padding-top: 15px;
                display: flex;
                flex-wrap: wrap;

                li {
                    margin: 0 6px 10px;
                    border-radius: 50px;
                    border: 1px solid #00000025;
                    font-size: 18px;
                    transition: all 0.5s;

                    a {
                        display: block;
                        width: 100%;
                        height: 100%;
                        color: #000000;
                        padding: 6px 20px;
                        transition: all 0.5s;
                    }

                    &:hover {
                        background-color: rgb(193, 154, 99);

                        a {
                            color: #fff;
                        }
                    }
                }
            }
        }
    }
}

.noResultWrap {

    h3 {
        font-size: 30px;
        color: rgb(136, 64, 27);
        font-weight: 700;
        margin-bottom: 10px;
    }

    .commonDetBtn {
        margin-left: 0;
        width: 210px;
        height: 55px;

        a {
            font-size: 18px;
        }
    }
}

.blog,
.category,
.tag {
    .blogLstSec {
        .blogListingWrap {
            .eachBlogCard {
                .blogCard {
                    .ListCardContBtn {
                        width: 250px;
                        transition: all 0.5s;

                        a {
                            border: 1px solid transparent;
                            transition: all 0.5s;
                        }

                        &:hover {

                            a {
                                border-color: #88401B;
                                background-color: #fff;
                                color: #000;

                                &::after {
                                    background-color: #FFB92B;
                                    transform: translateY(-50%) rotate(52deg);
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .pagination {
        ul {
            &.page-numbers {
                width: 100% !important;
                height: auto !important;
                border: none !important;
                justify-content: flex-end;
                gap: 10px;
                background-color: transparent !important;
            }
        }
    }
}

/* start blog details */
ul.spGdContDt {
    display: flex;
    margin-bottom: 15px;

    li {
        &:not(:last-child) {
            position: relative;
            padding-right: 30px;

            &::after {
                content: "";
                position: absolute;
                top: 50%;
                right: 15px;
                transform: translateY(-50%);
                width: 1px;
                height: 70%;
                background-color: #000;

            }
        }

        .pstTile {
            font-size: 16px;
        }
    }
}

.spiceGuideDtlCard {
    border: 1px solid #00000025;
    border-radius: 15px;
    height: 100%;

    .spGdDtlCont {
        padding: 20px;
    }

    .spGdDtlImg {
        width: 100%;
        height: 400px;
        border-radius: 15px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }
    }

    .eachspGdDtl {
        &:not(:last-child) {
            margin-bottom: 30px;
        }

        .spGdDtlTitle {
            font-size: 25px;
            font-weight: 600;
            color: #000;
            margin-bottom: 15px;
        }
    }
}

.blogFormWrap {
    margin-top: 40px;
}

.getInTouchSec {
    &::before {
        display: none;
    }
}

/* .blockListTg {
    display: none;
} */

/* responsive */
@media (max-width: 1600px) {
    .blogLstSec {
        .blogSideBar {
            .blockCList {
                .catList {
                    li {
                        padding: 18px 20px;
                        font-size: 16px;
                    }
                }

                .blgSdeTitle {
                    font-size: 16px;
                    margin-bottom: 15px;
                }
            }

            .srchWrap {
                margin-bottom: 40px;

                .frmWrap {
                    .srchBtn {
                        width: 60px !important;
                        height: 46px;
                        background-size: 22px;
                    }

                    .inputTxt {
                        min-height: 46px;
                        font-size: 16px;
                        padding: 0px 48px 0px 16px;
                    }
                }
            }
        }
    }

    .blog,
    .category,
    .tag {
        .blogLstSec {
            .blogListingWrap {
                .eachBlogCard {
                    .blogCard {
                        .ListCardContBtn {
                            min-width: auto;
                            width: 200px;
                        }
                    }
                }
            }
        }
    }

    .spiceGuideDtlCard {
        .eachspGdDtl {
            .spGdDtlTitle {
                font-size: 22px;
                margin-bottom: 10px;
            }
        }
    }
}

@media (max-width: 1366px) {
    .blogLstSec {
        .blogSideBar {
            .blockCList {
                .catList {
                    li {
                        padding: 16px 18px;
                        font-size: 14px;
                    }
                }
            }

            .srchWrap {
                margin-bottom: 30px;

                .frmWrap {
                    .inputTxt {
                        height: 42px;
                        font-size: 14px;
                    }

                    .srchBtn {
                        height: 42px;
                        background-size: 20px;
                    }
                }
            }
        }
    }

    .blog,
    .category,
    .tag {
        .blogLstSec {
            .commonListCard {
                .ListCardImg {
                    height: 340px;
                }
            }

            .blogListingWrap {
                .eachBlogCard {
                    .blogCard {
                        .ListCardContBtn {
                            width: 160px;
                        }
                    }
                }
            }
        }
    }

    .spiceGuideDtlCard {
        .spGdDtlImg {
            height: 350px;
        }

        .eachspGdDtl {
            .spGdDtlTitle {
                font-size: 18px;
                margin-bottom: 10px;
            }
        }
    }
}

@media (max-width: 991px) {
    .blogLstSec {
        .blogSideBar {
            .blockCList {
                padding: 20px 15px;
            }

            .srchWrap {
                margin-bottom: 20px;
            }
        }
    }

    .blog,
    .category,
    .tag {
        .pagination {
            ul {
                &.page-numbers {
                    justify-content: center;
                }
            }
        }
    }

    ul.spGdContDt {
        li {
            .pstTile {
                font-size: 14px;
            }
        }
    }

    .blog,
    .category,
    .tag {
        .blogLstSec {
            .blogListingWrap {
                .eachBlogCard {
                    .blogCard {
                        .ListCardContBtn {
                            width: 158px;

                            a {
                                padding: 8px 20px;
                            }
                        }
                    }
                }
            }
        }
    }

    .noResultWrap {
        text-align: center;
        padding-top: 20px;

        h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        p {
            margin-bottom: 10px;
        }

        .commonDetBtn {
            margin: 0px auto;
            width: 200px;
            height: 50px;

            a {
                font-size: 16px;
            }
        }
    }
}

@media (max-width: 575px) {

    .blog,
    .category,
    .tag {
        .blogLstSec {
            .commonListCard {
                .ListCardImg {
                    height: 300px;
                }
            }
        }
    }

    .spiceGuideDtlCard {
        .eachspGdDtl {
            .spGdDtlTitle {
                font-size: 16px;
            }
        }

        .spGdDtlCont {
            padding: 20px 15px;
        }
    }
}

/*======= min width ========*/

@media (min-width: 1921px) {
    .blogLstSec {
        .blogSideBar {
            .blgSdeTitle {
                font-size: clamp(18px, 0.9vw, 22px);
            }

            .srchWrap {
                .frmWrap {
                    .inputTxt {
                        font-size: clamp(18px, 0.9vw, 20px);
                    }
                }
            }
        }
    }
}