/*
Theme Name: सत्यज्ञान समागम - भास्कर स्टाइल
Author: Pradeep Kumar
Version: 2.0
Description: दैनिक भास्कर इंस्पायर्ड न्यूज़ थीम
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --orange:      #e8500a;
    --orange-dark: #c4400a;
    --orange-bg:   rgba(232,80,10,0.08);
    --black:       #111111;
    --dark:        #1a1a1a;
    --gray:        #555555;
    --light-gray:  #f2f2f2;
    --border:      #e0e0e0;
    --white:       #ffffff;
    --blue:        #1a4f9d;
    --green:       #1a7a3c;
    --red:         #cc1515;
    --purple:      #7b2d8b;
    --wa-green:    #25D366;
    --shadow-sm:   0 1px 4px rgba(0,0,0,0.08);
    --shadow-md:   0 2px 10px rgba(0,0,0,0.12);
    --radius:      8px;
    --font:        'Noto Sans Devanagari', system-ui, sans-serif;
    --font-serif:  'Noto Serif Devanagari', serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: #f0f0f0;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.55;
    padding-bottom: 70px; /* bottom nav space */
}

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: var(--orange);
    height: 38px;
    overflow: hidden;
    position: relative;
}
.bhaskar-ticker-label {
    background: var(--orange-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 3px 0 8px rgba(0,0,0,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 35s linear infinite;
    gap: 0;
}
.bhaskar-ticker-text a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 0 30px 0 0;
    display: inline-block;
}
.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: 3px solid var(--orange);
    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 14px;
    gap: 12px;
}
.bh-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.2s;
}
.bh-logo:hover {
    transform: scale(1.02);
}
.bh-logo-sun { 
    flex-shrink: 0; 
    width: 34px; 
    height: 34px;
    filter: drop-shadow(0 2px 4px rgba(232,80,10,0.3));
}
.bh-logo-text { display: flex; flex-direction: column; gap: 1px; }
.bh-logo-main {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1.1;
    letter-spacing: -0.3px;
}
.bh-logo-sub {
    font-size: 10px;
    color: var(--gray);
    font-weight: 500;
}
.bh-header-icons { display: flex; align-items: center; gap: 10px; }
.bh-menu-btn, .bh-icon-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: var(--light-gray);
    transition: all 0.2s;
}
.bh-menu-btn:hover, .bh-icon-btn:hover { 
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232,80,10,0.3);
}
.bh-menu-btn svg, .bh-icon-btn svg { 
    width: 20px; 
    height: 20px;
    transition: stroke 0.2s;
}
.bh-menu-btn:hover svg, .bh-icon-btn:hover svg {
    stroke: white;
}

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

/* Mobile Nav Tabs */
.bh-mobile-nav {
    border-top: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
    background: var(--white);
}
.bh-mobile-nav::-webkit-scrollbar { display: none; }
.bh-mobile-nav-inner {
    display: flex;
    padding: 0 4px;
}
.bh-mob-tab {
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    flex-shrink: 0;
    transition: all 0.2s;
}
.bh-mob-tab:hover, .bh-mob-tab.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

/* =============================================
   SIDE DRAWER
   ============================================= */
.bh-sidenav {
    position: fixed;
    top: 0; left: 0;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}
.bh-sidenav.open { transform: translateX(0); }
.bh-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
    backdrop-filter: blur(2px);
}
.bh-overlay.show { display: block; }
.bh-sidenav-header {
    background: var(--orange);
    padding: 16px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bh-sidenav-logo {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 900;
    color: white;
}
.bh-sidenav-close {
    font-size: 26px;
    color: white;
    line-height: 1;
    padding: 2px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}
.bh-sidenav-close:hover { background: rgba(255,255,255,0.2); }
.bh-sidenav-links { padding: 8px 0; }
.bh-sidenav-links a {
    display: block;
    padding: 13px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
}
.bh-sidenav-links a:hover {
    color: var(--orange);
    padding-left: 26px;
    background: var(--orange-bg);
}

/* =============================================
   SIDEBAR (Desktop)
   ============================================= */
.bh-sidebar {
    display: none;
}
.bh-sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}
.bh-widget-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    border-left: 4px solid var(--orange);
    padding-left: 10px;
    margin-bottom: 14px;
}
.bh-trending-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}
.bh-trending-item:last-child { border-bottom: none; }
.bh-trending-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}
.bh-trending-content h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 4px;
}
.bh-trending-time {
    font-size: 11px;
    color: var(--gray);
}
.bh-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.bh-cat-badge {
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    transition: transform 0.2s;
}
.bh-cat-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232,80,10,0.3);
}

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

/* =============================================
   LEAD / HERO CARD
   ============================================= */
.bh-lead-section { padding: 10px 12px 0; }

