/*****************************
PREVIEW STYLE
*****************************/
html:has(#webpro-content-preview),
body:has(#webpro-content-preview){
    font-size: 10px;
}
/* card */
#webpro-content-preview .wp-blog-theme-2501.listing-widget .blog--items{
    grid-template-columns: 1fr;
}
#webpro-content-preview .wp-blog-theme-2501.listing-widget .blog--card{
    grid-template-columns: 170px 1fr;
    grid-gap: 15px;
}
#webpro-content-preview .wp-blog-theme-2501.listing-widget .blog--card figure a{
    display:block;
    height: 100%;
}
#webpro-content-preview .wp-blog-theme-2501.listing-widget .blog--card figure img{
    height:100%;
    object-fit:contain;
}
#webpro-content-preview .wp-blog-theme-2501.listing-widget .blog--items::after{
    display: none;
}
#webpro-content-preview .wp-blog-theme-2501.listing-widget .blog--card .discription{
    margin-block: 5px;
}
/* details */
#webpro-content-preview .wp-blog-theme-2501.wp-blog-details .wp_blog-detail-layout{
    grid-template-columns: 1fr;
    padding-block: 30px;
}
#webpro-content-preview .wp-blog-theme-2501.wp-blog-details .wp_blog-detail-content{
    grid-template-columns: 100px 1fr;
    grid-gap: 15px;
}
#webpro-content-preview .blog-author--card .blog-author-image::before{
    width: 30px;
    height: 30px;
}
#webpro-content-preview .blog-author--card .blog-author-image::after{
    width: 30px;
    height: 30px;
}
/*****************************
PREVIEW BUTTON
*****************************/
#webpro-content-preview .wp-blog-theme-2501{
    --btn-bg:var(--black);
    --btn-bg-hover:var(--primary-color);
    --btn-border:var(--black);
    --btn-border-hover:var(--primary-color);
    --btn-text:var(--white);
    --btn-text-hover:var(--white);
}
#webpro-content-preview .wp-blog-theme-2501 .common_button{
    min-width: 220px;
    display: inline-flex;
    justify-content: center;
    background-color: var(--btn-bg) !important;
    border: 1px solid var(--btn-border) !important;
    font-family: var(--btn-font);
    font-size: clamp(1.6rem, calc(3vw - 1.5rem), 2rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: var(--btn-text) !important;
    border-radius: 0;
    transition: all 0.3s;
    padding: clamp(1.5rem, calc(3vw - 0.5rem), 2.3rem) clamp(2rem, calc(3vw - 0.5rem), 3rem);
    text-decoration: none;
}
#webpro-content-preview .wp-blog-theme-2501 .common_button:hover{
    background-color: var(--btn-bg-hover) !important;
    border-color: var(--btn-border-hover) !important;
    color: var(--btn-text-hover) !important;
}
#webpro-content-preview .wp-blog-theme-2501 .common_button.sm {
    min-width: unset;
    padding: 8px 13px;
    font-size: 15px;
    text-transform: uppercase;
}
/**/
#webpro-content-preview .wp-blog-theme-2501 .button-group{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1rem clamp(1.6rem, calc(5vw - 1px), 5.2rem);
}
@media (max-width:1280px) {
    #webpro-content-preview .wp-blog-theme-2501 .common_button{
        min-width: 160px;
    }
}
/*****************************
PREVIEW BANNER
*****************************/
#webpro-content-preview .nt_inner-banner{
    display: grid;
    position: relative;
}
#webpro-content-preview .nt_inner-banner-img{
    grid-area: 1 / 1;
}
#webpro-content-preview .nt_inner-banner-img img{
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
}
#webpro-content-preview .nt_inner-banner-text{
    grid-area: 1 / 1;
    position: relative;
    text-align: center;
    padding-block: 3rem;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
}
#webpro-content-preview .anchor-button {
    margin-top: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    text-decoration: none;
}
#webpro-content-preview .nt_inner-banner-text .anchor-button {
    background-color: var(--banner-arrow-bg, var(--primary-color));
    color: var(--banner-arrow-color, var(--white));
}
#webpro-content-preview .nt_inner-banner-text .anchor-button:hover{
    background-color: var(--banner-arrow-bg-hover, var(--white));
    color: var(--banner-arrow-color-hover, var(--primary-color));
}
@media (max-width:991px){
    #webpro-content-preview .nt_inner-banner-img img{
        min-height: 230px;
    }
}