/*
Theme Name: स्वतंत्र आवाज़ - न्यूज़ थीम
Author: Pradeep Kumar
Version: 3.0
Description: स्वतंत्र आवाज़ - Premium Hindi News Theme
*/

/* =============================================
   CSS VARIABLES — Premium Dark-Red Palette
   ============================================= */
:root {
    /* Brand */
    --primary:      #c0392b;
    --primary-dark: #96281b;
    --primary-glow: rgba(192,57,43,0.18);
    --accent:       #f39c12;
    --accent-dark:  #d68910;

    /* Neutrals */
    --black:        #0d0d0d;
    --dark:         #1c1c1c;
    --mid:          #2e2e2e;
    --gray:         #666666;
    --light-gray:   #f4f4f4;
    --border:       #e2e2e2;
    --white:        #ffffff;

    /* Category Colors */
    --blue:         #1a4f9d;
    --green:        #1a7a3c;
    --red:          #c0392b;
    --purple:       #7b2d8b;
    --wa-green:     #25D366;

    /* Shadows */
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
    --shadow-md:    0 4px 20px rgba(0,0,0,0.11);
    --shadow-lg:    0 8px 32px rgba(0,0,0,0.16);
    --shadow-red:   0 4px 20px rgba(192,57,43,0.25);

    /* Misc */
    --radius:       10px;
    --radius-sm:    6px;
    --font:        'Noto Sans Devanagari', system-ui, sans-serif;
    --font-serif:  'Noto Serif Devanagari', serif;
    --transition:   0.22s cubic-bezier(0.4,0,0.2,1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: #ebebeb;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.6;
    padding-bottom: 70px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* =============================================
   BREAKING NEWS TICKER
   ============================================= */
.bhaskar-ticker-wrap {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    height: 40px;
    overflow: hidden;
}
.bhaskar-ticker-label {
    background: rgba(0,0,0,0.25);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-right: 2px solid rgba(255,255,255,0.2);
}
.bhaskar-ticker-scroll { flex: 1; overflow: hidden; height: 100%; display: flex; align-items: center; }
.bhaskar-ticker-text {
    display: flex;
    white-space: nowrap;
    animation: bhTicker 40s linear infinite;
}
.bhaskar-ticker-text a {
    color: rgba(255,255,255,0.92);
    font-size: 13px;
    font-weight: 600;
    padding: 0 28px 0 0;
    display: inline-block;
    transition: color 0.2s;
}
.bhaskar-ticker-text a:hover { color: var(--accent); }
.bhaskar-ticker-wrap:hover .bhaskar-ticker-text { animation-play-state: paused; }
@keyframes bhTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =============================================
   HEADER
   ============================================= */
.bh-header {
    background: var(--white);
    border-bottom: 4px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: var(--shadow-md);
}
.bh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 12px;
}
/* Logo */
.bh-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.bh-logo-sun {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 6px rgba(192,57,43,0.4));
    transition: transform var(--transition);
}
.bh-logo:hover .bh-logo-sun { transform: rotate(20deg) scale(1.08); }
.bh-logo-text { display: flex; flex-direction: column; gap: 1px; }
.bh-logo-main {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.bh-logo-sub {
    font-size: 10px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
/* Custom logo (uploaded from dashboard) */
.bh-logo .custom-logo-link { display: flex; align-items: center; }
.bh-logo .custom-logo { max-height: 58px; width: auto; object-fit: contain; }

/* Header icons */
.bh-header-icons { display: flex; align-items: center; gap: 8px; }
.bh-menu-btn, .bh-icon-btn {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    background: var(--light-gray);
    transition: all var(--transition);
    color: var(--dark);
}
.bh-menu-btn:hover, .bh-icon-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}
.bh-menu-btn svg, .bh-icon-btn svg { width: 20px; height: 20px; }
.bh-menu-btn:hover svg { stroke: white; }
.bh-icon-btn:hover svg { stroke: white; }

/* Desktop Nav */
.bh-desktop-nav {
    display: none;
    background: var(--dark);
}
.bh-desktop-nav-inner {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 16px;
    max-width: 1280px;
    margin: 0 auto;
}
.bh-desktop-nav-inner::-webkit-scrollbar { display: none; }
.bh-nav-item {
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all var(--transition);
    flex-shrink: 0;
    letter-spacing: 0.2px;
}
.bh-nav-item:hover, .bh-nav-item.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Mobile Nav */
.bh-mobile-nav {
    border-top: 1px solid rgba(0,0,0,0.07);
    overflow-x: auto;
    scrollbar-width: none;
    background: var(--dark);
}
.bh-mobile-nav::-webkit-scrollbar { display: none; }
.bh-mobile-nav-inner { display: flex; padding: 0 6px; }
.bh-mob-tab {
    padding: 9px 13px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    flex-shrink: 0;
    transition: all var(--transition);
}
.bh-mob-tab:hover, .bh-mob-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* =============================================
   SIDE DRAWER
   ============================================= */
.bh-sidenav {
    position: fixed;
    top: 0; left: 0;
    width: 285px;
    height: 100%;
    background: var(--dark);
    z-index: 99999;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    box-shadow: 6px 0 32px rgba(0,0,0,0.35);
}
.bh-sidenav.open { transform: translateX(0); }
.bh-sidenav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 16px;
    background: var(--primary);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bh-sidenav-logo {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.3px;
}
.bh-sidenav-close {
    font-size: 26px;
    color: rgba(255,255,255,0.85);
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}
.bh-sidenav-close:hover { color: var(--accent); }
.bh-sidenav-links { padding: 10px 0; }
.bh-sidenav-links a {
    display: block;
    padding: 11px 20px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all var(--transition);
}
.bh-sidenav-links a:hover {
    color: var(--accent);
    background: rgba(255,255,255,0.04);
    padding-left: 26px;
}
.bh-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 9998;
    backdrop-filter: blur(2px);
}
.bh-overlay.show { display: block; }

