/*
Theme Name: Kabyapot Premium v6.1
Theme URI: https://kabyapot.com
Author: Shyamal Mondal
Author URI: https://kabyapot.com
Description: Premium Bengali Literary & News Magazine Theme with Modern Homepage, Category, Archive, Author System, SEO, AdSense & Core Web Vitals Optimization.
Version: 6.1.0
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: kabyapot-premium
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: news, magazine, blog, two-columns, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, editor-style, accessibility-ready
*/

:root{
    --primary:#b30000;
    --secondary:#222;
    --light:#ffffff;
    --border:#e6e6e6;
    --bg:#f8f8f8;
    --radius:10px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Noto Sans Bengali",sans-serif;
    background:var(--bg);
    color:#222;
    line-height:1.7;
}

img{
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:1280px;
    max-width:95%;
    margin:auto;
}
/* ===============================
   Kabyapot Premium v6
   Category Section
================================= */

.kp-category-section{
    margin:40px 0;
}

.kp-section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    border-bottom:2px solid #e63946;
    padding-bottom:8px;
}

.kp-section-header h2{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.kp-view-all{
    text-decoration:none;
    color:#e63946;
    font-weight:600;
}

.kp-category-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;
}

.kp-featured-post img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:10px;
}

.kp-featured-post h3{
    margin:15px 0 10px;
    font-size:28px;
    line-height:1.4;
}

.kp-featured-post p{
    color:#666;
    line-height:1.8;
}

.kp-post-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.kp-small-post{
    display:flex;
    gap:15px;
}

.kp-small-post img{
    width:110px;
    height:80px;
    object-fit:cover;
    border-radius:8px;
}

.kp-small-post h4{
    margin:0 0 6px;
    font-size:17px;
    line-height:1.4;
}

.kp-small-post span{
    font-size:13px;
    color:#888;
}

/* Mobile */

@media (max-width:768px){

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

.kp-featured-post img{
    height:220px;
}

.kp-section-header h2{
    font-size:22px;
}

.kp-small-post img{
    width:90px;
    height:70px;
}

}