
section {
    padding: clamp(45px, 7vw, 90px) 0
}

.main-title {
    font-size: clamp(32px, 4vw, 42px);
    color: #041b34;
    text-transform: capitalize;
}
.text-truncate-multiple {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* style */

/* hero section */

.hero-sec {
    background: url('./../assets/contact-bg.webp') center/cover no-repeat;
    position: relative;
    padding: clamp(120px, 16vw, 180px) 0 45px 0;
    z-index: 1
}

.hero-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #041b34;
    opacity: .9;
    z-index: -1
}

.hero-sec .hero-title {
    color: #C4A437;
    text-align: center;
    font-size: clamp(32px, 4vw, 42px) !important
}

/* hero section */

/* blog section  */

.blog-sec .blog-main{
    padding-right: 50px;
    border-right: 1px solid #d7d7d7;
}

.blog-sec .blog-card{
    display: flex;
    gap: 20px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #d7d7d7;
}
.blog-sec .blog-card img {
    width: 300px;
    height: 200px;
}

.blog-sec .blog-card:last-child{
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blog-card .top-bar {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
    list-style: none;
}

.top-bar li a{
    text-decoration: none;
    color: #595959;
    font-size: 14px;
}

.blog-card .blog-title{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 16px;
}

.blog-card .blog-para{
    font-size: 14px;
}

.blog-card .blog-btn{
    text-decoration: none;
}

.category .title{
    font-size: 22px;
    margin-bottom: 24px;
}

.category .category-list{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category .category-list li a{
    text-decoration: none;
    color: #1B1B1B;
}

.blog-sec .showmore-btn{
    text-decoration: none;
    color: #1B1B1B;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 17px;
    font-weight: 500;
}

.recent-post .title{
    font-size: 22px;
}

.recent-card{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.recent-card:last-child{
    margin-bottom: 0;
}



.widget {
    margin-bottom: 30px
}
.widget .wp-block-heading {
    font-size: 20px;
    margin-bottom: 15px
}
.widget ul {
    list-style: none;
    padding: 0
}
.widget ul li a {
    text-decoration: none;
    line-height: 30px;
    color: #000 !important;
    font-size: 14px;
}

.widget ul li a:hover,
.widget ul li a:focus {
    color: #0d6efd !important;
}
.widget .wp-block-search__input {
    background-color: #fff !important;
    border: 1px solid rgba(0,0,0,0.2) !important;
    border-width: 1px !important;
    outline: none;
}
.widget .wp-block-search__button {
    color: #fff;
    background-color: #0d6efd;
    padding-left: 15px;
    padding-right: 15px;
    border: none;
}
/* blog section  */

@media (max-width:992px) {
    .blog-sec .blog-main{
        padding-right: 0;
        border-right: none;
    }
}

@media (max-width:768px) {
    .blog-sec .blog-card{
        flex-direction: column;
        align-items: center;
    }

    .blog-card .content-wrapper{
        text-align: center;
    }

    .content-wrapper .top-bar{
        justify-content: center;
    }

    .category .title{
        text-align: center;
    }

    .category .category-list{
        align-items: center;
    }

    .blog-single .blog-card{
        align-items: start;
    }

    .blog-single .blog-card .content-wrapper{
        text-align: start;
    }

    .blog-single .blog-card .content-wrapper .top-bar{
        justify-content: start;
    }

    .blog-single .category .title{
        text-align: start;
    }

    .blog-single .category .category-list{
        align-items: start;
    }
}