/* =============================================
   MAIN LAYOUT
   ============================================= */
.bh-main-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 10px 0;
}
.bh-content-area {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.bh-sidebar { display: none; }

/* =============================================
   LEAD CARD (Top Story)
   ============================================= */
.bh-lead-section { padding: 10px 12px 6px; }
.bh-lead-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    transition: box-shadow var(--transition);
}
.bh-lead-card:hover { box-shadow: var(--shadow-lg); }
.bh-cat-label {
    display: inline-block;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: absolute;
    top: 0; left: 0;
    z-index: 2;
}
.bh-lead-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.35;
    color: var(--black);
    padding: 36px 14px 10px;
    transition: color var(--transition);
}
.bh-lead-title:hover { color: var(--primary); }
.bh-lead-thumb-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    border-radius: 0;
}
.bh-lead-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.bh-lead-card:hover .bh-lead-thumb { transform: scale(1.03); }
.bh-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.18) 0%, transparent 50%);
    pointer-events: none;
}
.bh-lead-desc {
    font-size: 14px;
    color: var(--gray);
    padding: 10px 14px 4px;
    line-height: 1.6;
}
.bh-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 12px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

/* =============================================
   NEWS FEED CARDS
   ============================================= */
.bh-feed-section { padding: 0 12px; }
.bh-news-card {
    display: flex;
    align-items: stretch;
    gap: 12px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 8px;
    padding: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    transition: all var(--transition);
    overflow: hidden;
}
.bh-news-card:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent);
    transform: translateX(2px);
}
.bh-news-card-body { flex: 1; min-width: 0; }
.bh-card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.4;
    margin: 4px 0 8px;
    transition: color var(--transition);
}
.bh-news-card:hover .bh-card-title { color: var(--primary); }
.bh-card-thumb-wrap {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.bh-card-thumb {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.bh-news-card:hover .bh-card-thumb { transform: scale(1.06); }

/* Meta tags */
.bh-cat-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1.5px solid var(--primary);
    border-radius: 4px;
    padding: 2px 7px;
    transition: all var(--transition);
}
.bh-cat-tag:hover { background: var(--primary); color: white; }
.bh-inline-cat {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.bh-time {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}
.bh-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* Share button */
.bh-share-wa {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--wa-green);
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.bh-share-wa:hover {
    background: #1da851;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37,211,102,0.4);
}

/* Social row */
.bh-social-row { display: flex; align-items: center; gap: 8px; }

/* =============================================
   CATEGORY SECTIONS
   ============================================= */
.bh-cat-section {
    padding: 8px 12px;
    margin-bottom: 4px;
}
.bh-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
    position: relative;
}
.bh-section-header::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.bh-section-icon { font-size: 18px; }
.bh-section-title {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 900;
    color: var(--black);
    flex: 1;
}
.bh-section-line { flex: 1; }
.bh-more-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    transition: all var(--transition);
}
.bh-more-link:hover { background: var(--primary); color: white; }

