*{
    box-sizing: border-box;
}
section{
    margin-top: 130px;
}
.content-wrap{
    margin-bottom: 0px;
}
/* Page Title start */
#blog-main-print .row-section-title{
    display: flex;
    align-items: center;
    justify-content: space-between; 
}
.row-section-title{
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    margin-bottom: 20px;
    position: relative;
}
.row-section-title .col-see-all{
    width: 10%;
}
.col-section-title h2{
    font-size: 46px;
    font-weight: 600;
    line-height: 1.2;
    color: #281752;
}
/* Page Title end */

/* News start */
.container {
    display: flex;
    gap: 20px;
}
.left-column,
.right-column {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}
.left-column {
    flex: 2;
}
.left-column .news-item .content{
    padding: 25px;
}
.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: transparent;
    box-shadow: none;
    overflow: unset;
    border: none;
}
.right-column .news-item{
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) */
}
.news-item {
    overflow: hidden;
    border-radius: 10px;
}
.news-item .image {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
}
.right-column .news-item .image {
    height: 200px;
}
.news-item .content {
    padding: 20px;
}
.category-text{
    display: flex;
    margin: 0;
}
.category-text li{
    position: relative;
    margin-right: 15px;
}
.category-text li:last-child{
    margin-right: 0px;
}
span.category-text,
.category-text a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--Core-Violet);
    transition: color 0.3s ease;
}
.category-text a:hover{
    color: var(--Core-Dark-Violet);
    transition: color 0.3s ease;
}
.news-item h2,
.news-item h3{
    font-weight: 600;
    color: #000;
    margin-top: 5px;
}
.news-item h2{
    font-size: 45px;
    line-height: 1.2;

}
.news-item h3 {
    font-size: 24px;
    line-height: 1.3;
}
.news-item p {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #000;
    margin: 5px 0;
}
.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.author-info a{
    display: flex;
    align-items: center;
}
.author-info img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
}
.author-info span{
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: #7b7b7b;
}
.row-cta{
    display: block;
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}
/* News end */

/* Newsletter start */
#section-newsletter .row-section-title{
    display: flex;
    background-color: var(--Core-Soft-Lavender);
    padding: 150px 100px;
    border-radius: 10px;
    justify-content: space-around;
    align-items: start;
}
#section-newsletter .col-section-title h2 img{
    width: 50px;
}
#section-newsletter .col-form{
    width: 20%;
}
#section-newsletter form input{
    border: 1px solid #DFDFDF;
    border-radius: 12px;
    padding: 12px 20px;
    width: 100%;
}
#section-newsletter form input{
    color: #281752;
    font-weight: 400;
}
#section-newsletter form input::placeholder{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #56565680;
}
#section-newsletter form input:focus{
    outline: none;
    border: 1px solid var(--Core-Violet);
}
#section-newsletter form button{
    margin: 10px 0 15px 0;
    width: 100%;
}
#section-newsletter .col-form p,
#section-newsletter .col-form p a{
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: #7b7b7b;
}
#section-newsletter .col-form p a{
    font-weight: 600;
    text-decoration: underline;
}
/* Newsletter end */