.bh-lead-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f5 100%);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow-md);
    margin-bottom: 10px;
    border-left: 4px solid var(--orange);
}
.bh-cat-label {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.bh-lead-title {
    font-size: 19px;
    font-weight: 900;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 10px;
}
.bh-lead-title:hover { color: var(--orange); }
.bh-lead-thumb-wrap {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}
.bh-lead-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.bh-lead-thumb-wrap:hover .bh-lead-thumb { transform: scale(1.02); }
.bh-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 50%);
}
.bh-lead-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

/* =============================================
   CARD FOOTER (shared)
   ============================================= */
.bh-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: 10px;
}
.bh-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bh-cat-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    padding: 3px 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.2s;
}
.bh-cat-tag:hover { color: var(--orange); border-color: var(--orange); }
.bh-time { font-size: 11px; color: var(--gray); }
.bh-share-wa {
    color: var(--wa-green);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

/* =============================================
   NEWS CARD (horizontal list)
   ============================================= */
.bh-feed-section { padding: 0 12px; }

.bh-news-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: var(--radius);
    padding: 13px 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.bh-news-card:hover { 
    box-shadow: 0 3px 14px rgba(0,0,0,0.12); 
    background: linear-gradient(135deg, #fff8f5 0%, #fff0ea 100%);
    border-left-color: var(--orange);
    transform: translateX(2px);
}
.bh-news-card-body { flex: 1; min-width: 0; }
.bh-inline-cat {
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 3px;
}
.bh-card-title {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--dark);
    margin-bottom: 0;
    transition: color 0.2s;
}
.bh-card-title:hover { color: var(--orange); }
.bh-card-thumb-wrap {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    display: block;
}
.bh-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.bh-card-thumb-wrap:hover .bh-card-thumb { transform: scale(1.05); }

/* =============================================
   SECTION HEADER
   ============================================= */
.bh-cat-section { 
    padding: 4px 12px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: var(--radius);
    margin: 10px 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--orange);
}

.bh-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0 8px;
}
.bh-section-icon { font-size: 18px; flex-shrink: 0; }
.bh-section-title {
    font-size: 16px;
    font-weight: 900;
    color: var(--dark);
    white-space: nowrap;
    flex-shrink: 0;
}
.bh-section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--orange), transparent);
    border-radius: 2px;
}
.bh-more-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    white-space: nowrap;
    flex-shrink: 0;
    padding: 4px 10px;
    border: 1px solid var(--orange);
    border-radius: 20px;
    transition: all 0.2s;
}
.bh-more-link:hover { background: var(--orange); color: white; }

/* =============================================
   CATEGORY LEAD POST
   ============================================= */
.bh-cat-lead {
    background: linear-gradient(135deg, rgba(255,248,245,0.8) 0%, rgba(255,240,234,0.8) 100%);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--orange);
}
.bh-cat-lead-title {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 8px;
    transition: color 0.2s;
}
.bh-cat-lead-title:hover { color: var(--orange); }
.bh-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.bh-editor-info { display: flex; flex-direction: column; gap: 1px; }
.bh-editor-label { font-size: 10px; color: var(--gray); }
.bh-editor-name { font-size: 12px; font-weight: 800; color: var(--dark); }
.bh-cat-lead-img-wrap {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}
.bh-cat-lead-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.bh-cat-lead-img-wrap:hover .bh-cat-lead-img { transform: scale(1.02); }

/* =============================================
   FOOTER
   ============================================= */