/* Category lead post */
.bh-cat-lead {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.bh-cat-lead:hover { box-shadow: var(--shadow-md); }
.bh-cat-lead a img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.bh-cat-lead-title {
    font-size: 16px;
    font-weight: 800;
    padding: 10px 12px 12px;
    line-height: 1.4;
    color: var(--dark);
    transition: color var(--transition);
}
.bh-cat-lead:hover .bh-cat-lead-title { color: var(--primary); }

/* =============================================
   SIDEBAR (Desktop)
   ============================================= */
.bh-sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
}
.bh-widget-title {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.bh-trending-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--light-gray);
}
.bh-trending-item:last-child { border-bottom: none; }
.bh-trending-num {
    width: 26px; height: 26px;
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
}
.bh-trending-content h4 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark);
    margin-bottom: 2px;
    transition: color var(--transition);
}
.bh-trending-content h4:hover { color: var(--primary); }
.bh-trending-time { font-size: 11px; color: var(--gray); }
.bh-category-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.bh-cat-badge {
    display: inline-block;
    padding: 5px 11px;
    background: var(--light-gray);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    transition: all var(--transition);
    border: 1.5px solid transparent;
}
.bh-cat-badge:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* =============================================
   FOOTER
   ============================================= */
.bh-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    margin-top: 0;
}
.bh-footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 20px 20px;
    max-width: 1280px;
    margin: 0 auto;
}
.bh-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}
.bh-footer-logo em { color: var(--primary); font-style: normal; }
.bh-footer-logo .custom-logo { max-height: 50px; filter: brightness(1.1); }
.bh-footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
}
.bh-footer-heading {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding-bottom: 8px;
}
.bh-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.bh-footer-links li { margin-bottom: 8px; }
.bh-footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.bh-footer-links a::before { content: '›'; color: var(--primary); font-weight: 900; }
.bh-footer-links a:hover { color: var(--accent); }
.bh-social-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.bh-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    transition: all var(--transition);
    color: #fff;
}
.bh-fb { background: #1877F2; }
.bh-tw { background: #1da1f2; }
.bh-wa { background: var(--wa-green); }
.bh-social-btn:hover { transform: translateY(-2px); opacity: 0.9; box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
.bh-wa-channel {
    display: block;
    background: linear-gradient(90deg, #128c7e, #25d366);
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    transition: all var(--transition);
    box-shadow: 0 2px 10px rgba(37,211,102,0.25);
}
.bh-wa-channel:hover { transform: translateY(-2px); box-shadow: 0 5px 18px rgba(37,211,102,0.35); }
.bh-app-badges { display: flex; gap: 8px; }
.bh-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 7px 13px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    transition: all var(--transition);
}
.bh-app-badge:hover { background: rgba(255,255,255,0.18); color: #fff; }
.bh-footer-bottom {
    background: rgba(0,0,0,0.35);
    text-align: center;
    padding: 14px 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 8px;
}
.bh-footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.3px;
}

/* =============================================
   MOBILE BOTTOM NAV
   ============================================= */
.bh-bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--dark);
    display: flex;
    z-index: 9000;
    border-top: 2px solid var(--primary);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.bh-bottom-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 0 8px;
    gap: 2px;
    transition: all var(--transition);
    border-top: 2px solid transparent;
    margin-top: -2px;
}
.bh-bottom-item:hover, .bh-bottom-item.active {
    border-top-color: var(--accent);
    background: rgba(255,255,255,0.04);
}
.bh-bottom-icon { font-size: 18px; line-height: 1; }
.bh-bottom-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.6); }
.bh-bottom-item.active .bh-bottom-label { color: var(--accent); }

/* =============================================
   SINGLE POST
   ============================================= */