/* Topics start */
#section-browse-by-topic{
    position: relative;
    /* padding-right: 0px; */
}
.topics{
    display: flex;
    gap: 20px;
}
.topics .owl-nav{
    position: absolute;
    right: 20px;
    top: -70px;
    margin-top: 0px;
}
.topics .owl-nav button.owl-prev,
.topics .owl-nav button.owl-next{
    width: 47px;
    height: 47px;
    border-radius: 50% !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.topics .owl-nav button.owl-prev span,
.topics .owl-nav button.owl-next span{
    font-size: 30px;
    font-weight: 300;
}
.topics .owl-nav button.owl-prev{
    border: 1px solid var(--Core-Violet);
}
.topics .owl-nav button.owl-prev span{
    color: var(--Core-Violet);;
}
.topics .owl-nav button.owl-next{
    background-color: var(--Core-Dark-Violet);
}
.topics .owl-nav button.owl-next span{
    color: #fff;
}
.topics .owl-nav button.owl-prev:hover{
    background-color: var(--Core-Violet);
    transition: all 0.3s ease;
}
.topics .owl-nav button.owl-prev:hover span{
    color: #fff;
    transition: all 0.3s ease;
}
.topics .owl-nav button.owl-next:hover{
    background-color: var(--Core-Violet);
    transition: all 0.3s ease;
}
.topics .item{
    border: 1px solid #EBEBEB;
    border-radius: 25px;
}
/* .topics .owl-item:last-child .item{
    border: none;
} */
.topics .item .item-text{
    /* padding: 30px; */
    /* height: 120px; */
}
.topics .item img{
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
@media (max-width: 1750px) {
    .topics .item .item-text{
        height: 180px;
    }
}
.topics .item h3{
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #1D0040;
    margin: 20px 0 10px 0;
}
.topics .item p{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    color: #7E7498;
}
/* Topics end */
.topics .item .item-text,
.card .item-text{
    padding: 30px;
}
/* Cards start */
.cards-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.card{
    border: 1px solid #EBEBEB;
    border-radius: 25px;
}
.card img{
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.tools-cards .card img{
    border-radius: 25px;
}
.tools-cards .card{
    position: relative;
}
.tools-cards .card p{
    position: absolute;
    top: 20px;
    left: 20px;
    right: 0;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    pointer-events: none;
}
.tools-cards .card:nth-child(2) p,
.tools-cards .card:nth-child(3) p{
    color: #000;
}
.cards-container.tools-cards .card{
    border: none !important;
}
.card .item-text{
    /* padding: 30px; */
    /* height: 120px; */
}
.card span.category-text{
    padding-left: 25px;
}
.card span.category-text,
.card .category-text a{
    color: var(--Core-Dark-Violet);
    transition: color 0.3s ease;
    position: relative;
}
.card .category-text a:hover{
    color: var(--Core-Violet);
    transition: color 0.3s ease;
}
.card .category-text li{
    padding-left: 25px;
    margin-right: 15px;
}
.card span.category-text::before,
.card .category-text li::before{
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url(../../img/icons/frame-calendar.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
.card span.category-text::before{
    top: -2px !important;
}
.card a:hover h3,
.card:hover h3{
    color: var(--Core-Violet);
    transition: color 0.3s ease;
}
.card h3{
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    color: #1D0040;
    margin: 10px 0 10px 0;
    transition: color 0.3s ease;
}
.card p{
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    color: #7E7498;
}
.card .author-info{
    margin-top: 15px;
}
/* Cards end */


/* post-list-page-v2 start */
#post-list-page-v2 .card h3 {
    /* height: 70px; */
}
#section-pagination-blog,
#post-list-page-v2 #section-automate{
    margin-top: 100px;
}
#post-list-page-v2{
    
}
.pagination-blog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0px;
}
.pagination-blog-list li {
    margin-right: 10px;
}
.pagination-blog-list li:last-child {
    margin-right: 0px;
}
.pagination-blog-list li a {
    font-weight: 500;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1s;
}
.pagination-blog-list li.active a, 
.pagination-blog-list .pagination__item--current a {
    color: var(--Core-Violet);
}

.mob-see-all-col{
    display: none;
}

.tag-list-option{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0; 
    margin-top: 20px;   
}
.tag-list-option .tag-list-option-li{
    background-color: var(--Core-Soft-Lavender);
    border-radius: 10px;
    position: relative;
    padding: 10px;
    transition: background-color 0.3s ease;
}
.tag-list-option .tag-list-option-li:hover{
    background-color: var(--Core-Dark-Violet);
    transition: background-color 0.3s ease;
}
.tag-list-option .tag-list-option-li:hover a{
    color: #fff;
    transition: color 0.3s ease;
}
.tag-list-option .tag-list-option-li a{
    padding: 10px 10px 10px 20px; 
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--Core-Dark-Violet);
    z-index: 1;
    position: relative;
    transition: color 0.3s ease;
}
.tag-list-option .tag-list-option-li:hover::before{
    filter: invert(0);
    transition: filter 0.3s ease;
}
.tag-list-option .tag-list-option-li::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    background: url(../../img/icons/close-v2.png);
    filter: invert(1);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    transition: filter 0.3s ease;
}
.tag-list-option-li-text p{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    color: #7E7498;
}
#post-list-page-v2 #section-cards {
    margin-top: 50px;
}
.help-desk-card-icon-wrap {
    height: 300px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
@media (max-width: 1250px) {
    #post-list-page-v2 .cards-container {
        grid-template-columns: repeat(2, 1fr); 
    } 
}
@media (max-width: 1000px) {
    #post-list-page-v2 #section-cards {
        margin-top: 50px;
    }
    #post-list-page-v2 .cards-container {
        grid-template-columns: 1fr; 
    } 
    .logo-wrap img {
        margin-left: 10px;
    }
}
/*  */
/* post-list-page-v2 end */

