/**
 * Single Post Styles
 * Kabyapot Premium Ultimate v6.0
 */

/* ==========================
   Single Layout
========================== */

.kp-content-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    margin:30px 0;
}

.kp-main-content{
    min-width:0;
}

.kp-single-post{
    background:#fff;
}

.kp-entry-title{
    font-size:42px;
    line-height:1.3;
    margin-bottom:15px;
    font-weight:700;
}

.kp-entry-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    color:#777;
    font-size:14px;
    margin-bottom:20px;
}

.kp-featured-image img{
    width:100%;
    height:auto;
    border-radius:8px;
}

.kp-entry-content{
    font-size:18px;
    line-height:1.9;
    margin-top:25px;
}

.kp-entry-content p{
    margin-bottom:20px;
}
/* ==========================================
   Author Box
========================================== */

.kp-author-box{
    display:flex;
    gap:20px;
    margin:50px 0;
    padding:25px;
    background:#fafafa;
    border:1px solid #e5e5e5;
    border-radius:10px;
}

.kp-author-avatar img{
    width:100px;
    height:100px;
    border-radius:50%;
}

.kp-author-info{
    flex:1;
}

.kp-author-name{
    margin:0 0 10px;
    font-size:24px;
}

.kp-author-bio{
    margin:0 0 15px;
    line-height:1.8;
    color:#555;
}

.kp-author-link{
    color:#b30000;
    font-weight:600;
    text-decoration:none;
}

/* ==========================================
   Post Tags
========================================== */

.kp-post-tags{
    margin:35px 0;
    padding-top:20px;
    border-top:1px solid #eee;
}

.kp-post-tags a{
    display:inline-block;
    margin:5px;
    padding:6px 12px;
    background:#f4f4f4;
    border-radius:30px;
    text-decoration:none;
    color:#333;
    transition:.3s;
}

.kp-post-tags a:hover{
    background:#b30000;
    color:#fff;
}

/* ==========================================
   Previous / Next
========================================== */

.kp-post-navigation{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin:40px 0;
}

.kp-post-navigation a{
    display:block;
    padding:15px;
    border:1px solid #e5e5e5;
    border-radius:8px;
    text-decoration:none;
    color:#222;
}

.kp-post-navigation a:hover{
    border-color:#b30000;
    color:#b30000;
}
/* ==========================================
   Related Posts
========================================== */

.kp-related-posts{
    margin:50px 0;
}

.kp-section-title{
    font-size:28px;
    margin-bottom:25px;
    border-left:4px solid #b30000;
    padding-left:12px;
}

.kp-related-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.kp-related-item{
    background:#fff;
    border:1px solid #ececec;
    border-radius:8px;
    overflow:hidden;
    transition:.3s;
}

.kp-related-item:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.kp-related-thumb img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.kp-related-item h3{
    padding:15px;
    margin:0;
    font-size:18px;
    line-height:1.5;
}

.kp-related-date{
    display:block;
    padding:0 15px 15px;
    color:#777;
    font-size:13px;
}

/* ==========================================
   Comments
========================================== */

.comments-area{
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid #ececec;
}

.comment-list{
    list-style:none;
    margin:0;
    padding:0;
}

.comment{
    margin-bottom:25px;
    padding-bottom:20px;
    border-bottom:1px solid #eee;
}

/* ==========================================
   Responsive
========================================== */

@media(max-width:991px){

    .kp-content-wrapper{
        grid-template-columns:1fr;
    }

    .kp-post-navigation{
        flex-direction:column;
    }

}

@media(max-width:768px){

    .kp-entry-title{
        font-size:30px;
    }

    .kp-author-box{
        flex-direction:column;
        text-align:center;
    }

    .kp-related-grid{
        grid-template-columns:1fr;
    }

}
/* In Article Advertisement */

.kp-in-article-ad{
	margin:40px 0;
	padding:20px;
	text-align:center;
	background:#fafafa;
	border:1px solid #e5e5e5;
	border-radius:8px;
	overflow:hidden;
}