.single-post-container {
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 16px;
    margin: 10px 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.post-meta-top {
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap; margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.cat-name a {
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.post-date { font-size: 12px; color: var(--gray); font-weight: 500; }
.post-headline {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.35;
    color: var(--black);
    margin-bottom: 14px;
}
.bh-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    border-left: 3px solid var(--primary);
}
.bh-editor-info { display: flex; align-items: center; gap: 6px; }
.bh-editor-label { font-size: 12px; color: var(--gray); }
.bh-editor-name { font-size: 13px; font-weight: 800; color: var(--primary); }
.post-featured-image {
    margin-bottom: 18px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.post-content { font-size: 15px; line-height: 1.8; color: var(--dark); }
.post-content p { margin-bottom: 16px; }
.post-content h2 { font-size: 20px; font-weight: 900; margin: 22px 0 10px; color: var(--black); font-family: var(--font-serif); }
.post-content h3 { font-size: 17px; font-weight: 800; margin: 18px 0 8px; }
.post-content blockquote {
    margin: 20px 0;
    padding: 14px 18px;
    background: var(--primary-glow);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--primary-dark);
}
.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0 0;
    padding: 14px;
    background: var(--light-gray);
    border-radius: var(--radius);
}
.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--wa-green);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    transition: all var(--transition);
}
.wa-btn:hover { background: #1da851; transform: translateY(-1px); }
.section-title {
    font-family: var(--font-serif);
    border-left: 5px solid var(--primary);
    padding-left: 12px;
    margin: 24px 0 14px;
    font-size: 18px;
    font-weight: 900;
    color: var(--black);
}
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.related-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.related-item:hover { box-shadow: var(--shadow-md); }
.related-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.related-item h4 {
    font-size: 13px;
    font-weight: 700;
    margin: 8px;
    line-height: 1.4;
    color: var(--dark);
    transition: color var(--transition);
}
.related-item:hover h4 { color: var(--primary); }

/* =============================================
   CATEGORY PAGE
   ============================================= */
.category-container { padding: 10px 12px; }
.archive-title {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 14px;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 900;
    box-shadow: var(--shadow-red);
}
.archive-title span {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}
.category-feed {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.cat-first-post { padding: 14px 0; border-bottom: 2px solid var(--border); }
.cat-first-post img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 10px; }
.cat-small-post a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    gap: 12px;
}
.small-post-text h3 { font-size: 14px; font-weight: 700; margin-bottom: 5px; line-height: 1.4; }
.small-post-thumb { width: 80px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination { padding: 16px 0; text-align: center; }
.pagination a, .pagination span {
    display: inline-block;
    padding: 8px 14px;
    background: var(--white);
    border: 1.5px solid var(--border);
    margin: 0 3px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    transition: all var(--transition);
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary) !important; color: white; border-color: var(--primary); }

/* =============================================
   ADVERTISEMENT SLOTS
   ============================================= */
.satya-ad {
    width: 100%;
    text-align: center;
    overflow: hidden;
    clear: both;
}
.satya-ad-ad_header {
    background: #f5f5f5;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6px 0;
    min-height: 50px;
}
.satya-ad-ad_single_top,
.satya-ad-ad_single_bot {
    margin: 14px 0;
    min-height: 60px;
    background: var(--light-gray);
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 4px;
}
.satya-ad-ad_single_mid {
    margin: 18px 0;
    min-height: 100px;
    background: var(--light-gray);
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 4px;
}
.satya-ad-ad_sidebar {
    margin: 12px 0;
    min-height: 250px;
    background: var(--light-gray);
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 4px;
}

/* =============================================
   CUSTOM LOGO
   ============================================= */
.bh-logo .custom-logo-link { display: flex; align-items: center; }
.bh-logo .custom-logo { max-height: 58px; width: auto; object-fit: contain; }

/* =============================================
   DESKTOP RESPONSIVE
   ============================================= */
@media (min-width: 768px) {
    body { padding-bottom: 0; }
    .bh-bottom-nav { display: none; }
    .bh-mobile-nav { display: none; }
    .bh-desktop-nav { display: block; }

    .bh-main-wrap {
        max-width: 1280px;
        padding: 20px 24px 40px;
        margin: 0 auto;
    }
    .bh-content-area {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 24px;
        align-items: start;
    }
    .bh-sidebar {
        display: block;
        grid-column: 2;
        grid-row: 1 / 999;
        position: sticky;
        top: 90px;
        height: fit-content;
    }
    .bh-lead-section { grid-column: 1; padding: 0; }
    .bh-feed-section { grid-column: 1; padding: 0; }
    .bh-cat-section  { grid-column: 1; padding: 0; }

    .bh-lead-title { font-size: 24px; }
    .bh-card-title { font-size: 16px; }
    .bh-cat-lead-title { font-size: 18px; }
    .bh-card-thumb-wrap { width: 120px; height: 90px; }

    .bh-logo-main { font-size: 26px; }
    .bh-logo-sun { width: 42px; height: 42px; }
    .bh-logo .custom-logo { max-height: 66px; }
    .bh-header-inner { padding: 12px 28px; }

    .single-post-container { margin: 20px 0; padding: 32px 28px; }
    .post-headline { font-size: 30px; }
    .post-content { font-size: 17px; }

    .bh-footer-inner { grid-template-columns: 1.4fr 1fr 1.2fr; }
    .bh-footer { margin-top: 0; }
    .category-container { padding: 16px 0; }
}

@media (min-width: 1024px) {
    .bh-main-wrap { padding: 20px 36px 44px; max-width: 1340px; }
    .bh-content-area { grid-template-columns: 1fr 360px; gap: 30px; }
    .bh-logo-main { font-size: 28px; }
}

/* =============================================
   UTILITY
   ============================================= */
.bh-divider { height: 1px; background: var(--border); margin: 6px 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