.bh-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: rgba(255,255,255,0.85);
    padding: 40px 16px 20px;
    margin-top: 16px;
    border-top: 4px solid var(--orange);
}
.bh-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}
.bh-footer-col { flex: 1; min-width: 220px; }
.bh-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 12px;
}
.bh-footer-logo em { font-style: normal; color: white; }
.bh-footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
}
.bh-app-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.bh-app-badge {
    background: linear-gradient(135deg, rgba(232,80,10,0.2), rgba(196,64,10,0.3));
    border: 1px solid rgba(232,80,10,0.4);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    color: white;
    transition: all 0.3s;
}
.bh-app-badge:hover { 
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232,80,10,0.3);
}
.bh-footer-heading {
    font-size: 15px;
    font-weight: 800;
    color: white;
    border-left: 4px solid var(--orange);
    padding-left: 10px;
    margin-bottom: 14px;
}
.bh-footer-links { display: flex; flex-direction: column; gap: 10px; }
.bh-footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s;
}
.bh-footer-links a:hover { color: var(--orange); padding-left: 6px; }
.bh-social-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.bh-social-btn {
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    display: inline-block;
    transition: all 0.3s;
}
.bh-social-btn:hover { 
    opacity: 0.85;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.bh-fb  { background: linear-gradient(135deg, #1877f2, #0c5cbd); }
.bh-tw  { background: linear-gradient(135deg, #000, #333); }
.bh-wa  { background: linear-gradient(135deg, var(--wa-green), #1ea952); }
.bh-wa-channel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--wa-green), #1ea952);
    color: white !important;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s;
}
.bh-wa-channel:hover { 
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}
.bh-footer-bottom {
    text-align: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 2px solid rgba(232,80,10,0.3);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.bh-footer-bottom p {
    background: linear-gradient(90deg, transparent, rgba(232,80,10,0.1), transparent);
    padding: 10px;
    border-radius: 4px;
}

/* =============================================
   BOTTOM NAV (Mobile)
   ============================================= */
.bh-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -3px 12px rgba(0,0,0,0.1);
    z-index: 9998;
    padding: 6px 0 8px;
}
.bh-bottom-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--gray);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}
.bh-bottom-item.active, .bh-bottom-item:hover { color: var(--orange); }
.bh-bottom-icon { font-size: 21px; display: block; }
.bh-bottom-label { font-size: 10px; font-weight: 700; display: block; }

/* =============================================
   SINGLE POST
   ============================================= */
.single-post-container {
    background: var(--white);
    padding: 16px 14px;
    margin: 10px 12px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.post-meta-top { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cat-name a { color: var(--orange); font-weight: 800; font-size: 12px; text-transform: uppercase; }
.post-date { color: var(--gray); font-size: 12px; }
.post-headline {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 14px;
    color: var(--dark);
}
.post-featured-image { margin-bottom: 16px; border-radius: 8px; overflow: hidden; }
.post-featured-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-content { font-size: 16px; line-height: 1.85; color: #333; }
.post-content p { margin-bottom: 16px; }
.post-content h2 { font-size: 20px; font-weight: 800; margin: 20px 0 10px; color: var(--dark); }
.post-content h3 { font-size: 17px; font-weight: 800; margin: 16px 0 8px; }
.post-share {
    margin: 20px 0;
    padding: 14px;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.wa-btn {
    background: var(--wa-green);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Related Posts */
.section-title { border-left: 5px solid var(--orange); padding-left: 10px; margin: 24px 0 14px; font-size: 17px; font-weight: 900; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.related-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; }
.related-item h4 { font-size: 13px; font-weight: 700; margin-top: 6px; line-height: 1.4; }

/* =============================================
   CATEGORY PAGE
   ============================================= */
.category-container { padding: 10px 12px; }
.archive-header {
    background: var(--white);
    padding: 14px;
    margin-bottom: 12px;
    border-radius: var(--radius);
    border-left: 5px solid var(--orange);
    box-shadow: var(--shadow-sm);
}
.archive-title { font-size: 20px; font-weight: 900; }
.archive-title span { color: var(--orange); font-size: 12px; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 2px; }
.category-feed { background: var(--white); border-radius: var(--radius); padding: 0 14px; box-shadow: var(--shadow-sm); }
.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: 8px; margin-bottom: 10px; }
.cat-first-post h2 { font-size: 20px; font-weight: 900; line-height: 1.3; }
.cat-small-post a { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid #f0f0f0; gap: 12px; }
.small-post-text { flex: 1; }
.small-post-text h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; line-height: 1.4; }
.small-post-date { font-size: 11px; color: var(--gray); }
.small-post-thumb img { width: 90px; height: 70px; object-fit: cover; border-radius: 6px; }

/* Pagination */
.pagination { padding: 16px 0; text-align: center; }
.pagination .nav-links a, .pagination .nav-links span {
    padding: 8px 14px; background: var(--white); border: 1px solid var(--border);
    margin: 0 2px; border-radius: 6px; font-weight: 700; font-size: 13px;
}
.pagination .current { background: var(--orange) !important; color: white; border-color: var(--orange); }

/* =============================================
   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: 16px 24px; margin: 0 auto; }

    /* Two column layout on desktop */
    .bh-content-area {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 24px;
    }

    /* Show sidebar on desktop */
    .bh-sidebar {
        display: block;
        grid-column: 2;
        grid-row: 1 / 999;
        position: sticky;
        top: 90px;
        height: fit-content;
    }

    /* Lead + Feed + CatSections go in col 1 */
    .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: 22px; }
    .bh-card-title { font-size: 16px; }
    .bh-cat-lead-title { font-size: 18px; }

    .bh-card-thumb-wrap { width: 120px; height: 90px; }

    /* Header logo bigger */
    .bh-logo-main { font-size: 24px; }
    .bh-logo-sun { width: 40px; height: 40px; }
    .bh-header-inner { padding: 12px 24px; }

    /* Single post bigger */
    .single-post-container { margin: 16px 0; padding: 28px 24px; }
    .post-headline { font-size: 28px; }
    .post-content { font-size: 17px; }

    .category-container { padding: 16px 0; }
}

@media (min-width: 1024px) {
    .bh-main-wrap { padding: 16px 32px; max-width: 1320px; }
    .bh-content-area { grid-template-columns: 1fr 360px; gap: 28px; }
    .bh-logo-main { font-size: 26px; }
}

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