@media (max-width: 1650px) {
    .col-section-title h2{
        font-size: 42px;
    }
    /* News start */
    .news-item h2 {
        font-size: 40px;
    }
    .news-item h3 {
        font-size: 21px;
    }
    /* News end */

    /* Newsletter start */  
    #section-newsletter .col-form{
        width: 30%;
    }
    /* Newsletter end */
    /* Topics start */
    .topics .item h3 {
        font-size: 22px;
    }
    /* Topics end */

    /* Cards start */
    .card h3 {
        font-size: 24px;
    }
    /* Cards end */
}

@media (max-width: 1450px) {
    .col-section-title h2{
        font-size: 40px;
    }
    /* News start */
    .news-item h2 {
        font-size: 38px;
    }
    .news-item h3 {
        font-size: 19px;
    }
    /* News end */

    /* Newsletter start */  
    #section-newsletter .col-form{
        width: 30%;
    }
    /* Newsletter end */
    /* Topics start */
    .topics .item h3 {
        font-size: 20px;
    }
    /* Topics end */

    /* Cards start */
    .card h3 {
        font-size: 22px;
    }
    /* Cards end */
}

@media (max-width: 1200px) {
    .row-section-title .col-see-all {
        width: 15%;
    }
}

@media (max-width: 1000px) {
    section{
        position: relative;
    }
    #section-newsletter .col-section-title h2 img{
        width: 40px;
    }
    .row-section-title .col-see-all {
        width: 70%;
        display: none;
    }
    .col-see-all{
        /* position: absolute;
        bottom: -70px;
        left: 50%;
        transform: translateX(-50%); */
        position: relative;
        bottom: unset;
        left: unset;
        transform: unset;
    }
    .mob-see-all-col{
        display: block;
        margin-top: 40px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .mob-see-all-col a{
        padding: 10px 50px;
    }
    .col-section-title h2 {
        font-size: 32px;
    }

    /* News start */
    #section-editors-picks{
        margin-top: 50px;
    }
    .news-item .image {
        height: 270px;
        background-position: left;
    }
    .news-item .content,
    .left-column .news-item .content{
        padding: 15px;
    }
    .container {
        flex-wrap: wrap;
    }
    .left-column {
        flex: auto;
        width: 100%;
    }
    .news-item h2 {
        font-size: 30px;
    }
    /* News end */

    /* Newsletter start */
    #section-newsletter .row-section-title {
        padding: 45px 35px;
        flex-wrap: wrap;
        justify-content: center;    
        text-align: center;
    }
    #section-newsletter .col-section-title{
        margin-bottom: 50px;
    }
    #section-newsletter .col-section-title,
    #section-newsletter .col-form{
        width: 100%;
    }
    .col-section-title h2 br{
        display: none;
    }

    /* Topics start */  
    #section-browse-by-topic{
        padding-right: 20px;
    }
    .topics .owl-nav {
        position: relative;
        top: 20px;
        right: 0px;
    }
    .topics .item .item-text, 
    .card .item-text {
        padding: 20px;
        height: auto;
    }
    /* Topics end */

    /* Cards start */
    #section-cards{
        margin-top: 150px;
    }
    .cards-container {
        grid-template-columns: 1fr;
    }
    .card h3 br{
        display: none;
    }
    /* Cards end */
    .tag-list-option{
        flex-wrap: wrap;
        gap: 10px;
    }
    .tag-list-option li:first-child{
        width: 100%;
    }
}

@media (max-width: 376px) {
    .pagination-blog-list li a {
        width: 25px;
    }
    .col-section-title h2 {
        font-size: 30px;
    }
    .tag-list-option .tag-list-option-li a {
        padding: 5px 10px 5px 20px;
    }
    .tag-list-option .tag-list-option-li {
        padding: 5px;
    }
    .tag-list-option .tag-list-option-li::before{
        width: 10px;
        height: 10px;
    }
}