/*
 * Site frontend styles — extracted from partials/site-preferences.blade.php
 * (previously ~400 lines of inline <style> repeated on every single page load).
 *
 * This file is 100% static (no Blade/setting() values) and is now loaded via
 * Vite as a normal cached stylesheet instead of being inlined into every response.
 * The one dynamic value (--site-primary, from Website Settings) is still set
 * inline in site-preferences.blade.php, in a ~5-line <style> block.
 *
 * NOTE: rules are preserved exactly as they were (including overlapping/
 * duplicate !important rules across the old V16/V27/V31/V32 sections) to avoid
 * any visual regression. Logically de-duplicating those is a separate, lower-risk
 * follow-up once there's a chance to visually QA every page.
 */

/* ===== Base theme variables + preloader + dark mode + RTL base rules ===== */
:root {
        --site-primary: #E50914; /* default brand color — actual value is set inline per-request from Website Settings */
        --site-bg: #ffffff;
        --site-surface: #ffffff;
        --site-text: #111111;
        --site-muted: #666666;
        --site-border: #e5e5e5;
    }
    /* Preloader rule moved to site-preferences.blade.php — it needs the
       actual site title (from Website Settings), which a static CSS file
       can't render dynamically. */

body.site-dark {
        --site-bg: #111315;
        --site-surface: #191c20;
        --site-text: #f2f4f7;
        --site-muted: #aeb5bd;
        --site-border: #30353b;
        background: var(--site-bg) !important;
        color: var(--site-text) !important;
    }
    body.site-dark .header,
    body.site-dark .article-card,
    body.site-dark .article-header,
    body.site-dark .article-body,
    body.site-dark .article-content,
    body.site-dark .article-img,
    body.site-dark .article-inline-image,
    body.site-dark .related-main,
    body.site-dark .left-category,
    body.site-dark .right-sidebar,
    body.site-dark .news-area,
    body.site-dark .side-box,
    body.site-dark .website-tool-card,
    body.site-dark .card,
    body.site-dark .top,
    body.site-dark .article-main,
    body.site-dark .article-content,
    body.site-dark .related-list,
    body.site-dark .related-item,
    body.site-dark .trending,
    body.site-dark .section,
    body.site-dark .big-news,
    body.site-dark .news-card,
    body.site-dark .rashifal-card,
    body.site-dark .rashi-card {
        background: var(--site-surface) !important;
        color: var(--site-text) !important;
        border-color: var(--site-border) !important;
    }
    body.site-dark a,
    body.site-dark .header-menu a,
    body.site-dark .category-link,
    body.site-dark .article-meta,
    body.site-dark .content,
    body.site-dark .meta,
    body.site-dark .opinion-author,
    body.site-dark .opinion-excerpt {
        color: var(--site-muted);
    }
    body.site-dark h1,
    body.site-dark h2,
    body.site-dark h3,
    body.site-dark strong,
    body.site-dark .big-title,
    body.site-dark .card-title,
    body.site-dark .article-title,
    body.site-dark .website-tool-title,
    body.site-dark .category-heading {
        color: var(--site-text) !important;
    }
    body.site-dark input,
    body.site-dark textarea,
    body.site-dark select {
        background: #111315;
        color: var(--site-text);
        border-color: var(--site-border);
    }
    body.site-dark .category-link:hover { background: #24282d !important; }
    body.site-dark .category-link.active { background: #2a2f35 !important; color: #ff6b6b !important; }
    body.site-dark .header { box-shadow: 0 1px 6px rgba(0,0,0,.35) !important; }
    html[dir="rtl"] .header-menu,
    html[dir="rtl"] .header-right,
    html[dir="rtl"] .trending,
    html[dir="rtl"] .author-share-row { direction: rtl; }
    html[dir="rtl"] .category-link { text-align: right; }

/* ===== V16 global preference hardening ===== */
/* V16 global preference hardening: page-level CSS must not defeat Website Settings. */
html.site-dark, html.site-dark body, body.site-dark {
    background: var(--site-bg, #111315) !important;
    color: var(--site-text, #f2f4f7) !important;
}
body.site-dark .header,
body.site-dark .header-inner,
body.site-dark .layout,
body.site-dark .news-area,
body.site-dark .left-category,
body.site-dark .right-sidebar,
body.site-dark .page-head,
body.site-dark .rashi-card,
body.site-dark .article-rashi,
body.site-dark .rashifal-list,
body.site-dark .side-box,
body.site-dark .card,
body.site-dark .section,
body.site-dark .big-news,
body.site-dark .news-card,
body.site-dark .article-card {
    background: var(--site-surface) !important;
    color: var(--site-text) !important;
    border-color: var(--site-border) !important;
}
body.site-dark .rashi-text,
body.site-dark .rashi-meta,
body.site-dark .meta,
body.site-dark .page-head p,
body.site-dark .article-meta,
body.site-dark .excerpt,
body.site-dark .content {
    color: var(--site-muted) !important;
}
body.site-dark .rashi-title,
body.site-dark .title,
body.site-dark .page-head h1,
body.site-dark .card-title,
body.site-dark .big-title,
body.site-dark h1,
body.site-dark h2,
body.site-dark h3,
body.site-dark strong {
    color: var(--site-text) !important;
}
body.site-dark .rashi-symbol { background:#22272d !important; border-color:var(--site-border) !important; }
body.site-dark .mobile-category-nav .category-link,
body.site-dark .category-link { color:var(--site-text) !important; }
html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .layout { direction: rtl; }
html[dir="rtl"] .header-inner { direction: rtl; }
html[dir="rtl"] .rashi-card,
html[dir="rtl"] .card,
html[dir="rtl"] .article-header,
html[dir="rtl"] .article-content { text-align: right; }
html[dir="rtl"] .rashi-card .read-more { margin-left:0; margin-right:auto; }

/* ===== V27 global preference enforcement ===== */
/* V27 global preference enforcement: page-level inline/theme rules must follow Website Settings. */
html,body{color-scheme:light}
html[dir="rtl"] body{text-align:right}
body.site-dark{color-scheme:dark!important;background:var(--site-bg,#111315)!important;color:var(--site-text,#f2f4f7)!important}
body.site-dark header,body.site-dark nav,body.site-dark main,body.site-dark section,body.site-dark aside,body.site-dark footer,body.site-dark div,body.site-dark article,body.site-dark form,body.site-dark .public-layout,body.site-dark .layout{border-color:var(--site-border,#30353b)}
body.site-dark [style*="background:#fff"],body.site-dark [style*="background: #fff"],body.site-dark [style*="background:#ffffff"],body.site-dark [style*="background: #ffffff"]{background:var(--site-surface,#191c20)!important;color:var(--site-text,#f2f4f7)!important}
body.site-dark [style*="color:#111"],body.site-dark [style*="color: #111"],body.site-dark [style*="color:#222"],body.site-dark [style*="color: #222"],body.site-dark [style*="color:#333"],body.site-dark [style*="color: #333"]{color:var(--site-text,#f2f4f7)!important}
body.site-dark input,body.site-dark textarea,body.site-dark select{color:var(--site-text,#f2f4f7)!important;background:var(--site-surface,#191c20)!important;border-color:var(--site-border,#30353b)!important}
body.site-dark .header,body.site-dark .site-page-header{background:var(--site-surface,#191c20)!important;color:var(--site-text,#f2f4f7)!important;border-color:var(--site-border,#30353b)!important}
html[dir="rtl"] .public-layout,html[dir="rtl"] .site-page-header-inner,html[dir="rtl"] .header-inner{direction:rtl}
html[dir="rtl"] .card-image,html[dir="rtl"] .category-card-image{order:1}
html[dir="rtl"] .card-body,html[dir="rtl"] .category-card-body{order:2}

/* ===== V31 — Bhaskar-source-informed public UI system (mobile) ===== */
/* V31 — Bhaskar-source-informed public UI system.  Layout metrics are adapted, not copied. */
:root{
  --news-font:'Noto Sans Devanagari',LocalFont,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;
  --news-font-bold:'Noto Sans Devanagari',LocalFontBold,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;
  --news-card-border:var(--site-border,#e5e5e5);
}
html,body{font-family:var(--news-font)!important}
body.site-dark{--news-card-border:var(--site-border,#30353b)}

/* Bhaskar-like compact horizontal category rail */
@media(max-width:900px){
  .public-mobile-nav{padding:0!important;box-shadow:none!important;border-bottom:1px solid var(--news-card-border)!important;background:var(--site-surface,#fff)!important}
  .public-mobile-nav .category-navigation{
    display:flex!important;flex-direction:row!important;align-items:center!important;flex-wrap:nowrap!important;
    gap:0!important;width:max-content!important;min-width:100%!important;padding:0!important;overflow:visible!important
  }
  .public-mobile-nav .category-link,
  .public-mobile-nav .state-city-trigger .category-link{
    display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:0!important;
    min-height:40px!important;width:max-content!important;padding:0 10px!important;margin:0!important;
    border:0!important;border-radius:0!important;background:transparent!important;color:var(--site-text,#333)!important;
    font-size:14px!important;font-weight:700!important;line-height:40px!important;white-space:nowrap!important;
    position:relative!important;flex:0 0 auto!important
  }
  .public-mobile-nav .category-link .category-icon{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:auto!important;min-width:0!important;flex:0 0 auto!important;font-size:15px!important;line-height:1!important}
  .public-mobile-nav .category-link.active{color:var(--site-primary,#e53935)!important;background:transparent!important}
  .public-mobile-nav .category-link.active:after{
    content:'';position:absolute;left:10px;right:10px;bottom:0;height:2px;background:var(--site-primary,#e53935);border-radius:0
  }
  .public-mobile-nav .category-link:hover{background:transparent!important}
}

/* Compact feed cards: 17px/24px type and 108x81 mobile thumbnail, matching the measured reference rhythm. */
.card,.category-card{font-family:var(--news-font)!important}
@media(max-width:900px){
  .card{padding:12px 16px!important;border-top:1px solid var(--news-card-border)!important}
  .card-main{gap:10px!important;align-items:stretch!important}
  .card-body{min-width:0!important}
  .card-title{font-family:var(--news-font-bold)!important;font-size:17px!important;font-weight:700!important;line-height:24px!important;letter-spacing:0!important;padding-right:8px!important}
  .card-media{width:108px!important;flex:0 0 108px!important}
  .card-image{width:108px!important;height:81px!important;min-height:81px!important;max-height:81px!important;border-radius:4px!important}
  .card-image img{width:100%!important;height:100%!important;object-fit:cover!important}
  .card-featured{font-size:11px!important;line-height:16px!important;padding:3px 0 0!important}
  .card-badge{font-size:11px!important;line-height:16px!important;padding:0!important;margin:7px 0 0!important;border:0!important;border-radius:0!important;background:transparent!important;color:var(--site-muted,#777)!important}
  .home-live-badge,.category-card-live{font-size:.9em!important;line-height:normal!important;padding:0 6px!important;border-radius:4px!important;margin-right:6px!important}

  .category-card{padding:12px 16px!important;border-top:1px solid var(--news-card-border)!important}
  .category-card-main{gap:10px!important}
  .category-card-title{font-family:var(--news-font-bold)!important;font-size:17px!important;font-weight:700!important;line-height:24px!important;letter-spacing:0!important}
  .category-card-image-wrap{width:108px!important;flex:0 0 108px!important}
  .category-card-image{width:108px!important;height:81px!important;border-radius:4px!important}
  .category-card-excerpt{font-size:11px!important;line-height:16px!important}
  .category-card-badge{font-size:11px!important;line-height:16px!important;padding:0!important;margin-top:7px!important;border:0!important;border-radius:0!important;color:var(--site-muted,#777)!important}
  .category-card-featured{font-size:11px!important;line-height:16px!important;padding:3px 0 0!important;margin-top:0!important}
}
@media(max-width:480px){
  .card,.category-card{padding-left:16px!important;padding-right:16px!important}
  .card-title,.category-card-title{font-size:17px!important;line-height:24px!important}
  .card-media,.category-card-image-wrap{width:108px!important;flex-basis:108px!important}
  .card-image,.category-card-image{width:108px!important;height:81px!important}
}

/* Main/secondary story rhythm */
@media(max-width:900px){
  .home-trending{padding:8px 0 9px!important;margin-bottom:0!important}
  .home-trending-chip{border:0!important;border-radius:0!important;background:transparent!important;padding:4px 8px!important;font-size:12px!important}
  .home-secondary{grid-template-columns:minmax(0,1fr) 108px!important;gap:10px!important;padding:12px 16px!important}
  .home-secondary-title{font-family:var(--news-font-bold)!important;font-size:17px!important;line-height:24px!important;font-weight:700!important}
  .home-secondary-image{width:108px!important;height:81px!important;border-radius:4px!important}
  .home-secondary-excerpt{font-size:11px!important;line-height:16px!important}
  .home-secondary-category{font-size:11px!important;line-height:16px!important;padding:0!important;margin-top:7px!important;border:0!important;border-radius:0!important;color:var(--site-muted,#777)!important}
  .home-google-strip{min-height:58px!important;padding:10px 16px!important;font-size:13px!important;line-height:20px!important}
  .big-title{font-family:var(--news-font-bold)!important;font-size:20px!important;line-height:28px!important;font-weight:700!important}
}

/* Public page containers: clean white feed, no floating-card treatment on mobile. */
@media(max-width:900px){
  .public-layout{padding:0!important}
  .public-main{width:100%!important}
  .public-page-head{padding:10px 16px!important;margin:0!important;border-top:2px solid var(--site-primary,#e53935)!important}
  .public-page-head h1{font-size:20px!important;line-height:28px!important}
  .public-page-head p{font-size:12px!important;line-height:18px!important}
  .public-right{margin-top:14px!important;padding:0 16px!important}
}

/* Article feed/list spacing follows the same measured mobile rhythm without touching LIVE functionality. */
@media(max-width:900px){
  .article-title{font-family:var(--news-font-bold)!important;font-weight:700!important;line-height:28px!important}
  .article-meta{font-size:12px!important;line-height:18px!important}
  .related-item{padding:12px 0!important}
}

/* Dark mode keeps the same geometry while respecting Website Settings. */
body.site-dark .public-mobile-nav .category-link,
body.site-dark .public-mobile-nav .state-city-trigger .category-link{color:var(--site-text,#f2f4f7)!important}
body.site-dark .card-badge,
body.site-dark .category-card-badge{color:var(--site-muted,#aeb5bd)!important}

/* ===== V31 desktop reference metrics ===== */
/* V31 desktop reference metrics */
@media(min-width:901px){
  .card{padding:20px 20px 8px!important}
  .card-main{gap:14px!important}
  .card-title{font-family:var(--news-font-bold)!important;font-size:20px!important;font-weight:700!important;line-height:30px!important;padding-right:20px!important}
  .card-media{width:144px!important;flex:0 0 144px!important}
  .card-image{width:144px!important;height:108px!important;border-radius:4px!important}
  .category-card{padding:20px 20px 8px!important}
  .category-card-main{gap:14px!important}
  .category-card-title{font-family:var(--news-font-bold)!important;font-size:20px!important;font-weight:700!important;line-height:30px!important;padding-right:20px!important}
  .category-card-image-wrap{width:144px!important;flex:0 0 144px!important}
  .category-card-image{width:144px!important;height:108px!important;border-radius:4px!important}
}

/* ===== V32 — Full Bhaskar-reference public polish ===== */
/* V32 — Full Bhaskar-reference public polish. Source-informed geometry; brand/content remain CMS driven. */
:root{
  --news-max:1250px;
  --news-left:210px;
  --news-right:300px;
  --news-gap:15px;
  --news-orange:#ff8400;
}
html{background:var(--site-bg,#fff)}
body{font-family:'Mukta','Noto Sans Devanagari',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif!important}
.site-page-header{height:64px!important;box-shadow:0 1px 4px rgba(0,0,0,.045)!important}
.site-page-header-inner{max-width:var(--news-max)!important;padding:0 15px!important;gap:18px!important}
.site-page-header .header-menu{gap:20px!important}
.site-page-header .header-menu a{font-size:14px!important;font-weight:700!important;white-space:nowrap}
.site-page-header .header-right{gap:12px!important}
.site-logo-picture{max-width:210px!important;height:44px!important}
.site-logo-image{max-width:210px!important;max-height:42px!important}
.site-logo-text{font-size:26px!important}
.public-layout{max-width:var(--news-max)!important;grid-template-columns:var(--news-left) minmax(0,1fr) var(--news-right)!important;gap:var(--news-gap)!important;padding:15px!important}
.public-left{border-radius:5px!important;padding:7px!important;box-shadow:0 1px 5px rgba(0,0,0,.065)!important}
.public-right{top:79px!important}
.public-left{top:79px!important}
.public-page-head{border-top-width:2px!important;padding:10px 0 11px!important}
.public-page-head h1{font-size:22px!important;line-height:30px!important}
.public-page-head p{font-size:12px!important;line-height:18px!important}
/* Desktop feed: flat newspaper rows rather than rounded app cards. */
.card,.category-card{border-radius:0!important;box-shadow:none!important}
.card:hover,.category-card:hover{background:rgba(0,0,0,.012)!important}
.card-title,.category-card-title{font-family:'Mukta','Noto Sans Devanagari',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif!important}
.card-title{font-size:20px!important;line-height:30px!important;font-weight:700!important}
.category-card-title{font-size:20px!important;line-height:30px!important;font-weight:700!important}
.card-image,.category-card-image{border-radius:4px!important}
.card-featured,.category-card-featured{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif!important}
/* Google follow strip stays editorial and compact. */
.home-google-strip{border-radius:0!important;box-shadow:none!important}
/* Mobile: reproduce the compact feed rhythm visible in the reference. */
@media(max-width:900px){
  .site-page-header{height:56px!important}
  .site-page-header-inner{padding:0 12px!important}
  .site-page-header .header-menu{display:none!important}
  .site-page-header .header-right{gap:5px!important}
  .site-logo-picture{max-width:170px!important;height:40px!important}
  .site-logo-image{max-width:170px!important;max-height:38px!important}
  .site-logo-text{font-size:22px!important}
  .public-mobile-nav{top:56px!important;z-index:900!important}
  .public-layout{display:block!important;padding:0!important}
  .public-left{display:none!important}
  .public-main{width:100%!important}
  .public-right{position:static!important;margin-top:14px!important;padding:0 12px!important}
  .public-page-head{padding:9px 12px 10px!important}
  .public-page-head h1{font-size:20px!important;line-height:28px!important}
  .card,.category-card{padding:12px 12px!important;border-top:1px solid var(--news-card-border)!important}
  .card-main,.category-card-main{gap:10px!important}
  .card-title,.category-card-title{font-size:17px!important;line-height:24px!important;font-weight:700!important;padding-right:0!important}
  .card-media,.category-card-image-wrap{width:108px!important;flex:0 0 108px!important}
  .card-image,.category-card-image{width:108px!important;height:81px!important}
  .card-badge,.category-card-badge{margin-top:5px!important;font-size:11px!important;line-height:16px!important}
  .card-featured,.category-card-featured{font-size:10px!important;line-height:15px!important;padding-top:2px!important}
  .home-secondary{padding-left:12px!important;padding-right:12px!important}
  .home-google-strip{padding-left:12px!important;padding-right:12px!important}
}
@media(max-width:480px){
  .site-logo-picture{max-width:150px!important}
  .site-logo-image{max-width:150px!important}
  .site-logo-text{font-size:21px!important}
  .card,.category-card{padding-left:12px!important;padding-right:12px!important}
  .card-title,.category-card-title{font-size:17px!important;line-height:24px!important}
  .card-media,.category-card-image-wrap,.card-image,.category-card-image{width:108px!important}
  .card-image,.category-card-image{height:81px!important}
}
/* Respect dark mode without changing geometry. */
body.site-dark .site-page-header,body.site-dark .public-mobile-nav{box-shadow:none!important}

/* ===== V48 audit — hairline rail rules and unified hover state ===== */
/* V48 audit: hairline rail rules and unified hover state across public pages. */
@media(min-width:901px){
  .public-left{border-right:1px solid #eeeeee!important;padding-right:10px!important;}
  .public-right{border-left:1px solid #eeeeee!important;padding-left:12px!important;}
  .left-category{border-right:1px solid #eeeeee!important;padding-right:12px!important;}
  .right-sidebar{border-left:1px solid #eeeeee!important;padding-left:12px!important;}
}
.card,.category-card,.related-card,.home-secondary{transition:background-color .16s ease,box-shadow .16s ease;}
.card:hover,.category-card:hover,.related-card:hover,.home-secondary:hover{background:#fafafa!important;}
.card:hover .card-title,.category-card:hover .category-card-title,.related-card:hover .related-title,.home-secondary:hover .home-secondary-title{color:inherit;}
@media(max-width:900px){
 .public-left,.public-right,.left-category,.right-sidebar{border:0!important;padding-left:0!important;padding-right:0!important;}
 .card:hover,.category-card:hover,.related-card:hover,.home-secondary:hover{background:#fafafa!important;}
}

/* ===== HOME MASTER — shared public frontend shell ===== */
/* HOME MASTER: one shared public frontend shell for every news page. */
html body{overflow-x:hidden!important;}
html body .header,html body .site-page-header{position:fixed!important;left:0!important;right:0!important;top:0!important;height:68px!important;z-index:5000!important;background:#fafafa!important;border-bottom:1px solid #e6e6e6!important;box-shadow:0 1px 2px rgba(0,0,0,.035)!important;}
html body .header-inner,html body .site-page-header-inner{max-width:1250px!important;height:100%!important;margin:0 auto!important;padding:0 15px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;}
html body .layout,html body .public-layout{width:100%!important;max-width:1270px!important;margin:0 auto!important;padding:15px!important;display:grid!important;grid-template-columns:230px minmax(0,1fr) 320px!important;gap:14px!important;align-items:start!important;}
html body .left-category,html body .public-left{grid-column:1!important;grid-row:1!important;min-width:0!important;width:100%!important;background:transparent!important;border:0!important;border-radius:0!important;padding:0!important;box-shadow:none!important;overflow:visible!important;position:sticky!important;top:83px!important;}
html body .left-category .category-heading{background:#f5f5f5!important;border-radius:4px!important;}
html body .public-left>.left-category{position:static!important;width:100%!important;background:transparent!important;border:0!important;padding:0!important;box-shadow:none!important;}
html body .news-area,html body .public-main{grid-column:2!important;grid-row:1!important;min-width:0!important;width:100%!important;}
html body .right-sidebar,html body .public-right{grid-column:3!important;grid-row:1!important;min-width:0!important;width:100%!important;position:sticky!important;top:83px!important;background:transparent!important;border:0!important;padding:0!important;box-shadow:none!important;}
html body .public-right .right-sidebar{position:static!important;width:100%!important;}
html body .right-sidebar .website-tool-card:not(.rashifal-widget),html body .right-sidebar .side-box:not(.rashifal-widget),html body .right-sidebar .poll-card,html body .right-sidebar .content-widget{background:transparent!important;border:0!important;border-radius:0!important;box-shadow:none!important;}
html body .right-sidebar .rashifal-widget{background:#fff!important;border:1px solid #e5e5e5!important;border-radius:8px!important;box-shadow:none!important;}
html body .layout,html body .public-layout,html body .news-area,html body .public-main,html body .left-category,html body .public-left,html body .right-sidebar,html body .public-right{height:auto!important;max-height:none!important;overflow-y:visible!important;}
html body{padding-top:68px!important;}
@media(max-width:1050px){html body .layout,html body .public-layout{grid-template-columns:190px minmax(0,1fr)!important;gap:14px!important;max-width:100%!important;}html body .right-sidebar,html body .public-right{display:none!important;}html body .left-category,html body .public-left{grid-column:1!important;width:190px!important;}html body .news-area,html body .public-main{grid-column:2!important;}}
@media(max-width:900px){html body .layout,html body .public-layout{display:block!important;max-width:100%!important;padding:8px!important;}html body .left-category,html body .public-left{display:none!important;}html body .news-area,html body .public-main{width:100%!important;max-width:100%!important;}html body .right-sidebar,html body .public-right{display:block!important;width:100%!important;max-width:100%!important;position:static!important;margin-top:14px!important;}html body .header,html body .site-page-header{height:58px!important;}html body{padding-top:58px!important;}html body .header-inner,html body .site-page-header-inner{padding:0 12px!important;}}

/* ===== Mobile category master (final) ===== */
@media(max-width:900px){
.public-mobile-nav,.mobile-category-nav{display:block!important;position:sticky!important;top:58px!important;z-index:900!important;overflow-x:auto!important;overflow-y:hidden!important;white-space:nowrap!important;background:var(--site-surface,#fff)!important;border-bottom:1px solid var(--site-border,#ddd)!important;box-shadow:none!important;-webkit-overflow-scrolling:touch!important}
.public-mobile-nav .category-navigation,.mobile-category-nav .category-navigation{display:flex!important;flex-direction:row!important;align-items:center!important;flex-wrap:nowrap!important;gap:0!important;width:max-content!important;min-width:max-content!important;padding:0!important;margin:0!important;overflow:visible!important}
.public-mobile-nav .category-link,.mobile-category-nav .category-link,.public-mobile-nav .state-city-trigger .category-link,.mobile-category-nav .state-city-trigger .category-link{position:relative!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:5px!important;min-height:42px!important;height:42px!important;width:auto!important;min-width:0!important;padding:0 10px!important;margin:0!important;border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;color:var(--site-text,#333)!important;font-size:14px!important;font-weight:700!important;line-height:42px!important;white-space:nowrap!important;flex:0 0 auto!important;text-decoration:none!important}
.public-mobile-nav .category-link .category-icon,.mobile-category-nav .category-link .category-icon{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:auto!important;min-width:0!important;flex:0 0 auto!important;font-size:15px!important;line-height:1!important}
.public-mobile-nav .category-link.active,.mobile-category-nav .category-link.active,.public-mobile-nav .state-city-trigger .category-link.active,.mobile-category-nav .state-city-trigger .category-link.active{color:var(--site-primary,#e53935)!important;background:transparent!important}
.public-mobile-nav .category-link.active:after,.mobile-category-nav .category-link.active:after,.public-mobile-nav .state-city-trigger .category-link.active:after,.mobile-category-nav .state-city-trigger .category-link.active:after{content:""!important;position:absolute!important;left:10px!important;right:10px!important;bottom:0!important;height:2px!important;background:var(--site-primary,#e53935)!important;border-radius:0!important}
.public-mobile-nav .category-link:hover,.mobile-category-nav .category-link:hover,.public-mobile-nav .state-city-trigger .category-link:hover,.mobile-category-nav .state-city-trigger .category-link:hover{background:transparent!important}
}

/* ===== CWV global safe — geometry/stability hardening ===== */
/* Global CWV hardening — geometry/stability only. No overflow/scroll containers are changed. */
img,video{max-width:100%;}
.card-image,.category-card-image,.home-secondary-image,.related-image,.video-thumb,.live-update-photo{overflow:hidden;}
.card-image img,.category-card-image img,.home-secondary-image img,.related-image img,.video-thumb img{display:block;width:100%;height:100%;object-fit:cover;}
/* Keep media boxes stable before network images arrive. */
.card-image{aspect-ratio:4/3;}
.category-card-image{aspect-ratio:4/3;}
.home-secondary-image{aspect-ratio:150/92;}
.related-image{aspect-ratio:150/96;}
.video-thumb{aspect-ratio:16/9;}
/* Never force horizontal clipping on the page: horizontal scrollers remain usable. */
html{overflow-x:visible;}
body{overflow-x:clip;}
/* Ads keep their own reserved geometry; their inner code cannot enlarge the page. */
.kl-ad-slot,.kl-ad-box{min-width:0;max-width:100%;box-sizing:border-box;}
.kl-ad-box{overflow:hidden;}
.kl-ad-code,.kl-ad-code iframe,.kl-ad-code ins{max-width:100%!important;box-sizing:border-box!important;}
/* Third-party embeds should not become a critical layout blocker. */
iframe{max-width:100%;}

/* ===== Ad slot styles (moved out of partials/ad.blade.php — was repeated
   once per ad slot on every page; now loaded once via this shared file) ===== */
.kl-ad-slot{display:block;width:100%;max-width:100%;min-width:0;margin:4px 0 14px;padding:0;box-sizing:border-box;overflow:hidden;text-align:center;line-height:1.2}
.kl-ad-label{display:block;margin:0 0 2px;font-size:10px;line-height:14px;font-weight:500;color:#707070;text-align:center}
.kl-ad-box{display:flex;align-items:center;justify-content:center;width:100%;max-width:100%;min-width:0;min-height:var(--ad-h);aspect-ratio:var(--ad-w) / var(--ad-h);box-sizing:border-box;border:1px solid #e5e5e5;background:#fafafa;overflow:hidden}
.kl-ad-link{display:block;max-width:100%;min-width:0;line-height:0}
.kl-ad-box img{display:block;width:auto;max-width:100%;height:auto;max-height:var(--ad-h);margin:0 auto;object-fit:contain}
.kl-ad-code{width:100%;max-width:100%;min-width:0;box-sizing:border-box;overflow:hidden;line-height:normal}
.kl-ad-code>*{max-width:100%!important;box-sizing:border-box!important}
@media(max-width:767px){
  .kl-ad-desktop-slot{display:none!important}
  .kl-ad-mobile-slot{display:block!important}
  .kl-ad-slot{margin:3px 0 12px}
  .kl-ad-box{width:100%;max-width:100%;min-height:var(--ad-h);height:auto;aspect-ratio:var(--ad-w) / var(--ad-h)}
  .kl-ad-box img{max-width:100%!important;width:auto!important;height:auto!important}
}
@media(min-width:768px){
  .kl-ad-mobile-slot{display:none!important}
  .kl-ad-desktop-slot{display:block!important}
}


/* =====================================================
   HOME PAGE styles — moved out of resources/views/home.blade.php
   (was 21 separate <style> blocks scattered through that one file,
   repeated raw in every homepage response). Order preserved exactly
   as it was in the original file, so any !important tie-breaks that
   depended on later-wins-in-document-order still resolve the same way.
   One block (homepage section order, driven by admin layout settings)
   stayed inline in home.blade.php since it needs Blade data.
   ===================================================== */

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family:
                'Noto Sans Devanagari',
                'Segoe UI',
                Arial,
                sans-serif;

            background: #fff;
            color: #111;
        }

        a {
            text-decoration: none;
        }


        /* =========================================
           HEADER
        ========================================= */

        .header {
            background: #fff;
            height: 68px;
            border-bottom: 1px solid #ddd;

            position: sticky;
            top: 0;
            z-index: 1000;

            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
        }

        .header-inner {
            max-width: 1250px;
            height: 100%;

            margin: auto;
            padding: 0 15px;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 28px;
            font-weight: 900;
            color: #222;
            white-space: nowrap;
        }

        .logo .yellow {
            color: #ff8c00;
        }

        .header-menu {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .header-menu a {
            color: #333;
            font-size: 14px;
            font-weight: 600;

            display: flex;
            align-items: center;
            gap: 5px;

            transition: 0.2s ease;
        }

        .header-menu a:hover,
        .header-menu a.active {
            color: #c62828;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .header-icon {
            font-size: 20px;
            cursor: pointer;
            color: #333;
        }

        .header-icon:hover {
            color: #c62828;
        }


        /* =========================================
           MAIN LAYOUT
        ========================================= */

        .layout {
            max-width: 1250px;

            margin: 0 auto;
            padding: 15px;

            display: grid;

            grid-template-columns:
                210px
                minmax(0, 1fr)
                300px;

            gap: 15px;

            align-items: start;
        }

        .left-category {
            grid-column: 1;
            grid-row: 1;
        }

        .news-area {
            grid-column: 2;
            grid-row: 1;

            min-width: 0;
        }

        .right-sidebar {
            grid-column: 3;
            grid-row: 1;

            min-width: 0;
        }


        /* =========================================
           LEFT CATEGORY
        ========================================= */

        .left-category {
            background: #fff;

            border-radius: 6px;

            padding: 8px;

            height: fit-content;

            position: sticky;
            top: 83px;

            box-shadow:
                0 1px 5px rgba(0,0,0,0.08);

            overflow: hidden;
        }

        .category-heading {
            color: #333;

            font-size: 16px;

            font-weight: 800;

            padding: 12px 10px;

            border-bottom: 1px solid #eee;

            margin-bottom: 4px;
        }

        .category-link {
            display: flex;

            align-items: center;

            gap: 9px;

            color: #333;

            padding: 9px 8px;

            font-size: 14px;

            font-weight: 600;

            border-radius: 5px;

            transition: 0.2s ease;
        }

        .category-link:hover {
            background: #fdf0f0;
            color: #d71920;
        }

        .category-link.active {
            background: #f1f3f6;
            color: #c62828;
            font-weight: 700;
        }

        .category-icon {
            width: 23px;
            min-width: 23px;

            text-align: center;

            font-size: 18px;
        }

        .new-label {
            margin-left: auto;

            background: #f44336;

            color: #fff;

            font-size: 8px;

            padding: 2px 4px;

            border-radius: 3px;
        }


        /* =========================================
           TRENDING TOPICS + SECONDARY STORY
        ========================================= */
        .home-trending{display:flex;align-items:center;gap:8px;overflow-x:auto;white-space:nowrap;padding:8px 0 10px;margin:0 0 4px;border-bottom:1px solid #e5e5e5;scrollbar-width:none}
        .home-trending::-webkit-scrollbar{display:none}.home-trending-label{font-size:13px;font-weight:900;color:#222;flex:0 0 auto}.home-trending-chip{display:inline-flex;align-items:center;border:1px solid #ddd;border-radius:999px;padding:5px 10px;color:#555;background:#fff;font-size:12px;font-weight:700;flex:0 0 auto}.home-secondary{display:grid;grid-template-columns:minmax(0,1fr) 150px;gap:14px;padding:13px 0;border-bottom:1px solid #e5e5e5}.home-secondary-body{min-width:0;display:flex;flex-direction:column;align-items:flex-start}.home-secondary-title{display:block;width:100%;font-size:19px;font-weight:550;line-height:1.45;color:#222}.home-secondary-excerpt{font-size:12px;line-height:1.5;color:#777;margin-top:5px}.home-secondary-image{width:150px;height:92px;overflow:hidden;background:#eee;border-radius:2px}.home-secondary-image img{width:100%;height:100%;object-fit:cover;display:block}.home-secondary-category{display:inline-block;width:max-content;margin-top:8px;padding:4px 9px;border:1px solid #ddd;border-radius:999px;font-size:10px;color:#555}.home-secondary-featured{font-size:11px;color:#c62828;font-weight:900;margin-top:5px}

        /* =========================================
           NEWS AREA
        ========================================= */

        .news-area {
            min-width: 0;
        }


        /* =========================================
           HOMEPAGE NEWS — CLEAN NEWS-LIST STYLE
        ========================================= */
        .big-news {
            display: block;
            background: #fff;
            color: inherit;
            padding: 0;
            margin: 0;
            border: 0;
            border-bottom: 1px solid #e5e5e5;
            border-radius: 0;
            box-shadow: none;
        }

        .big-news:hover {
            box-shadow: none;
        }

        .big-news-body {
            padding: 14px 20px 14px;
            background: #fff;
        }

        .big-badge {
            display: none;
        }

        .big-title {
            font-size: 20px;
            font-weight: 700;
            color: #111;
            line-height: 1.42;
            margin: 0 0 10px;
        }

        .big-content,
        .big-date {
            display: none;
        }

        .big-news-img {
            width: 100%;
            height: 310px;
            background: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 0;
            font-size: 60px;
            color: #777;
        }

        .big-news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Clean white news layout — rules instead of card boxes */
        .news-area,
        .cards {
            background: #fff;
        }

        /* No separate colored "Latest News" header */
        .section-header {
            display: none;
        }

        .cards {
            display: block;
            background: #fff;
            border: 0;
            border-radius: 0;
            overflow: visible;
        }

        .card {
            position: relative;
            background: #fff;
            padding: 16px 20px;
            display: flex;
            flex-direction: row;
            gap: 14px;
            border: 0;
            border-top: 1px solid #e5e5e5;
            border-radius: 0;
            transition: background .2s ease;
            cursor: pointer;
            color: inherit;
            text-decoration: none;
        }

        .card-main {
            width: 100%;
            display: flex;
            flex-direction: row;
            gap: 14px;
            align-items: stretch;
            color: inherit;
            text-decoration: none;
            cursor: default;
        }

        .card:hover {
            background: #fafafa;
            transform: none;
        }

        .card-image {
            order: 2;
            width: 130px;
            height: 82px;
            flex: 0 0 130px;
            border-radius: 2px;
            overflow: hidden;
            background: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            font-size: 30px;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .card-body {
            order: 1;
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        /* Clean Bhaskar-style category label — no red dot */
        .card-badge {
            align-self: flex-start;
            color: #333;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 500;
            line-height: 1;
            padding: 5px 10px;
            margin: 9px 0 0;
            display: inline-block;
            order: 2;
            text-decoration: none;
        }

        .card-media{order:2;width:130px;flex:0 0 130px;display:flex;flex-direction:column;align-items:stretch;min-width:0}.card-featured{display:inline-flex;align-items:center;width:max-content;color:#c62828;font-size:11px;font-weight:900;line-height:1;padding:4px 0 0}.card-title .home-live-badge{margin-right:6px;margin-bottom:0;vertical-align:middle}

        .card-title {
            display: block;
            text-decoration: none;
            order: 1;
            font-size: 16px;
            font-weight: 700;
            color: #222;
            line-height: 1.42;
            margin: 0;
        }

        .card-date {
            display: none;
        }

        /* Google follow strip between news items */
        .home-google-strip {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 58px;
            padding: 9px 12px;
            background: #fff0dc;
            border-top: 1px solid #f0ddc3;
            border-bottom: 1px solid #f0ddc3;
            margin: 0;
            font-size: 13px;
            font-weight: 700;
        }

        .home-google-strip-link {
            display: inline-flex;
            flex: 0 0 auto;
        }

        .home-google-strip-icon {
            display: block;
            height: 42px;
            width: auto;
            object-fit: contain;
            border-radius: 6px;
        }

        .home-google-strip-link:hover {
            opacity: .92;
        }


        /* =========================================
           HOMEPAGE SECTION SYSTEM
           Clean white layout + rules only
        ========================================= */
        .home-section {
            background: #fff;
            border-bottom: 1px solid #ddd;
            margin: 0;
        }

        .home-section + .home-section {
            border-top: 8px solid #f1f1f1;
        }

        .home-section-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 20px;
            border-bottom: 1px solid #e5e5e5;
            background: #fff;
        }

        .home-section-title {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 20px;
            line-height: 1.3;
            font-weight: 800;
            color: #222;
        }

        .home-section-title .section-icon {
            font-size: 22px;
            line-height: 1;
        }

        .home-section-more {
            color: #c62828;
            border: 1px solid #c62828;
            border-radius: 4px;
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
        }

        .home-section-more:hover {
            background: #c62828;
            color: #fff;
        }

        .home-list {
            background: #fff;
        }

        .home-list .card:first-child {
            border-top: 0;
        }

        .state-tabs {
            display: flex;
            align-items: center;
            gap: 20px;
            overflow-x: auto;
            padding: 0 20px;
            border-bottom: 1px solid #e5e5e5;
            white-space: nowrap;
            scrollbar-width: none;
        }

        .state-tabs::-webkit-scrollbar {
            display: none;
        }

        .state-tab {
            display: inline-block;
            padding: 11px 0 9px;
            color: #777;
            font-size: 13px;
            font-weight: 700;
            border-bottom: 2px solid transparent;
        }

        .state-tab:hover,
        .state-tab.active {
            color: #222;
            border-bottom-color: #222;
        }

        .state-block-title {
            padding: 12px 20px 0;
            font-size: 16px;
            font-weight: 800;
            color: #222;
        }

        .video-thumb {
            position: relative;
        }

        .video-thumb::after {
            content: '▶';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(0,0,0,.72);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            padding-left: 2px;
        }

        .home-live-badge{display:inline-flex!important;align-items:center;width:max-content;max-width:max-content;background:#c62828;color:#fff;border-radius:4px;padding:3px 8px;font-size:11px;font-weight:900;margin:0 0 6px;line-height:1.1;animation:khLiveBlink 1s steps(2,end) infinite} .home-live-section{margin:0 0 8px;background:#fff;border-bottom:1px solid #e5e5e5}.home-live-heading{display:flex;align-items:center;gap:7px;background:#c62828;color:#fff;padding:7px 12px;font-size:12px;font-weight:900;line-height:1.1}.home-live-heading a{margin-left:auto;color:#fff;font-size:11px}.home-live-pulse{animation:khLiveBlink 1s steps(2,end) infinite;font-size:14px}.home-live-items{display:flex;flex-direction:column}.home-live-item{padding:10px 12px;border-bottom:1px solid #eee;font-size:17px;font-weight:800;line-height:1.45;color:#222}.home-live-item:last-child{border-bottom:0}@media(max-width:700px){.home-live-heading{padding:7px 8px}.home-live-item{padding:10px 8px;font-size:18px;line-height:1.45}}.home-live-badge::before{content:"";width:6px;height:6px;border-radius:50%;background:#fff;margin-right:5px;flex:0 0 6px}@keyframes khLiveBlink{50%{opacity:.28}}


        /* V23 mobile news typography + compact blinking LIVE */
        .home-live-section{background:#fff;border-bottom:1px solid #e5e5e5;margin:0 0 8px;padding:0 0 4px}
        .home-live-heading{display:inline-flex!important;width:max-content!important;max-width:100%;align-items:center;gap:7px;background:#c62828;color:#fff;padding:7px 12px;border-radius:5px;font-size:13px;font-weight:900;line-height:1.1;animation:khLiveBoxBlink 1.1s steps(2,end) infinite}
        .home-live-heading a{margin-left:7px;color:#fff;font-size:10px;font-weight:800}
        .home-live-pulse{font-size:13px;animation:none}
        .home-live-item{padding:8px 4px;font-size:17px;line-height:1.4;font-weight:800}
        @keyframes khLiveBoxBlink{50%{opacity:.55}}
        @media(max-width:700px){
            .home-trending{padding:8px 0 9px}.home-trending-label{font-size:12px}.home-trending-chip{font-size:11px;padding:5px 9px}.home-secondary{grid-template-columns:minmax(0,1fr) 110px;gap:10px;padding:11px 0}.home-secondary-title{font-size:17px;line-height:1.45}.home-secondary-image{width:110px;height:72px}.home-secondary-excerpt{font-size:11px}.home-secondary-category{font-size:10px;padding:4px 8px}
            .big-title{font-size:22px!important;line-height:1.42!important;font-weight:800!important}
            .card-title{font-size:19px!important;line-height:1.45!important;font-weight:800!important}
            .card{padding:14px 0!important;gap:10px!important}
            .card-media{width:112px!important;flex:0 0 112px!important}.card-image{width:112px!important;height:76px!important;flex-basis:auto!important}
            .home-live-heading{padding:7px 11px;font-size:13px}
            .home-live-item{font-size:19px!important;line-height:1.45!important;padding:9px 4px}
        }
        @media(max-width:480px){
            .big-title{font-size:21px!important}
            .card-title{font-size:19px!important;line-height:1.45!important}
            .card-media{width:108px!important;flex:0 0 108px!important}.card-image{width:108px!important;height:72px!important;flex-basis:auto!important}
        }

        .top-news-label {
            font-size: 12px;
            color: #c62828;
            font-weight: 800;
            margin-bottom: 4px;
        }

        @media (max-width: 700px) {
            .home-section-head {
                padding: 12px 16px;
            }

            .home-section-title {
                font-size: 18px;
            }

            .state-tabs {
                padding: 0 16px;
                gap: 16px;
            }

            .state-block-title {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* Homepage width safety: children never overflow the common content width. */
        @media (max-width: 700px) {
            .news-area > *,
            .news-area .home-section,
            .news-area .big-news,
            .news-area .cards {
                max-width: 100%;
                min-width: 0;
            }

            .news-area img {
                max-width: 100%;
            }

            .news-area .card-main {
                max-width: 100%;
                min-width: 0;
            }
        }

        /* =========================================
           RIGHT SIDEBAR
        ========================================= */

        .right-sidebar {
            min-width: 0;

            position: sticky;

            top: 83px;
        }

        .side-box {
            background: #fff;

            border-radius: 6px;

            padding: 12px;

            margin-bottom: 15px;

            border: 1px solid #eee;

            box-shadow:
                0 1px 4px rgba(0,0,0,0.06);

            overflow: hidden;
        }

        .side-title {
            display: block;

            color: #222;

            font-size: 16px;

            font-weight: 800;

            padding-bottom: 9px;

            margin-bottom: 10px;

            border-bottom: 2px solid #c62828;
        }


        /* =========================================
           GOOGLE
        ========================================= */

        .google-box {
            font-size: 13px;

            line-height: 1.5;

            font-weight: 600;
        }

        .google-button {
            display: block;

            background: #4285f4;

            color: white;

            text-align: center;

            padding: 8px;

            border-radius: 4px;

            margin-top: 9px;

            font-size: 12px;

            transition: 0.2s ease;
        }

        .google-button:hover {
            background: #3367d6;
        }


        /* =========================================
           VIDEO
        ========================================= */

        .video-box {
            position: relative;

            width: 100%;

            height: 300px;

            border-radius: 6px;

            overflow: hidden;

            background:
                linear-gradient(
                    145deg,
                    #081c55,
                    #071f70
                );

            display: flex;

            align-items: center;
            justify-content: center;

            text-align: center;

            color: #fff;

            transition: 0.2s ease;
        }

        .video-box:hover {
            transform: translateY(-2px);
        }

        .video-inner {
            padding: 20px;
        }

        .video-main-title {
            font-size: 23px;

            font-weight: 900;

            color: #ffcc00;

            margin-bottom: 8px;
        }

        .video-subtitle {
            font-size: 16px;

            font-weight: 700;

            line-height: 1.5;
        }

        .play-button {
            width: 52px;
            height: 52px;

            background:
                rgba(255,255,255,0.95);

            color: #111;

            border-radius: 50%;

            display: flex;

            align-items: center;
            justify-content: center;

            margin: 15px auto 0;

            font-size: 22px;

            padding-left: 3px;
        }


        /* =========================================
           RASHIFAL
        ========================================= */

        .rashi-grid {
            display: grid;

            grid-template-columns:
                1fr 1fr 1fr;

            gap: 7px;
        }

        .rashi-item {
            text-align: center;

            padding: 8px 3px;

            border-radius: 5px;

            background: #fff7f7;

            border: 1px solid #f5dddd;

            font-size: 11px;

            color: #333;

            display: block;

            transition: 0.2s ease;
        }

        .rashi-item:hover {
            border-color: #c62828;

            color: #c62828;

            background: #fff0f0;
        }

        .rashi-item .sym {
            display: block;

            font-size: 22px;

            margin-bottom: 3px;

            color: #c62828;
        }


        /* =========================================
           FOOTER
        ========================================= */

        .footer {
            background: #1a1a1a;

            color: #ccc;

            margin-top: 20px;

            padding: 30px 15px 15px;
        }

        .footer-inner {
            max-width: 1150px;

            margin: 0 auto;

            display: flex;

            flex-wrap: wrap;

            gap: 30px;

            justify-content: space-between;
        }

        .footer h3 {
            color: white;

            margin-bottom: 12px;

            font-size: 16px;
        }

        .footer-about {
            flex: 1;

            min-width: 250px;
        }

        .footer-about p {
            font-size: 13px;

            line-height: 1.7;
        }

        .footer a {
            display: block;

            color: #ccc;

            margin-bottom: 8px;

            font-size: 13px;

            transition: 0.2s ease;
        }

        .footer a:hover {
            color: #ffcc00;
        }

        .footer-bottom {
            border-top: 1px solid #333;

            margin-top: 25px;

            padding-top: 15px;

            text-align: center;

            font-size: 12px;
        }

        .footer-bottom .dev {
            color: #ffcc00;

            font-weight: bold;
        }


        /* =========================================
           TABLET
        ========================================= */

        @media (max-width: 1050px) {

            .layout {
                grid-template-columns:
                    190px
                    minmax(0, 1fr);
            }

            .right-sidebar {
                display: none;
            }

            .left-category {
                grid-column: 1;
                grid-row: 1;

                width: 190px;
            }

            .news-area {
                grid-column: 2;
                grid-row: 1;
            }

            .header-menu {
                gap: 14px;
            }
        }


        /* =========================================
           TABLET / SMALL LAPTOP — same single horizontal category rail
        ========================================= */
        @media (max-width: 900px) {
            .left-category{display:none!important}
            .layout{display:block!important;padding:8px!important}
            .right-sidebar{display:block!important;width:100%;max-width:100%;position:static;margin-top:14px}
            .news-area{width:100%;min-width:0}
            .mobile-category-nav{display:block!important;position:sticky!important;top:58px!important;z-index:900!important;overflow-x:auto!important;overflow-y:hidden!important;white-space:nowrap!important;background:var(--site-surface,#fff)!important;border-bottom:1px solid var(--site-border,#ddd)!important;box-shadow:none!important}
            .mobile-category-nav .category-navigation{display:flex!important;flex-direction:row!important;align-items:center!important;flex-wrap:nowrap!important;width:max-content!important;min-width:max-content!important;gap:0!important;padding:0!important;margin:0!important}
            .mobile-category-nav .category-link,.mobile-category-nav .state-city-trigger .category-link{position:relative!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:5px!important;min-height:42px!important;height:42px!important;width:auto!important;padding:0 10px!important;margin:0!important;border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;color:var(--site-text,#333)!important;font-size:14px!important;font-weight:700!important;line-height:42px!important;white-space:nowrap!important;flex:0 0 auto!important;text-decoration:none!important}
            .mobile-category-nav .category-link .category-icon{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:auto!important;min-width:0!important;flex:0 0 auto!important;font-size:15px!important;line-height:1!important}
            .mobile-category-nav .category-link.active{color:var(--site-primary,#e53935)!important;background:transparent!important}
            .mobile-category-nav .category-link.active:after{content:""!important;position:absolute!important;left:10px!important;right:10px!important;bottom:0!important;height:2px!important;background:var(--site-primary,#e53935)!important}
        }

        /* =========================================
           MOBILE
        ========================================= */

        @media (max-width: 700px) {

            .header {
                height: 58px;
            }

            .header-inner {
                padding: 0 12px;
            }

            .logo {
                font-size: 23px;
            }

            .header-menu {
                display: none;
            }

            .header-right {
                gap: 10px;
            }

            .layout {
                display: block;

                padding: 8px;
            }

            .left-category {
                display: none;
            }

            /* Desktop sidebar becomes a full-width mobile feature stack.
               Nothing is removed: Poll, Video, Rashifal, Opinion and other
               sidebar widgets remain available below the main news. */
            .right-sidebar {
                display: block;
                width: 100%;
                max-width: 100%;
                min-width: 0;
                position: static;
                margin-top: 14px;
            }

            .right-sidebar .side-box {
                width: 100%;
                max-width: 100%;
                margin-left: 0;
                margin-right: 0;
                box-sizing: border-box;
            }

            .news-area {
                width: 100%;
                padding-left: 8px;
                padding-right: 8px;
                min-width: 0;
            }

            /* Keep every homepage content block on one common alignment line. */
            .big-news-body {
                padding-left: 8px;
                padding-right: 8px;
            }

            .big-news-img {
                width: 100%;
                max-width: 100%;
                height: 210px;
            }

            .home-section-head,
            .state-tabs,
            .state-block-title {
                padding-left: 8px;
                padding-right: 8px;
            }

            .card {
                padding-left: 8px;
                padding-right: 8px;
            }

            .big-title {
                font-size: 20px;
            }

            .card {
                padding: 12px 0;
                gap: 10px;
            }

            .card-image {
                width: 110px;
                height: 72px;
                flex-basis: 110px;
            }

            .card-title {
                font-size: 18px;
                line-height: 1.45;
            }

            .home-google-strip {
                font-size: 11px;
            }

            .footer-inner {
                flex-direction: column;
            }
        }


        /* =========================================
           SMALL MOBILE
        ========================================= */

        @media (max-width: 480px) {

            .logo {
                font-size: 21px;
            }

            .header-icon {
                font-size: 18px;
            }

            .big-news-img {
                height: 180px;
            }

            .big-news-body {
                padding: 12px 8px 12px;
            }

            .big-title {
                font-size: 18px;
            }

            .card-image {
                width: 100px;
                height: 66px;
                flex-basis: 100px;
            }

            .card-title {
                font-size: 18px;
                line-height: 1.45;
            }

            .card-badge {
                font-size: 10px;
                padding: 4px 8px;
            }

            .home-google-strip {
                min-height: 52px;
                padding: 8px;
            }
        }

/* V24 — Bhaskar-inspired mobile reading scale (V28 tuned for readability) */
@media (max-width:700px){
  .home-live-heading{display:inline-flex!important;width:auto!important;max-width:max-content!important;padding:8px 14px!important;border-radius:6px!important;font-size:14px!important}
  .home-live-section{padding:0 8px 5px!important}
  .home-live-item{font-size:18px!important;line-height:1.45!important;font-weight:800!important;padding:9px 0!important}
  .card{padding:12px 8px!important;gap:10px!important;align-items:flex-start!important}
  .card-title{font-size:19px!important;line-height:1.45!important;font-weight:800!important;letter-spacing:0}
  .card-image{width:112px!important;height:74px!important;flex-basis:112px!important;border-radius:4px!important}
  .big-title{font-size:21px!important;line-height:1.42!important;font-weight:800!important}
}
@media (max-width:480px){
  .home-live-heading{font-size:13px!important;padding:7px 12px!important}
  .home-live-item{font-size:18px!important}
  .card-title{font-size:19px!important;line-height:1.45!important}
  .card-media{width:106px!important;flex:0 0 106px!important}.card-image{width:106px!important;height:70px!important;flex-basis:auto!important}
  .big-title{font-size:21px!important}
}

/* V28 — mobile layout safety and readable headline scale */
@media (max-width:700px){
  .mobile-category-nav{top:58px!important;overflow-x:auto!important;overflow-y:hidden!important;width:100%!important;max-width:100%!important}
  .mobile-category-nav .category-navigation{display:flex!important;flex-direction:row!important;flex-wrap:nowrap!important;width:max-content!important;min-width:max-content!important}
  .mobile-category-nav .category-link{flex:0 0 auto!important;white-space:nowrap!important}
  .card{width:100%!important;max-width:100%!important;min-width:0!important}
  .card-title{font-size:19px!important;line-height:1.45!important;font-weight:800!important}
  .big-title{font-size:21px!important;line-height:1.42!important;font-weight:800!important}
}
@media (max-width:480px){
  .card-title{font-size:18px!important;line-height:1.45!important}
  .big-title{font-size:20px!important;line-height:1.42!important}
}

/* PageSpeed: stable image boxes and predictable responsive media. */
.big-news-img{aspect-ratio:16/9;height:auto!important;min-height:0;}
.big-news-img img{aspect-ratio:16/9;}
.home-secondary-image{aspect-ratio:150/92;height:auto!important;}
.home-list .card-image{aspect-ratio:4/3;}
.home-list .card-image img{aspect-ratio:4/3;}
@media(max-width:700px){.big-news-img{aspect-ratio:16/9;height:auto!important;}.home-list .card-image{aspect-ratio:4/3;}}

.kh-highlighter-badge{display:inline-flex;align-items:center;vertical-align:middle;background:var(--kh-badge-color,#c62828);color:#fff!important;border-radius:4px;padding:3px 7px;margin:0 6px 3px 0;font-size:1em;font-weight:900;line-height:1;animation:khHighlighterBlink 1s steps(2,end) infinite;white-space:nowrap;}@keyframes khHighlighterBlink{50%{opacity:.3}}

@media(max-width:700px){.card-title{font-size:19px!important;line-height:1.45!important;font-weight:800!important}.big-title{font-size:21px!important;line-height:1.42!important;font-weight:800!important}}
@media(max-width:480px){.card-title{font-size:18px!important;line-height:1.45!important}.big-title{font-size:20px!important}}

/* V42 — homepage cleanup: no breaking ticker, tighter hero, consistent card media and metadata. */
.home-trending{display:flex!important;}
.big-news-body{padding:6px 8px 8px!important;}
.big-title{margin:0!important;}
.big-news-img{margin-top:0!important;}

/* Preserve full image without grey bars: fixed media frame, transparent background. */
.home-list .card-image,.home-list .card-media .card-image,.card-image{background:transparent!important;}
.home-list .card-image img,.card-image img{object-fit:contain!important;background:transparent!important;}

/* Secondary story metadata is always a separate row below the headline. */
.home-secondary-body{display:flex!important;flex-direction:column!important;align-items:flex-start!important;min-width:0!important;}
.home-secondary-title{display:block!important;width:100%!important;margin:0!important;}
.home-secondary-meta{display:flex!important;position:static!important;width:100%!important;clear:both!important;margin-top:8px!important;align-items:center!important;gap:8px!important;}
.home-secondary-category{position:static!important;display:inline-flex!important;float:none!important;margin:0!important;}

/* Strong, consistent LIVE badge wherever the post explicitly has LIVE enabled. */
.home-live-badge{display:inline-flex!important;align-items:center!important;vertical-align:middle!important;white-space:nowrap!important;min-height:24px!important;padding:4px 9px!important;border-radius:4px!important;font-size:12px!important;font-weight:900!important;line-height:1.15!important;}

/* Right rail: only Rashifal remains a bordered box. */
.right-sidebar{display:flex!important;flex-direction:column!important;}
.right-sidebar .rashifal-widget{box-shadow:none!important;}
.right-sidebar .website-tool-card:not(.rashifal-widget),
.right-sidebar .side-box:not(.rashifal-widget),
.right-sidebar .poll-card,
.right-sidebar .content-widget{background:transparent!important;border:0!important;box-shadow:none!important;border-radius:0!important;}

/* Clean, sober Rashifal card. */
.right-sidebar .rashifal-widget{border:1px solid #e5e5e5!important;border-radius:8px!important;background:#fff!important;box-shadow:none!important;padding:0!important;}
.rashifal-mini-item{background:transparent!important;border:0!important;cursor:pointer!important;}
.rashifal-mini-item img{width:30px!important;height:30px!important;object-fit:contain!important;}
.rashifal-current{padding:8px 11px 11px!important;border-top:1px solid #f0f0f0!important;}
.rashifal-current-sign{font-size:14px!important;font-weight:900!important;}
.rashifal-current-copy{font-size:12px!important;line-height:1.55!important;margin-top:4px!important;color:#444!important;}
.rashifal-current-meta{font-size:10px!important;color:#707070!important;margin-top:5px!important;}

/* Selected sign in the picker. */
.rashi-picker-item.is-selected strong{color:#f57c00!important;}
.rashi-detail{margin-top:18px!important;padding:14px!important;border-top:1px solid #eee!important;background:#fffaf2!important;border-radius:7px!important;}
.rashi-detail-sign{font-size:17px!important;font-weight:900!important;color:#222!important;}
.rashi-detail-copy{font-size:12px!important;line-height:1.6!important;margin-top:6px!important;color:#555!important;}

@media(max-width:700px){
  .big-news-body{padding:5px 8px 7px!important;}
  .home-live-badge{min-height:23px!important;font-size:11px!important;padding:4px 8px!important;}
}

/* Mobile stability: News of the Day must remain visible exactly like desktop. */
@media (max-width:700px){
  .news-area .big-news{
    display:block!important;
    visibility:visible!important;
    opacity:1!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    height:auto!important;
    overflow:visible!important;
  }
  .news-area .big-news-body{
    display:block!important;
    visibility:visible!important;
  }
  .news-area .big-news-img{
    display:flex!important;
    visibility:visible!important;
    width:100%!important;
    max-width:100%!important;
    height:210px!important;
  }
}
@media (max-width:480px){
  .news-area .big-news-img{height:180px!important;}
}

/* V35 — Final homepage card normalization from visual review. */
.home-top-news .home-list .card-title,
.home-section .home-list .card-title,
.home-top-news .home-list .card-title *,
.home-section .home-list .card-title * {
  font-family:'Mukta','Noto Sans Devanagari',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif !important;
  font-weight:550 !important;
  letter-spacing:0 !important;
}
.home-list .card-media,
.home-list .card-image {
  width:144px !important;
  flex:0 0 144px !important;
}
.home-list .card-image {
  height:108px !important;
  overflow:hidden !important;
  position:relative !important;
}
.home-list .card-image img {
  display:block !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
}
.home-list .card-share-row,
.home-list .card-featured-overlay { display:none !important; }
.home-list .card-badge {
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
  flex-wrap:wrap !important;
}
.home-list .card-featured-inline {
  display:inline-flex !important;
  align-items:center !important;
  color:#f57c00 !important;
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif !important;
  font-size:11px !important;
  line-height:16px !important;
  font-weight:700 !important;
  white-space:nowrap !important;
}
@media(max-width:900px){
  .home-list .card-media,
  .home-list .card-image { width:108px !important; flex-basis:108px !important; }
  .home-list .card-image { height:81px !important; }
}
@media(max-width:700px){
  .home-top-news .home-list .card-title,
  .home-section .home-list .card-title,
  .home-top-news .home-list .card-title *,
  .home-section .home-list .card-title * {
    font-size:19px !important;
    line-height:1.45 !important;
    font-weight:550 !important;
  }
  .home-top-news .home-list .card,
  .home-section .home-list .card {
    padding-left:8px !important; padding-right:8px !important;
  }
  .home-top-news, .home-section { padding-left:8px !important; padding-right:8px !important; }
  .home-main-news .big-title, .big-title {
    font-size:20px !important; line-height:1.45 !important; font-weight:550 !important;
    padding-left:8px !important; padding-right:8px !important;
  }
}
@media(max-width:480px){
  .home-top-news .home-list .card-title,
  .home-section .home-list .card-title,
  .home-top-news .home-list .card-title *,
  .home-section .home-list .card-title * {
    font-size:18px !important; line-height:1.45 !important; font-weight:550 !important;
  }
  .home-main-news .big-title, .big-title {
    font-size:18px !important; line-height:1.45 !important; font-weight:550 !important;
    padding-left:8px !important; padding-right:8px !important;
  }
}

/* V36 — Consistent homepage card media and metadata placement. */
.home-list .card-image img,
.card-image img {
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  object-position:center !important;
  display:block !important;
  background:#f3f3f3;
}
.home-list .card-image,
.card-image {
  overflow:hidden !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.card-badge {
  margin-top:9px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:8px !important;
  flex-wrap:wrap !important;
  width:max-content !important;
  max-width:100% !important;
}
.card-category-link {
  display:inline-flex !important;
  align-items:center !important;
}
.card-featured-inline {
  color:#f57c00 !important;
}
.big-news-meta {
  display:flex !important;
  align-items:center !important;
  flex-wrap:wrap !important;
  gap:8px !important;
  margin-top:8px !important;
}
.big-news-category {
  display:inline-flex !important;
  align-items:center !important;
  padding:4px 9px !important;
  border:1px solid #ddd !important;
  border-radius:999px !important;
  color:#555 !important;
  background:#fff !important;
  font-size:10px !important;
  line-height:1 !important;
  text-decoration:none !important;
}
.big-news-featured {
  display:inline-flex !important;
  align-items:center !important;
  color:#f57c00 !important;
  font-size:11px !important;
  line-height:16px !important;
  font-weight:700 !important;
  white-space:nowrap !important;
}
@media(max-width:700px){
  .big-news-meta { margin-top:7px !important; gap:7px !important; }
  .big-news-category { font-size:10px !important; padding:4px 8px !important; }
  .big-news-featured { font-size:11px !important; }
}

/* V35 — Homepage card consistency and metadata placement. */
.home-top-news .card-title,
.home-top-news .card-title span,
.home-top-news .card-title a,
.home-section .card-title,
.home-section .card-title span,
.home-section .card-title a {
  font-weight:550 !important;
  letter-spacing:0 !important;
}
.card-featured-overlay,.card-share-row{display:none !important}
.card-badge{display:flex!important;align-items:center!important;gap:8px!important;flex-wrap:wrap!important}
.card-featured-inline{display:inline-flex!important;align-items:center!important;color:#f57c00!important;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif!important;font-size:11px!important;font-weight:700!important;line-height:16px!important;white-space:nowrap!important}
@media(max-width:700px){
  .home-main-news .big-title,
  .big-title{font-size:20px!important;line-height:1.45!important;font-weight:550!important;padding-left:8px!important;padding-right:8px!important}
  .home-top-news .card-title,
  .home-section .card-title{font-size:19px!important;line-height:1.45!important;font-weight:550!important}
  .home-top-news .card,
  .home-section .card{padding-left:8px!important;padding-right:8px!important}
  .home-top-news,
  .home-section{padding-left:8px!important;padding-right:8px!important}
  .card-featured-inline{font-size:11px!important;line-height:16px!important}
}
@media(max-width:480px){
  .home-main-news .big-title,
  .big-title{font-size:18px!important;line-height:1.45!important;font-weight:550!important;padding-left:8px!important;padding-right:8px!important}
  .home-top-news .card-title,
  .home-section .card-title{font-size:18px!important;line-height:1.45!important;font-weight:550!important}
  .home-top-news .card,
  .home-section .card{padding-left:8px!important;padding-right:8px!important}
  .home-top-news,
  .home-section{padding-left:8px!important;padding-right:8px!important}
}

/* V24 — Bhaskar-inspired mobile reading scale (V28 tuned for readability) */
@media (max-width:700px){
  .home-live-heading{display:inline-flex!important;width:auto!important;max-width:max-content!important;padding:8px 14px!important;border-radius:6px!important;font-size:14px!important}
  .home-live-section{padding:0 8px 5px!important}
  .home-live-item{font-size:18px!important;line-height:1.45!important;font-weight:800!important;padding:9px 0!important}
  .card{padding:12px 8px!important;gap:10px!important;align-items:flex-start!important}
  .card-title{font-size:19px!important;line-height:1.45!important;font-weight:800!important;letter-spacing:0}
  .card-image{width:112px!important;height:74px!important;flex-basis:112px!important;border-radius:4px!important}
  .big-title{font-size:21px!important;line-height:1.42!important;font-weight:800!important}
}
@media (max-width:480px){
  .home-live-heading{font-size:13px!important;padding:7px 12px!important}
  .home-live-item{font-size:18px!important}
  .card-title{font-size:19px!important;line-height:1.45!important}
  .card-media{width:106px!important;flex:0 0 106px!important}.card-image{width:106px!important;height:70px!important;flex-basis:auto!important}
  .big-title{font-size:21px!important}
}

        /* V33 — Bhaskar reference card system */
        .home-top-news{border-bottom:0!important}
        .home-top-news .home-list{border:0!important}
        .home-top-news .card{padding:16px 20px!important}
        .card{align-items:flex-start!important}
        .card-main{align-items:flex-start!important}
        .card-media{order:2!important;width:145px!important;flex:0 0 145px!important;position:relative!important}
        .card-image{position:relative!important;width:145px!important;height:108px!important;flex:0 0 145px!important;border-radius:3px!important;overflow:hidden!important;background:#eee!important}
        .card-featured-overlay{position:absolute!important;left:0!important;top:0!important;z-index:3!important;background:rgba(255,255,255,.94)!important;color:#e87500!important;font-size:11px!important;font-weight:900!important;line-height:1.1!important;padding:4px 7px!important;border-radius:0 0 4px 0!important;white-space:nowrap!important}
        .card-featured{display:none!important}
        .card-title{font-size:19px!important;line-height:1.48!important;font-weight:800!important;color:#222!important}
        .card-badge{margin-top:9px!important;border:1px solid #e1e1e1!important;color:#555!important}
        .home-section-head{padding:13px 20px!important}
        .home-section-title{font-size:19px!important}
        .home-section-more{color:#f57c00!important;border:1px solid #f57c00!important;background:#fff!important;border-radius:4px!important;padding:6px 12px!important}
        .home-section-more:hover{background:#f57c00!important;color:#fff!important}
        @media(max-width:700px){
          .home-top-news .card{padding:12px 8px!important}
          .card-media{width:112px!important;flex-basis:112px!important}
          .card-image{width:112px!important;height:84px!important;flex-basis:112px!important}
          .card-title{font-size:18px!important;line-height:1.46!important}
          .card-featured-overlay{font-size:10px!important;padding:3px 5px!important}
          .home-section-head{padding:11px 8px!important}
          .home-section-title{font-size:18px!important}
          .home-section-more{font-size:11px!important;padding:5px 9px!important}
        }
        @media(max-width:480px){
          .card-media{width:108px!important;flex-basis:108px!important}
          .card-image{width:108px!important;height:81px!important;flex-basis:108px!important}
          .card-title{font-size:18px!important;line-height:1.45!important}
        }

        .card-share-row{display:flex;align-items:center;justify-content:flex-end;gap:16px;padding:5px 2px 0;color:#777;font-size:18px;line-height:1}.card-share-row a{color:#777!important;text-decoration:none;font-weight:800}.card-share-row a:hover{color:#f57c00!important}.card-media{align-items:stretch!important}.card-image{flex:0 0 auto!important}.card-featured-overlay{box-shadow:0 1px 2px rgba(0,0,0,.08)}
        @media(max-width:700px){.card-share-row{gap:13px;font-size:16px;padding-top:4px}}

/* V34 — Homepage mobile typography + 8px content gutters */
@media (max-width:700px){
  .news-area{
    padding-left:8px!important;
    padding-right:8px!important;
    box-sizing:border-box!important;
  }
  .big-news-body{
    padding-left:8px!important;
    padding-right:8px!important;
  }
  .big-title{
    font-size:20px!important;
    line-height:1.45!important;
    font-weight:550!important;
  }
  .home-top-news .card,
  .card{
    padding-left:8px!important;
    padding-right:8px!important;
  }
  .card-title{
    font-size:19px!important;
    line-height:1.45!important;
    font-weight:550!important;
  }
}
@media (max-width:480px){
  .news-area{
    padding-left:8px!important;
    padding-right:8px!important;
  }
  .big-news-body{
    padding-left:8px!important;
    padding-right:8px!important;
  }
  .big-title{
    font-size:18px!important;
    line-height:1.45!important;
    font-weight:550!important;
  }
  .home-top-news .card,
  .card{
    padding-left:8px!important;
    padding-right:8px!important;
  }
  .card-title{
    font-size:18px!important;
    line-height:1.45!important;
    font-weight:550!important;
  }
}

/* V39 — Homepage visual normalization from latest Bhaskar comparison. */
.header,
.header-inner { background:#fafafa !important; }
.header { border-bottom:1px solid #e6e6e6 !important; box-shadow:0 1px 2px rgba(0,0,0,.035) !important; }

@media (min-width:1051px){
  .layout{
    grid-template-columns:225px minmax(0,1fr) 320px !important;
    gap:16px !important;
    max-width:1270px !important;
  }
}

/* Bhaskar-like left rail: list, not a surrounding card. */
.left-category{
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  padding:0 !important;
  box-shadow:none !important;
  overflow:visible !important;
}
.left-category .category-heading{
  background:#f5f5f5 !important;
  border-radius:4px !important;
  border:0 !important;
  padding:10px 12px !important;
  margin:0 0 5px !important;
}
.left-category .category-link{
  padding:9px 10px !important;
  border-radius:4px !important;
}

/* Every homepage news card uses one typography rule. */
.home-top-news .card-title,
.home-top-news .card-title *,
.home-section .card-title,
.home-section .card-title *,
.home-list .card-title,
.home-list .card-title *{
  font-family:'Mukta','Noto Sans Devanagari',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif !important;
  font-size:19px !important;
  font-weight:550 !important;
  line-height:1.45 !important;
  letter-spacing:0 !important;
}

/* Metadata is always BELOW the headline; category and Featured/Trending share one row. */
.home-list .card-body{
  display:flex !important;
  flex-direction:column !important;
  min-width:0 !important;
}
.home-list .card-title{
  order:1 !important;
  display:block !important;
  width:100% !important;
  margin:0 !important;
}
.home-list .card-badge{
  order:2 !important;
  align-self:flex-start !important;
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  flex-wrap:wrap !important;
  gap:7px !important;
  width:auto !important;
  max-width:100% !important;
  margin:8px 0 0 !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
}
.home-list .card-category-link{
  display:inline-flex !important;
  align-items:center !important;
  border:1px solid #ddd !important;
  border-radius:999px !important;
  padding:4px 9px !important;
  background:#fff !important;
  color:#555 !important;
  font-size:10px !important;
  line-height:1 !important;
}
.home-list .card-featured-inline{
  display:inline-flex !important;
  align-items:center !important;
  margin:0 !important;
  color:#f57c00 !important;
  font-size:11px !important;
  line-height:16px !important;
  font-weight:700 !important;
}

/* Keep card thumbnails identical in every homepage section. */
.home-list .card-media,
.home-list .card-image{
  width:144px !important;
  flex:0 0 144px !important;
}
.home-list .card-image{
  height:108px !important;
  overflow:hidden !important;
  background:#f3f3f3 !important;
}
.home-list .card-image img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  object-position:center !important;
  display:block !important;
}

@media(max-width:700px){
  .home-top-news .card-title,
  .home-top-news .card-title *,
  .home-section .card-title,
  .home-section .card-title *,
  .home-list .card-title,
  .home-list .card-title *{
    font-size:19px !important;
    font-weight:550 !important;
    line-height:1.45 !important;
  }
  .home-main-news .big-title,
  .big-title{
    font-size:20px !important;
    font-weight:550 !important;
    line-height:1.45 !important;
  }
  .home-list .card{
    padding-left:8px !important;
    padding-right:8px !important;
  }
  .home-list .card-media,
  .home-list .card-image{
    width:108px !important;
    flex-basis:108px !important;
  }
  .home-list .card-image{height:81px !important;}
}

@media(max-width:480px){
  .home-top-news .card-title,
  .home-top-news .card-title *,
  .home-section .card-title,
  .home-section .card-title *,
  .home-list .card-title,
  .home-list .card-title *{
    font-size:18px !important;
    font-weight:550 !important;
    line-height:1.45 !important;
  }
  .home-main-news .big-title,
  .big-title{
    font-size:18px !important;
    font-weight:550 !important;
    line-height:1.45 !important;
  }
}

/* V40 — metadata must always sit below the headline; never beside it. */
.home-list .card-body{display:flex!important;flex-direction:column!important;align-items:flex-start!important;min-width:0!important;}
.home-list .card-title{display:block!important;width:100%!important;max-width:100%!important;line-height:1.45!important;font-weight:550!important;}
.home-list .card-badge{display:flex!important;width:100%!important;max-width:100%!important;order:2!important;align-items:center!important;justify-content:flex-start!important;margin-top:8px!important;margin-bottom:0!important;padding:0!important;border:0!important;border-radius:0!important;background:transparent!important;gap:8px!important;}
.home-list .card-category-link{display:inline-flex!important;align-items:center!important;width:max-content!important;line-height:1.2!important;}
.home-list .card-featured-inline{display:inline-flex!important;line-height:1.2!important;}
.home-secondary-title .home-live-badge{vertical-align:baseline!important;}
.home-secondary-category{order:2!important;}
@media(max-width:700px){
  .home-secondary-title{font-size:19px!important;line-height:1.45!important;font-weight:550!important;}
}
@media(max-width:480px){
  .home-secondary-title{font-size:18px!important;line-height:1.45!important;font-weight:550!important;}
}

/* Homepage category cards: keep LIVE/highlighter inline with the headline. */
.homepage-section-categories .card-title .home-live-badge{display:inline-flex!important;align-items:center!important;vertical-align:middle!important;white-space:nowrap!important;font-size:1em!important;line-height:1!important;min-height:0!important;padding:3px 7px!important;margin:0 6px 2px 0!important;animation:khHomeCategoryLiveBlink 1s steps(2,end) infinite!important;}
.homepage-section-categories .card-title .kh-highlighter-badge{display:inline-flex!important;align-items:center!important;vertical-align:middle!important;font-size:1em!important;line-height:1!important;margin:0 6px 2px 0!important;}
@keyframes khHomeCategoryLiveBlink{50%{opacity:.35;}}

/* V41 — explicit trending source + stronger LIVE badge + WhatsApp image share. */
.home-trending{gap:10px!important;padding:9px 0 10px!important;border-bottom:1px solid #ececec!important;}
.home-trending-label{color:#c62828!important;font-size:13px!important;font-weight:900!important;}
.home-trending-chip{border:1px solid #e2e2e2!important;background:#fff!important;border-radius:16px!important;padding:5px 11px!important;font-size:12px!important;font-weight:700!important;color:#444!important;}
.home-trending-chip:hover{border-color:#c62828!important;color:#c62828!important;}

.big-title .home-live-badge,.card-title .home-live-badge,.home-secondary-title .home-live-badge{
  min-height:24px!important;
  padding:4px 9px!important;
  margin-right:7px!important;
  margin-bottom:0!important;
  border-radius:4px!important;
  font-size:12px!important;
  font-weight:900!important;
  line-height:1.25!important;
  vertical-align:middle!important;
}
.big-title .home-live-badge::before,.card-title .home-live-badge::before,.home-secondary-title .home-live-badge::before{
  width:6px!important;height:6px!important;flex-basis:6px!important;margin-right:5px!important;
}

.home-secondary-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-top:8px;}
.home-secondary-meta .home-secondary-category{margin-top:0!important;}
.home-list .card-badge{flex-wrap:wrap!important;row-gap:6px!important;}
.card-whatsapp-share{
  appearance:none;border:0;background:transparent;color:#25D366!important;
  padding:0!important;margin:0 0 0 2px!important;cursor:pointer;
  font:inherit;font-size:11px!important;font-weight:800!important;line-height:1.2!important;
}
.card-whatsapp-share:hover{text-decoration:underline;}

@media(max-width:700px){
  .home-trending{padding:8px 0 9px!important;}
  .home-trending-label{font-size:12px!important;}
  .home-trending-chip{font-size:11px!important;padding:5px 9px!important;}
  .big-title .home-live-badge,.card-title .home-live-badge,.home-secondary-title .home-live-badge{min-height:23px!important;font-size:11px!important;padding:4px 8px!important;}
}

/* V43 — secondary story uses the same metadata/tag system as every news card. */
.home-secondary-meta{display:flex!important;align-items:center!important;gap:8px!important;flex-wrap:wrap!important;margin-top:8px!important;}
.home-secondary-meta .home-secondary-category{margin:0!important;}
.home-secondary-meta .card-featured-inline{display:inline-flex!important;align-items:center!important;color:#f57c00!important;font-size:11px!important;font-weight:700!important;line-height:16px!important;}

/* V45 — homepage rails/card rhythm. */
.layout{grid-template-columns:230px minmax(0,1fr) 320px!important;gap:14px!important;}
.left-category{background:transparent!important;border-radius:0!important;padding:0!important;box-shadow:none!important;overflow:visible!important;}
.right-sidebar{width:100%!important;}
.home-list .card{padding-left:8px!important;padding-right:8px!important;}
.home-list .card-title{font-size:20px!important;line-height:1.45!important;font-weight:550!important;}
.home-list .card-image,.home-list .card-image img{width:144px!important;height:108px!important;}
@media(max-width:700px){.layout{display:block!important;padding:8px!important}.home-list .card-title{font-size:19px!important;line-height:1.45!important;font-weight:550!important}.home-list .card{padding-left:8px!important;padding-right:8px!important}.home-list .card-image,.home-list .card-image img{width:112px!important;height:84px!important;}.left-category{display:none!important;}}
@media(max-width:480px){.home-list .card-title{font-size:18px!important}.home-list .card-image,.home-list .card-image img{width:108px!important;height:81px!important;}}

.home-global-ad{max-width:1250px;margin:8px auto 0;padding:0 15px}.home-global-ad-footer{margin-bottom:18px}.home-global-ad .website-ad{margin-bottom:0!important}

/* =====================================================
   ARTICLE PAGE styles — moved out of resources/views/article.blade.php
   (was 11 separate <style> blocks, all fully static). Order preserved.
   ===================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Noto Sans Devanagari', 'Segoe UI', Arial, sans-serif;
            background: #fff;
            color: #111;
            line-height: 1.6;
        }
        a { text-decoration: none; }

        /* ============ HEADER ============ */
        .header {
            background: #fff;
            height: 68px;
            border-bottom: 1px solid #ddd;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
        }
        .header-inner {
            max-width: 1250px;
            height: 100%;
            margin: auto;
            padding: 0 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo { font-size: 28px; font-weight: 900; color: #222; white-space: nowrap; }
        .logo .yellow { color: #ff8c00; }
        .header-menu { display: flex; align-items: center; gap: 25px; }
        .header-menu a {
            color: #333;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: 0.2s ease;
        }
        .header-menu a:hover, .header-menu a.active { color: #c62828; }
        .header-right { display: flex; align-items: center; gap: 15px; }
        .header-icon { font-size: 20px; color: #333; }
        .header-icon:hover { color: #c62828; }

        /* ============ LAYOUT ============ */
        .layout {
            max-width: 1250px;
            margin: 0 auto;
            padding: 15px;
            display: grid;
            grid-template-columns: 210px minmax(0, 1fr) 300px;
            gap: 15px;
            align-items: start;
        }
        .left-category {
            grid-column: 1;
            grid-row: 1;
            background: #fff;
            border-radius: 6px;
            padding: 8px;
            height: fit-content;
            position: sticky;
            top: 83px;
            box-shadow: 0 1px 5px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        .news-area { grid-column: 2; grid-row: 1; min-width: 0; width: 100%; }
        .right-sidebar {
            grid-column: 3;
            grid-row: 1;
            min-width: 0;
            position: sticky;
            top: 83px;
        }

        /* ============ LEFT CATEGORY ============ */
        .category-heading {
            color: #333;
            font-size: 16px;
            font-weight: 800;
            padding: 12px 10px;
            border-bottom: 1px solid #eee;
            margin-bottom: 4px;
        }
        .category-link {
            display: flex;
            align-items: center;
            gap: 9px;
            color: #333;
            padding: 9px 8px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 5px;
            transition: 0.2s ease;
        }
        .category-link:hover { background: #fdf0f0; color: #d71920; }
        .category-link.active { background: #f1f3f6; color: #c62828; font-weight: 700; }
        .category-icon { width: 23px; min-width: 23px; text-align: center; font-size: 18px; }
        .new-label {
            margin-left: auto;
            background: #f44336;
            color: #fff;
            font-size: 8px;
            padding: 2px 4px;
            border-radius: 3px;
        }

        /* ============ TRENDING ============ */
        .trending {
            background: #fff;
            padding: 9px;
            margin-bottom: 10px;
            display: flex;
            gap: 8px;
            overflow-x: auto;
            white-space: nowrap;
            border-radius: 5px;
            border: 1px solid #eee;
        }
        .trending::-webkit-scrollbar { display: none; }
        .trending a {
            color: #555;
            border: 1px solid #ddd;
            padding: 5px 11px;
            border-radius: 20px;
            font-size: 12px;
            flex-shrink: 0;
        }
        .trending a:hover { color: #c62828; border-color: #c62828; }

        @keyframes khArticleLiveBlink { 50% { opacity:.35; } }
        @keyframes khArticleDotBlink { 50% { opacity:.25; transform:scale(.72); } }

        /* ============ LIVE NEWS ============ */
        .live-badge { animation:khArticleLiveBlink 1s steps(2,end) infinite; display:inline-flex; align-items:center; gap:5px; color:#fff; background:#c62828; padding:3px 8px; border-radius:4px; font-size:12px; font-weight:800; margin-right:7px; }
        .live-badge::before { content:""; width:7px; height:7px; border-radius:50%; background:#fff; display:inline-block; }
        .live-updates { margin: 5px 0 28px; border-top:1px solid #eee; }
        .live-update { position:relative; padding:18px 0 18px 18px; border-bottom:1px solid #e5e5e5; }
        .live-update::before { content:""; animation:khArticleDotBlink 1s steps(2,end) infinite; position:absolute; left:0; top:24px; width:8px; height:8px; border-radius:50%; background:#c62828; }
        .live-update-time { color:#c62828; font-size:13px; font-weight:800; margin-bottom:5px; }
        .live-update-heading { font-size:17px; font-weight:800; line-height:1.5; color:#222; margin-bottom:6px; }
        .live-update-details { font-size:16px; line-height:1.8; color:#333; white-space:pre-line; }
        .live-update-photo { width:100%; max-height:430px; object-fit:cover; border-radius:6px; margin-top:12px; display:block; }
        .live-update-caption { font-size:12px; color:#777; margin-top:5px; }
        .election-ticker { margin: 10px 0 14px; border:1px solid #eee; border-radius:7px; background:#fff; overflow:hidden; }
        .election-ticker-head { padding:8px 12px; font-size:14px; font-weight:800; border-bottom:2px solid #c62828; }
        .election-ticker-track { display:flex; gap:8px; overflow-x:auto; padding:8px; }
        .election-ticker-track::-webkit-scrollbar { display:none; }
        .election-ticker-card { min-width:210px; display:flex; align-items:center; gap:9px; padding:7px; border:1px solid #eee; border-radius:6px; background:#fff; }
        .election-ticker-card img, .election-ticker-avatar { width:46px; height:46px; min-width:46px; border-radius:50%; object-fit:cover; background:#f3f3f3; display:flex; align-items:center; justify-content:center; }
        .election-ticker-copy { display:flex; flex-direction:column; min-width:0; line-height:1.25; }
        .election-ticker-copy strong { font-size:13px; }
        .election-ticker-copy span { font-size:11px; color:#777; }
        .election-ticker-copy b { font-size:12px; color:#c62828; }
        .election-ticker-copy small { font-size:10px; color:#555; }

        /* ============ ARTICLE ============ */
        .article-card {
            background: #fff;
            width: 100%;
            padding: 0 20px;
            border: 0;
            border-radius: 0;
            box-shadow: none;
            overflow: hidden;
        }

        .article-header {
            background: #fff;
            padding: 16px 0 18px;
            border-bottom: 1px solid #e5e5e5;
        }

        /* Simple category link — no red box/dot */
        .article-badge {
            display: inline-block;
            background: transparent;
            color: #c62828;
            padding: 0;
            border: 0;
            border-radius: 0;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.4;
            margin: 0 0 7px;
        }

        .article-title {
            font-size: 19px;
            font-weight: 600;
            line-height: 1.62;
            color: #222;
            margin: 0;
            padding: 0;
        }

        .article-header .article-badge {
            display: block;
            margin: 8px 0 0;
        }

        .article-title .live-badge {
            vertical-align: middle;
            margin-right: 7px;
            margin-bottom: 3px;
        }

        .article-img {
            width: 100%;
            max-width: 100%;
            height: auto;
            margin: 0;
            background: #fff;
            border-bottom: 1px solid #e5e5e5;
            display: block;
            overflow: hidden;
            color: #777;
            font-size: 60px;
        }

        .article-img img {
            width: 100%;
            max-width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
            margin: 0;
        }

        .article-img .article-image-caption {
            display: block;
            width: 100%;
            padding: 7px 2px 8px;
            margin: 0;
            font-size: 12px;
            line-height: 1.5;
            color: #777;
            text-align: left;
            background: #fff;
        }

        .article-body {
            padding: 0 0 24px;
            background: #fff;
        }

        /* AUTHOR + SHARE */
        .author-share-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            padding: 12px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
        }
        .author-row { display: flex; align-items: center; gap: 10px; min-width: 0; }
        .author-image {
            width: 42px;
            height: 42px;
            min-width: 42px;
            border-radius: 50%;
            overflow: hidden;
            border: 1px solid #ddd;
            background: #eee;
        }
        .author-image img { width: 100%; height: 100%; object-fit: cover; }
        .author-info { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
        .author-name { font-size: 14px; font-weight: 800; color: #222; }
        .author-date { font-size: 11px; color: #888; margin-top: 2px; }

        /* SHARE */
        .share-inline {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: nowrap;
            justify-content: flex-end;
            flex-shrink: 0;
        }

        .share-label {
            display: none;
        }

        .share-btn {
            border: 0;
            background: transparent !important;
            color: #777 !important;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            padding: 0;
            border-radius: 50%;
            font-family: Arial, sans-serif;
            font-size: 19px;
            font-weight: 500;
            line-height: 1;
            transition: background .2s ease, color .2s ease;
        }

        .share-btn svg {
            width: 28px;
            height: 28px;
            display: block;
        }

        .share-btn.copy svg {
            width: 24px;
            height: 24px;
        }

        .share-btn:hover {
            background: #f3f3f3 !important;
            color: #222 !important;
            transform: none;
        }

        .wa, .fb, .tw, .copy {
            background: transparent !important;
        }

        /* CONTENT */
        .article-content {
            font-size: 17px;
            line-height: 1.9;
            color: #333;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        .article-content p { margin: 0 0 18px; }
        .article-content h1, .article-content h2, .article-content h3 {
            color: #222;
            line-height: 1.5;
            margin: 25px 0 12px;
            font-weight: 800;
        }
        .article-content h2 { font-size: 22px; }
        .article-content h3 { font-size: 19px; }
        .article-content strong { font-weight: 800; }
        .article-content ul, .article-content ol { margin: 0 0 18px 25px; }
        .article-content li { margin-bottom: 7px; }
        .article-content a { color: #d71920; text-decoration: underline; }
        .article-content blockquote {
            border-left: 4px solid #c62828;
            background: #fafafa;
            padding: 12px 15px;
            margin: 20px 0;
            color: #555;
        }
        .article-content img {
            display: block;
            max-width: 100%;
            width: auto;
            height: auto;
            margin: 20px auto;
            border-radius: 6px;
        }
        .article-image-caption, .article-inline-image figcaption {
            display: block;
            width: 100%;
            font-size: 12px;
            line-height: 1.5;
            color: #777;
            margin: 6px 0 0;
            padding: 0 2px 2px;
            text-align: left;
        }
        .article-inline-image {
            margin: 22px 0;
            padding: 0;
        }
        .article-inline-image img {
            width: 100%;
            max-width: 100%;
            height: auto;
            margin: 0;
            border-radius: 6px;
        }

        /* EMBEDS */
        .embeds-section {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .embeds-title { font-size: 18px; font-weight: 800; margin-bottom: 15px; color: #222; }
        .embed-item { margin-bottom: 20px; width: 100%; overflow: hidden; }
        .embed-item iframe { width: 100%; max-width: 100%; border: 0; border-radius: 6px; }
        .embed-link {
            display: block;
            background: #f7f7f7;
            border: 1px solid #ddd;
            padding: 12px;
            border-radius: 6px;
            color: #d71920;
            word-break: break-all;
            font-size: 14px;
        }

        /* MORE NEWS — same visual language as homepage cards */
        .more-section {
            margin: 15px 20px 0;
            width: calc(100% - 40px);
            background: #fff;
        }
        .section-header { background: #fff; border-bottom: 2px solid #c62828; margin-bottom: 0; }
        .section-title { display:inline-block; color:#222; font-size:16px; font-weight:800; padding:8px 0; }
        .related-list { display:flex; flex-direction:column; }
        .related-card { border-bottom:1px solid #eee; }
        .related-card:last-child { border-bottom:0; }
        .related-main {
            display:flex;
            align-items:stretch;
            gap:12px;
            padding:12px 0;
            min-width:0;
            max-width:100%;
            overflow:hidden;
        }
        .related-body { flex:1; min-width:0; display:flex; flex-direction:column; }
        .home-live-badge{display:inline-flex;align-items:center;background:#c62828;color:#fff;border-radius:4px;padding:2px 7px;font-size:10px;font-weight:800;margin-bottom:5px}.home-live-badge::before{content:"";width:6px;height:6px;border-radius:50%;background:#fff;margin-right:5px}
        .related-title { display:block; color:#222; font-size:16px; font-weight:700; line-height:1.42; margin:0; }
        .related-badge { align-self:flex-start; color:#333; background:#fff; border:1px solid #ddd; border-radius:999px; font-size:11px; font-weight:500; line-height:1; padding:5px 10px; margin-top:8px; }
        .related-badge a { color:inherit; }
        .related-image { width:150px; min-width:150px; height:96px; border-radius:6px; overflow:hidden; background:#f2f2f2; display:flex; align-items:center; justify-content:center; }
        .related-image img { width:100%; height:100%; object-fit:cover; display:block; }

        /* RIGHT SIDEBAR */
        .side-box {
            background: #fff;
            border-radius: 6px;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #eee;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
            overflow: hidden;
        }
        .side-title {
            display: block;
            color: #222;
            font-size: 16px;
            font-weight: 800;
            padding-bottom: 9px;
            margin-bottom: 10px;
            border-bottom: 2px solid #c62828;
        }
        .google-box { font-size: 13px; line-height: 1.5; font-weight: 700; }
        .google-button {
            display: block;
            background: #4285f4;
            color: #fff;
            text-align: center;
            padding: 8px;
            border-radius: 4px;
            margin-top: 9px;
            font-size: 12px;
        }
        .video-box {
            position: relative;
            width: 100%;
            height: 250px;
            border-radius: 6px;
            overflow: hidden;
            background: linear-gradient(145deg, #081c55, #071f70);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }
        .video-inner { padding: 20px; }
        .video-main-title { font-size: 21px; font-weight: 900; color: #ffcc00; margin-bottom: 8px; }
        .video-subtitle { font-size: 15px; font-weight: 700; line-height: 1.5; }
        .play-button {
            width: 52px;
            height: 52px;
            background: rgba(255,255,255,0.95);
            color: #111;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 15px auto 0;
            font-size: 22px;
            padding-left: 3px;
        }
        .rashi-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7px; }
        .rashi-item {
            text-align: center;
            padding: 8px 3px;
            border-radius: 5px;
            background: #fff7f7;
            border: 1px solid #f5dddd;
            font-size: 11px;
            color: #333;
            display: block;
            transition: 0.2s ease;
        }
        .rashi-item:hover { border-color: #c62828; color: #c62828; background: #fff0f0; }
        .rashi-item .sym { display: block; font-size: 21px; margin-bottom: 3px; color: #c62828; }

        /* FOOTER */
        .footer { background: #1a1a1a; color: #ccc; margin-top: 20px; padding: 30px 15px 15px; }
        .footer-inner {
            max-width: 1150px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-between;
        }
        .footer h3 { color: #fff; margin-bottom: 12px; font-size: 16px; }
        .footer-about { flex: 1; min-width: 250px; }
        .footer-about p { font-size: 13px; line-height: 1.7; }
        .footer a { display: block; color: #ccc; margin-bottom: 8px; font-size: 13px; }
        .footer a:hover { color: #ffcc00; }
        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 25px;
            padding-top: 15px;
            text-align: center;
            font-size: 12px;
        }
        .footer-bottom .dev { color: #ffcc00; font-weight: bold; }

        /* TABLET */
        @media (max-width: 1050px) {
            .layout { grid-template-columns: 190px minmax(0, 1fr); }
            .left-category { grid-column: 1; grid-row: 1; width: 190px; }
            .news-area { grid-column: 2; grid-row: 1; }
            .right-sidebar { display: none; }
            .header-menu { gap: 14px; }
        }

        /* MOBILE */
        @media (max-width: 700px) {
            .header { height: 58px; }
            .header-inner { padding: 0 12px; }
            .logo { font-size: 23px; }
            .header-menu { display: none; }
            .header-right { gap: 10px; }
            .layout { display: block; padding: 8px; }
            .left-category, .right-sidebar { display: none; }
            .news-area { width: 100%; }
            .trending { margin-bottom: 8px; }
            .article-card {
                padding: 0 16px;
            }
            .article-header {
                padding: 15px 0 17px;
            }
            .article-title {
                font-size: 17px;
                line-height: 1.65;
                margin-bottom: 0;
            }
            .article-img {
                width: 100%;
                max-width: 100%;
                height: auto;
                margin: 0;
            }
            .article-body {
                padding: 0 0 18px;
            }
            .trending,
            .election-ticker,
            .more-section {
                width: calc(100% - 16px);
                margin-left: 8px;
                margin-right: 8px;
            }
            .author-share-row {
                align-items: center;
                flex-direction: row;
                justify-content: space-between;
                gap: 10px;
                padding: 10px 0;
            }
            .author-row {
                flex: 1 1 auto;
                min-width: 0;
            }
            .author-info {
                min-width: 0;
            }
            .author-name,
            .author-date {
                white-space: nowrap;
            }
            .share-inline {
                width: auto;
                flex: 0 0 auto;
                justify-content: flex-end;
                gap: 6px;
            }
            .share-btn {
                flex: 0 0 auto;
                width: 32px;
                height: 32px;
                padding: 2px;
                font-size: 11px;
            }
            .share-btn svg {
                width: 28px;
                height: 28px;
            }
            .share-btn.copy svg {
                width: 23px;
                height: 23px;
            }
            .article-content { font-size: 15px; line-height: 1.85; }
            .article-content img { width: 100%; height: auto; }
            .footer-inner { flex-direction: column; }
        }

        /* SMALL MOBILE */
        @media (max-width: 480px) {
            .logo { font-size: 21px; }
            .article-card {
                padding-left: 16px;
                padding-right: 16px;
            }
            .article-img {
                width: 100%;
                max-width: 100%;
                height: auto;
                margin: 0;
            }
            .article-title { font-size: 17px; }
            .article-content { font-size: 15px; }
            .author-share-row {
                gap: 7px;
            }
            .author-image {
                width: 38px;
                height: 38px;
                min-width: 38px;
            }
            .author-name {
                font-size: 13px;
            }
            .author-date {
                font-size: 10px;
            }
            .share-inline {
                gap: 4px;
            }
            .share-btn {
                width: 30px;
                height: 30px;
                flex: 0 0 30px;
            }
            .share-btn svg {
                width: 27px;
                height: 27px;
            }
            .share-btn.copy svg {
                width: 22px;
                height: 22px;
            }
        }
    
        @media (max-width: 700px) {
            .article-title { font-size: 18px; line-height: 1.55; }
            .related-main { gap:10px; padding:11px 0; }
            .related-title { font-size:15px; }
            .related-image { width:110px; min-width:110px; height:76px; }
        }

/* V28 — article mobile layout safety */
@media (max-width:700px){
  .mobile-category-nav{top:58px!important;overflow-x:auto!important;overflow-y:hidden!important;width:100%!important;max-width:100%!important}
  .mobile-category-nav .category-navigation{display:flex!important;flex-direction:row!important;flex-wrap:nowrap!important;width:max-content!important;min-width:max-content!important}
  .mobile-category-nav .category-link{flex:0 0 auto!important;white-space:nowrap!important}
}

/* Media sizing fix: use the real image dimensions/HTML width-height attributes.
   Do not force an aspect-ratio on the wrapper; it can make the following story
   content paint over the image when the loaded image has a different ratio. */
.article-img{height:auto!important;aspect-ratio:auto!important;}
.article-img img{height:auto!important;aspect-ratio:auto!important;}
.article-inline-image{height:auto!important;aspect-ratio:auto!important;}
.article-inline-image img{height:auto!important;aspect-ratio:auto!important;}
.live-update-photo{height:auto!important;aspect-ratio:auto!important;}

@media(max-width:900px){
.mobile-category-nav{display:block!important;position:sticky!important;top:58px!important;z-index:900!important;overflow-x:auto!important;overflow-y:hidden!important;white-space:nowrap!important;background:var(--site-surface,#fff)!important;border-bottom:1px solid var(--site-border,#ddd)!important;box-shadow:none!important}
.mobile-category-nav .category-navigation{display:flex!important;flex-direction:row!important;align-items:center!important;flex-wrap:nowrap!important;width:max-content!important;min-width:max-content!important;gap:0!important;padding:0!important;margin:0!important}
.mobile-category-nav .category-link,.mobile-category-nav .state-city-trigger .category-link{position:relative!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:5px!important;min-height:42px!important;height:42px!important;width:auto!important;padding:0 10px!important;margin:0!important;border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;color:var(--site-text,#333)!important;font-size:14px!important;font-weight:700!important;line-height:42px!important;white-space:nowrap!important;flex:0 0 auto!important;text-decoration:none!important}
.mobile-category-nav .category-link .category-icon{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:auto!important;min-width:0!important;flex:0 0 auto!important;font-size:15px!important;line-height:1!important}
.mobile-category-nav .category-link.active{color:var(--site-primary,#e53935)!important;background:transparent!important}
.mobile-category-nav .category-link.active:after{content:""!important;position:absolute!important;left:10px!important;right:10px!important;bottom:0!important;height:2px!important;background:var(--site-primary,#e53935)!important}
.mobile-category-nav .category-link:hover{background:transparent!important}
}

/* Mobile only: match Category page's 8px card gutter. */
@media (max-width:700px){
  .article-card{
    padding-left:8px!important;
    padding-right:8px!important;
    box-sizing:border-box!important;
  }
  .article-card .article-header,
  .article-card .article-body{
    width:100%!important;
    max-width:100%!important;
    box-sizing:border-box!important;
  }
  .article-card .article-img,
  .article-card .article-content,
  .article-card .author-share-row{
    max-width:100%!important;
    box-sizing:border-box!important;
  }
}

.kh-highlighter-badge{display:inline-flex;align-items:center;vertical-align:middle;background:var(--kh-badge-color,#c62828);color:#fff!important;border-radius:4px;padding:3px 7px;margin:0 6px 3px 0;font-size:1em;font-weight:900;line-height:1;animation:khHighlighterBlink 1s steps(2,end) infinite;white-space:nowrap;}
@keyframes khHighlighterBlink{50%{opacity:.3}}
.related-list{display:flex!important;flex-direction:row!important;gap:10px!important;overflow-x:auto!important;overflow-y:hidden!important;scroll-snap-type:x proximity!important;padding:4px 2px 10px!important;-webkit-overflow-scrolling:touch!important;}
.related-list .related-card{flex:0 0 300px!important;width:300px!important;min-width:300px!important;scroll-snap-align:start!important;border:1px solid #eee!important;border-radius:8px!important;overflow:hidden!important;}
@media(max-width:700px){.related-list .related-card{flex-basis:255px!important;width:255px!important;min-width:255px!important}.related-list .related-main{display:flex!important;flex-direction:column!important}.related-list .related-image{order:2!important;width:100%!important;height:145px!important}.related-list .related-body{order:1!important}.related-list .related-title{font-size:17px!important}}

/* CWV-safe: reserve media geometry without changing article layout */
.article-content img{max-width:100%;height:auto;display:block;}
.article-content img:not([width]):not([height]){aspect-ratio:16/9;object-fit:contain;background:#f7f7f7;}
.live-update-photo{aspect-ratio:16/9;height:auto;}

.kh-affiliate-badge{position:absolute;top:0;left:0;padding:5px 10px;background:#e50914;color:#fff;font-size:11px;font-weight:800;border-radius:0 0 7px 0}
.kh-affiliate-media{width:180px;min-width:180px;height:180px;display:flex;align-items:center;justify-content:center;background:#fafafa;border-radius:8px;overflow:hidden}
.kh-affiliate-media img{display:block;width:100%;height:100%;object-fit:contain}
.kh-affiliate-placeholder{font-size:52px}
.kh-affiliate-copy{min-width:0;flex:1}
.kh-affiliate-kicker{font-size:10px;line-height:1.2;text-transform:uppercase;letter-spacing:.05em;color:#777;font-weight:800;margin-bottom:4px}
.kh-affiliate-brand{font-size:12px;color:#777;margin-bottom:2px}
.kh-affiliate-title{font-size:20px!important;line-height:1.4!important;font-weight:800!important;color:#222!important;margin:0 0 7px!important}
.kh-affiliate-description{font-size:14px!important;line-height:1.65!important;color:#555!important;margin:0 0 12px!important}
.kh-affiliate-bottom{display:flex;align-items:center;justify-content:space-between;gap:12px}
.kh-affiliate-price-wrap{display:flex;align-items:baseline;gap:8px;min-width:0}
.kh-affiliate-price{font-size:22px;color:#111;white-space:nowrap}
.kh-affiliate-original{font-size:13px;color:#707070;white-space:nowrap}
.kh-affiliate-cta{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:8px 18px;border-radius:6px;background:#e50914;color:#fff!important;text-decoration:none!important;font-size:14px;font-weight:800;white-space:nowrap}
.kh-affiliate-cta:hover{opacity:.9}
.kh-affiliate-disclosure{font-size:10px;color:#707070;line-height:1.45;margin-top:8px}
@media(max-width:700px){
 .kh-affiliate-card{gap:12px;padding:12px;align-items:flex-start;margin:22px 0}
 .kh-affiliate-media{width:105px;min-width:105px;height:105px}
 .kh-affiliate-title{font-size:17px!important;line-height:1.4!important}
 .kh-affiliate-description{font-size:12px!important;line-height:1.5!important;margin-bottom:8px!important}
 .kh-affiliate-price{font-size:18px}
 .kh-affiliate-original{font-size:11px}
 .kh-affiliate-bottom{align-items:flex-end;gap:7px}
 .kh-affiliate-cta{min-height:34px;padding:6px 11px;font-size:12px}
}

.related-list{display:flex!important;flex-direction:row!important;gap:10px!important;overflow-x:auto!important;overflow-y:hidden!important;padding:4px 2px 12px!important;scroll-snap-type:x proximity!important;-webkit-overflow-scrolling:touch!important;}
.related-list .related-card{flex:0 0 300px!important;width:300px!important;min-width:300px!important;margin:0!important;border:1px solid #eee!important;border-radius:8px!important;overflow:hidden!important;scroll-snap-align:start!important;}
.related-list .related-main{display:flex!important;flex-direction:column!important;gap:8px!important;padding:0!important;}
.related-list .related-body{order:1!important;padding:10px!important;}
.related-list .related-image{order:2!important;width:100%!important;min-width:0!important;height:165px!important;border-radius:0!important;}
@media(max-width:700px){.related-list .related-card{flex-basis:255px!important;width:255px!important;min-width:255px!important}.related-list .related-image{height:145px!important}.related-list .related-title{font-size:17px!important}}

.article-content .social-embed{width:100%;max-width:100%;margin:22px 0;display:flex;justify-content:center;overflow:hidden;}
.article-content .social-embed iframe{max-width:100%;border:0;}
.article-content blockquote.instagram-media,.article-content blockquote.twitter-tweet{max-width:550px!important;margin:20px auto!important;}
/* V48 — article 3-column frame aligned with homepage. */
.layout{
    max-width:1270px!important;
    grid-template-columns:225px minmax(0,1fr) 320px!important;
    gap:16px!important;
}
.left-category{
    background:transparent!important;border:0!important;border-radius:0!important;
    padding:0!important;box-shadow:none!important;overflow:visible!important;
}
.right-sidebar{
    width:100%!important;max-width:100%!important;min-width:0!important;
    box-sizing:border-box!important;overflow-x:hidden!important;overflow-y:visible!important;
}
.right-sidebar > *{max-width:100%!important;min-width:0!important;box-sizing:border-box!important;}
.right-sidebar .website-ad{width:100%!important;max-width:100%!important;min-width:0!important;overflow:hidden!important;box-sizing:border-box!important;}
.right-sidebar .website-ad img{width:100%!important;max-width:100%!important;height:auto!important;display:block!important;}
@media(max-width:1050px){.layout{grid-template-columns:190px minmax(0,1fr)!important}.right-sidebar{display:none!important}}
@media(max-width:700px){.layout{display:block!important;padding:8px!important}.left-category,.right-sidebar{display:none!important}.news-area{width:100%!important}}

/* LIVE badge: same text scale as the article heading, without creating a large gap. */
.article-title .live-badge{
    font-size:1em!important;
    line-height:1!important;
    padding:2px 6px!important;
    margin-right:5px!important;
    margin-bottom:0!important;
    vertical-align:middle!important;
    display:inline-flex!important;
    align-items:center!important;
    gap:4px!important;
}
.article-title .live-badge::before{
    width:.42em!important;
    height:.42em!important;
}

/* ===== Mobile category gutter match (was an UNCLOSED <style> tag at the very
   end of home.blade.php in the original file — no </style>, ran to EOF.
   Browsers silently auto-closed it, so it "worked" by accident, but it was
   invalid HTML. Content preserved exactly, just properly closed now. ===== */
/* Mobile only: match Category page horizontal content gutter (8px).
   Do not alter desktop layout. */
@media (max-width:700px){
  .layout{
    padding-left:8px!important;
    padding-right:8px!important;
  }
  .news-area{
    padding-left:0!important;
    padding-right:0!important;
  }
  .big-news-body{
    padding-left:0!important;
    padding-right:0!important;
  }
  .home-top-news,
  .home-section{
    padding-left:0!important;
    padding-right:0!important;
  }
  .home-top-news .card,
  .home-section .card,
  .home-list .card,
  .card{
    padding-left:0!important;
    padding-right:0!important;
  }
}

/* ===== From partials/v49-public-polish.blade.php (small separate include,
   folded in here for consistency — same static-CSS-in-a-page-template
   pattern as everything else moved above) ===== */
@media(min-width:901px){
 .public-left{border-right:1px solid #eee!important;padding-right:10px!important}
 .public-right{border-left:1px solid #eee!important;padding-left:12px!important}
 .left-category{border-right:1px solid #eee!important;padding-right:12px!important}
 .right-sidebar{border-left:1px solid #eee!important;padding-left:12px!important}
}
.card,.category-card,.home-secondary,.related-card{transition:background-color .16s ease}
.card:hover,.category-card:hover,.home-secondary:hover,.related-card:hover{background:#fafafa!important}


/* =====================================================
   OTHER PAGE TEMPLATES — category, videos, search, live, rashifal
   (x3), election, static-page, opinion-detail, state-city.
   Same reason as home/article: these were separate <style> blocks
   inline in each template, repeated raw on every page load with no
   browser caching. All were fully static (no Blade dynamic values),
   order preserved within each file.
   ===================================================== */


/* ===== category.blade.php ===== */

.category-list{display:flex;flex-direction:column;background:var(--site-surface,#fff)}
.category-card{position:relative;background:var(--site-surface,#fff);padding:15px 0;display:flex;border-top:1px solid var(--site-border,#e5e5e5)}
.category-card-main{width:100%;display:flex;flex-direction:row;gap:12px;align-items:stretch;min-width:0}
.category-card-body{order:1;flex:1;min-width:0;display:flex;flex-direction:column}
.category-card-title{display:block;font-size:21px;font-weight:800;line-height:1.43;color:var(--site-text,#222);margin:0}
.category-card-excerpt{font-size:12px;color:var(--site-muted,#777);line-height:1.5;margin-top:5px}
.category-card-badge{align-self:flex-start;color:var(--site-text,#333);background:transparent;border:1px solid var(--site-border,#ddd);border-radius:999px;font-size:11px;line-height:1;padding:5px 10px;margin-top:9px}
.category-card-image{width:130px;height:84px;border-radius:3px;overflow:hidden;background:var(--site-border,#eee);display:flex;align-items:center;justify-content:center;font-size:28px}
.category-card-image img{width:100%;height:100%;object-fit:cover;display:block}.category-card-featured{order:3}
.category-card-live{display:inline-flex;align-items:center;width:max-content;background:#c62828;color:#fff;border-radius:4px;padding:3px 7px;font-size:10px;font-weight:900;line-height:1;margin:0 6px 0 0;animation:catLiveBlink 1s steps(2,end) infinite;vertical-align:middle}.category-card-featured{display:inline-flex;align-items:center;width:max-content;color:#c62828;font-size:11px;font-weight:900;line-height:1;padding:3px 0;margin-top:7px}.category-card-image-wrap{order:2;width:130px;flex:0 0 130px;display:flex;flex-direction:column;align-items:stretch}.category-card-image{width:130px;height:84px}
@keyframes catLiveBlink{50%{opacity:.45}}
@media(max-width:700px){
 .category-card{padding:14px 0}.category-card-main{gap:9px}.category-card-title{font-size:21px;line-height:1.44;font-weight:800}.category-card-image-wrap{width:112px;flex:0 0 112px}.category-card-image{width:112px;height:76px}.category-card-excerpt{font-size:11px}.category-card-badge{font-size:10px;padding:4px 8px;margin-top:8px}
}
@media(max-width:480px){.category-card-title{font-size:20px}.category-card-image-wrap{width:108px;flex-basis:108px}.category-card-image{width:108px;height:72px}}

@media(max-width:700px){
 .category-card{padding:12px 0}.category-card-main{gap:10px}.category-card-title{font-size:19px;line-height:1.45;font-weight:800;letter-spacing:0}.category-card-image-wrap{width:112px;flex:0 0 112px}.category-card-image{width:112px;height:76px}.category-card-excerpt{font-size:12px}.category-card-badge{font-size:10px;padding:5px 9px;margin-top:9px}
}
@media(max-width:480px){.category-card-title{font-size:18px;line-height:1.45}.category-card-image-wrap{width:108px;flex-basis:108px}.category-card-image{width:108px;height:72px}}

/* V28 — category mobile layout safety */
@media(max-width:700px){
  .category-card{width:100%;max-width:100%;min-width:0}
  .category-card-main{min-width:0;width:100%}
  .category-card-body{min-width:0}
  .category-card-title{font-size:19px!important;line-height:1.45!important;font-weight:800!important}
  .category-card-image{width:112px!important;height:76px!important;flex:0 0 112px!important}
}
@media(max-width:480px){
  .category-card-title{font-size:18px!important;line-height:1.45!important}
  .category-card-image{width:108px!important;height:72px!important;flex-basis:108px!important}
}

@media(max-width:700px){.category-card-title{font-size:19px!important;line-height:1.45!important;font-weight:800!important}}
@media(max-width:480px){.category-card-title{font-size:18px!important;line-height:1.45!important}}

/* V46 — Category cards match homepage card rhythm exactly. */
.public-main .category-list{width:100%!important;}
.public-main .category-card{padding:12px 8px!important;border-top:1px solid #eee!important;background:#fff!important;}
.public-main .category-card-main{display:flex!important;gap:12px!important;align-items:stretch!important;}
.public-main .category-card-body{order:1!important;display:flex!important;flex-direction:column!important;min-width:0!important;}
.public-main .category-card-title{display:block!important;font-size:20px!important;line-height:1.45!important;font-weight:550!important;color:#222!important;margin:0!important;}
.public-main .category-card-live{display:inline-flex!important;align-items:center!important;background:#ef5350!important;color:#fff!important;border-radius:4px!important;padding:4px 8px!important;font-size:11px!important;font-weight:900!important;line-height:1!important;margin:0 6px 0 0!important;vertical-align:middle!important;animation:catLiveBlink 1s steps(2,end) infinite!important;}
.public-main .category-card-meta{display:flex!important;align-items:center!important;gap:8px!important;margin-top:7px!important;min-height:18px!important;flex-wrap:wrap!important;}
.public-main .category-card-category{display:inline-flex!important;align-items:center!important;border:1px solid #ddd!important;border-radius:999px!important;padding:4px 9px!important;background:#fff!important;color:#555!important;font-size:10px!important;line-height:1!important;}
.public-main .category-card-featured-inline{display:inline-flex!important;align-items:center!important;color:#f57c00!important;font-size:11px!important;font-weight:900!important;line-height:1!important;}
.public-main .category-card-image-wrap{order:2!important;width:144px!important;min-width:144px!important;flex:0 0 144px!important;display:block!important;}
.public-main .category-card-image{width:144px!important;height:108px!important;border-radius:4px!important;overflow:hidden!important;background:transparent!important;display:block!important;}
.public-main .category-card-image img{width:100%!important;height:100%!important;object-fit:contain!important;display:block!important;background:transparent!important;}
@media(max-width:700px){
 .public-main .category-card{padding:10px 8px!important}
 .public-main .category-card-title{font-size:19px!important;line-height:1.45!important;font-weight:550!important}
 .public-main .category-card-image-wrap,.public-main .category-card-image{width:112px!important;min-width:112px!important;flex-basis:112px!important;height:84px!important}
 .public-main .category-card-image img{width:112px!important;height:84px!important}
 .public-main .category-card-main{gap:10px!important}
}
@media(max-width:480px){
 .public-main .category-card-title{font-size:18px!important}
 .public-main .category-card-image-wrap,.public-main .category-card-image{width:108px!important;min-width:108px!important;flex-basis:108px!important;height:81px!important}
 .public-main .category-card-image img{width:108px!important;height:81px!important}
}

/* V47 — Category cards use the same markup/rhythm as homepage cards. */
.public-main .category-list{width:100%!important;}
.public-main .category-home-card{background:#fff!important;border-top:1px solid #eee!important;padding:12px 8px!important;}
.public-main .category-home-card .card-main{display:flex!important;gap:12px!important;align-items:stretch!important;min-width:0!important;}
.public-main .category-home-card .card-body{order:1!important;flex:1!important;min-width:0!important;display:flex!important;flex-direction:column!important;}
.public-main .category-home-card .card-title{display:block!important;width:100%!important;margin:0!important;color:#222!important;font-size:20px!important;font-weight:550!important;line-height:1.45!important;}
.public-main .category-home-card .card-badge{display:flex!important;align-items:center!important;gap:8px!important;flex-wrap:wrap!important;width:max-content!important;max-width:100%!important;margin-top:8px!important;border:0!important;background:transparent!important;padding:0!important;}
.public-main .category-home-card .card-category-link{display:inline-flex!important;align-items:center!important;border:1px solid #ddd!important;border-radius:999px!important;padding:4px 9px!important;background:#fff!important;color:#555!important;font-size:10px!important;line-height:1!important;}
.public-main .category-home-card .card-featured-inline{display:inline-flex!important;align-items:center!important;color:#f57c00!important;font-size:11px!important;font-weight:900!important;line-height:1!important;}
.public-main .category-home-card .card-whatsapp-share{border:0!important;background:transparent!important;color:#16b957!important;font:700 10px/1 inherit!important;padding:0!important;cursor:pointer!important;}
.public-main .category-home-card .card-media{order:2!important;width:144px!important;min-width:144px!important;flex:0 0 144px!important;display:block!important;}
.public-main .category-home-card .card-image{width:144px!important;height:108px!important;border-radius:4px!important;overflow:hidden!important;background:transparent!important;display:block!important;}
.public-main .category-home-card .card-image img{width:100%!important;height:100%!important;object-fit:contain!important;background:transparent!important;display:block!important;}
@media(max-width:700px){
 .public-main .category-home-card{padding:10px 8px!important}.public-main .category-home-card .card-main{gap:10px!important}.public-main .category-home-card .card-title{font-size:19px!important;line-height:1.45!important;font-weight:550!important}.public-main .category-home-card .card-media,.public-main .category-home-card .card-image{width:112px!important;min-width:112px!important;flex-basis:112px!important;height:84px!important}.public-main .category-home-card .card-image img{width:112px!important;height:84px!important}
}
@media(max-width:480px){.public-main .category-home-card .card-title{font-size:18px!important}.public-main .category-home-card .card-media,.public-main .category-home-card .card-image{width:108px!important;min-width:108px!important;flex-basis:108px!important;height:81px!important}.public-main .category-home-card .card-image img{width:108px!important;height:81px!important}}

.kh-highlighter-badge{display:inline-flex;align-items:center;vertical-align:middle;background:var(--kh-badge-color,#c62828);color:#fff!important;border-radius:4px;padding:3px 7px;margin:0 6px 3px 0;font-size:1em;font-weight:900;line-height:1;animation:khHighlighterBlink 1s steps(2,end) infinite;white-space:nowrap;}
@keyframes khHighlighterBlink{50%{opacity:.3}}

/* CATEGORY PAGE ONLY — do not alter homepage/article navigation. */
@media(max-width:900px){
  body .public-mobile-nav .category-link .category-icon,
  body .mobile-category-nav .category-link .category-icon{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:auto!important;
    min-width:0!important;
    flex:0 0 auto!important;
    font-size:15px!important;
    line-height:1!important;
  }
}

/* CATEGORY PAGE ONLY — restore the same LIVE badge behavior as homepage. */
.public-main .category-home-card .home-live-badge{
  display:inline-flex!important;
  align-items:center!important;
  width:max-content!important;
  max-width:max-content!important;
  background:#c62828!important;
  color:#fff!important;
  border-radius:4px!important;
  padding:3px 8px!important;
  font-size:11px!important;
  font-weight:900!important;
  margin:0 6px 0 0!important;
  line-height:1.1!important;
  animation:khLiveBlink 1s steps(2,end) infinite!important;
  vertical-align:middle!important;
}
.public-main .category-home-card .home-live-badge::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:#fff;
  margin-right:5px;
  flex:0 0 6px;
}
@keyframes khLiveBlink{50%{opacity:.28}}


/* ===== videos.blade.php ===== */

.video-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 18px}.video-card{display:block;padding:12px 0;border-bottom:1px solid var(--site-border,#e5e5e5)}.thumb-wrap{position:relative;overflow:hidden;border-radius:9px;background:#111;aspect-ratio:16/9}.thumb{width:100%;height:100%;object-fit:cover;display:block}.play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:48px;height:48px;border-radius:50%;display:grid;place-items:center;background:rgba(0,0,0,.75);color:#fff;font-size:20px;box-shadow:0 2px 8px rgba(0,0,0,.3)}.video-title{font-size:17px;font-weight:900;line-height:1.4;margin-top:8px}.video-meta{font-size:11px;color:var(--site-muted,#777);margin-top:4px}.pagination{margin-top:15px}@media(max-width:700px){.video-grid{grid-template-columns:1fr}.video-title{font-size:15px}}


/* ===== search.blade.php ===== */

.search-form{display:flex;gap:8px;margin-bottom:14px}.search-form input{flex:1;min-width:0;padding:10px 12px;border:1px solid var(--site-border,#ddd);border-radius:6px;background:var(--site-surface,#fff);color:var(--site-text,#111)}.search-form button{border:0;border-radius:6px;padding:0 18px;background:var(--site-primary,#e53935);color:#fff;font-weight:800}
.search-card{width:100%;display:flex;flex-direction:row;gap:14px;padding:12px 8px;border-top:1px solid var(--site-border,#e5e5e5);border-bottom:0;background:#fff;box-sizing:border-box;min-width:0}.search-card>div:first-child{order:1;flex:1;min-width:0}.search-card>div:last-child{order:2;width:130px;min-width:130px;flex:0 0 130px}.search-title{font-size:16px;font-weight:700;line-height:1.42;color:#222}.search-excerpt{font-size:12px;color:var(--site-muted,#777);margin-top:5px;line-height:1.5}.search-thumb{display:block;width:130px;height:82px;object-fit:cover;border-radius:2px}
@media(max-width:700px){.search-card{gap:10px;padding:10px 8px}.search-title{font-size:19px;line-height:1.45;font-weight:550}.search-card>div:last-child,.search-thumb{width:112px;min-width:112px;flex-basis:112px;height:76px}}@media(max-width:480px){.search-title{font-size:18px}.search-card>div:last-child,.search-thumb{width:108px;min-width:108px;flex-basis:108px;height:72px}}


/* ===== live/index.blade.php ===== */

.public-main .category-list{width:100%!important;}
.public-main .category-home-card{background:#fff!important;border-top:1px solid #eee!important;padding:12px 8px!important;}
.public-main .category-home-card .card-main{display:flex!important;gap:12px!important;align-items:stretch!important;min-width:0!important;width:100%!important;}
.public-main .category-home-card .card-body{order:1!important;flex:1!important;min-width:0!important;display:flex!important;flex-direction:column!important;}
.public-main .category-home-card .card-title{display:block!important;width:100%!important;margin:0!important;padding:0!important;color:#222!important;font-size:20px!important;font-weight:550!important;line-height:1.45!important;text-decoration:none!important;overflow-wrap:anywhere!important;}
.public-main .category-home-card .card-badge{display:flex!important;align-items:center!important;gap:8px!important;flex-wrap:wrap!important;width:max-content!important;max-width:100%!important;margin-top:8px!important;padding:0!important;border:0!important;background:transparent!important;}
.public-main .category-home-card .card-category-link{display:inline-flex!important;align-items:center!important;border:1px solid #ddd!important;border-radius:999px!important;padding:4px 9px!important;background:#fff!important;color:#555!important;font-size:10px!important;line-height:1!important;text-decoration:none!important;}
.public-main .category-home-card .card-featured-inline{display:inline-flex!important;align-items:center!important;color:#f57c00!important;font-size:11px!important;font-weight:900!important;line-height:1!important;}
.public-main .category-home-card .card-whatsapp-share{border:0!important;background:transparent!important;color:#16b957!important;font:700 10px/1 inherit!important;padding:0!important;cursor:pointer!important;}
.public-main .category-home-card .card-media{order:2!important;width:144px!important;min-width:144px!important;flex:0 0 144px!important;display:block!important;}
.public-main .category-home-card .card-image{width:144px!important;height:108px!important;border-radius:4px!important;overflow:hidden!important;background:transparent!important;display:block!important;}
.public-main .category-home-card .card-image img{width:100%!important;height:100%!important;object-fit:cover!important;background:transparent!important;display:block!important;}
.public-main .category-home-card .home-live-badge{display:inline-flex!important;align-items:center!important;width:max-content!important;max-width:max-content!important;background:#c62828!important;color:#fff!important;border-radius:4px!important;padding:3px 8px!important;font-size:11px!important;font-weight:900!important;line-height:1.1!important;margin:0 6px 0 0!important;vertical-align:middle!important;animation:khLiveBlink 1s steps(2,end) infinite!important;}
.public-main .category-home-card .kh-highlighter-badge{display:inline-flex!important;align-items:center!important;vertical-align:middle!important;background:var(--kh-badge-color,#c62828)!important;color:#fff!important;border-radius:4px!important;padding:3px 7px!important;margin:0 6px 3px 0!important;font-size:1em!important;font-weight:900!important;line-height:1!important;animation:khHighlighterBlink 1s steps(2,end) infinite!important;white-space:nowrap!important;}
@keyframes khLiveBlink{50%{opacity:.28}}
@keyframes khHighlighterBlink{50%{opacity:.3}}
@media(max-width:700px){
 .public-main .category-home-card{padding:10px 8px!important;}
 .public-main .category-home-card .card-main{gap:10px!important;}
 .public-main .category-home-card .card-title{font-size:19px!important;line-height:1.45!important;font-weight:550!important;}
 .public-main .category-home-card .card-media,.public-main .category-home-card .card-image{width:112px!important;min-width:112px!important;flex-basis:112px!important;height:84px!important;}
 .public-main .category-home-card .card-image img{width:112px!important;height:84px!important;}
}
@media(max-width:480px){
 .public-main .category-home-card .card-title{font-size:18px!important;}
 .public-main .category-home-card .card-media,.public-main .category-home-card .card-image{width:108px!important;min-width:108px!important;flex-basis:108px!important;height:81px!important;}
 .public-main .category-home-card .card-image img{width:108px!important;height:81px!important;}
}


/* ===== rashifal.blade.php ===== */

.rashifal-page-head{border-top:2px solid var(--site-primary,#e53935);padding:10px 0 12px;border-bottom:1px solid var(--site-border,#ddd);margin-bottom:4px}
        .rashifal-page-head h1{font-size:25px;line-height:1.35;font-weight:900;margin:0;color:var(--site-text,#222)}
        .rashifal-page-head p{font-size:13px;line-height:1.6;color:var(--site-muted,#666);margin:5px 0 0}
        .rashifal-list{display:grid;grid-template-columns:1fr 1fr;gap:0 18px}
        .rashifal-card{display:grid;grid-template-columns:105px minmax(0,1fr) 34px;gap:11px;padding:13px 0;border-bottom:1px solid var(--site-border,#e5e5e5);min-width:0;position:relative}
        .rashifal-card-link{text-decoration:none!important;display:contents}.rashifal-card:hover .rashifal-card-title{color:var(--site-primary,#e53935)}
        .rashifal-share-btn{width:34px;height:34px;border:0;border-radius:50%;background:#25d366;color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;align-self:start;box-shadow:0 2px 7px rgba(0,0,0,.12);font-size:17px}.rashifal-share-btn:hover{transform:scale(1.05)}
        .rashifal-card-img{width:105px;height:76px;object-fit:contain;border-radius:8px;border:1px solid var(--site-border,#ddd);background:#fff}
        .rashifal-card-title{font-size:16px;font-weight:900;line-height:1.35;color:var(--site-text,#222)}
        .rashifal-card-copy{font-size:12px;line-height:1.55;color:var(--site-muted,#555);margin-top:4px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}
        .rashifal-card-meta{font-size:10px;color:var(--site-muted,#888);margin-top:5px}
        .rashifal-card-more{display:inline-block;font-size:10px;font-weight:900;color:#f57c00;margin-top:4px}
        .rashifal-astrologer{display:flex;align-items:center;gap:13px;margin:10px 0 14px;padding:12px 14px;border:1px solid #f0dfca;border-radius:10px;background:linear-gradient(135deg,#fffaf4,#fff);box-shadow:0 3px 12px rgba(0,0,0,.04)}
        .rashifal-astrologer img{width:58px;height:58px;border-radius:50%;object-fit:cover;border:2px solid #f2c48e;background:#fff;flex:0 0 58px}
        .rashifal-astrologer-label{font-size:10px;font-weight:900;color:#f57c00;text-transform:uppercase;letter-spacing:.4px}.rashifal-astrologer-name{font-size:15px;font-weight:900;color:var(--site-text,#222);line-height:1.3}.rashifal-astrologer-designation{font-size:11px;color:var(--site-muted,#666);margin-top:2px}.rashifal-astrologer-bio{font-size:11px;line-height:1.5;color:var(--site-muted,#666);margin-top:4px}
        @media(max-width:900px){.rashifal-list{grid-template-columns:1fr}}
        @media(max-width:700px){.rashifal-page-head h1{font-size:21px}.rashifal-card{grid-template-columns:92px minmax(0,1fr) 32px;gap:9px}.rashifal-card-img{width:92px;height:68px}.rashifal-card-title{font-size:15px}.rashifal-card-copy{font-size:11px}}


/* ===== rashifal-detail.blade.php ===== */

.rashi-head{border-top:2px solid var(--site-primary,#e53935);padding:8px 0 0;border-bottom:1px solid var(--site-border,#ddd)}
.rashi-top{display:flex;justify-content:space-between;gap:12px;align-items:center}
.rashi-back{font-size:12px;color:var(--site-primary,#e53935);font-weight:900;text-decoration:none;line-height:1.25}
.rashi-select{border:1px solid var(--site-border,#ddd);background:var(--site-surface,#fff);color:var(--site-text,#222);border-radius:7px;padding:7px 10px;font-size:12px;font-weight:700;min-width:135px;height:34px}
.rashi-title{font-size:25px;line-height:1.3;font-weight:900;margin:7px 0 9px;color:var(--site-text,#222)}
.rashi-tabs{display:flex;align-items:flex-end;gap:0}
.rashi-tab{padding:10px 16px;font-size:13px;font-weight:900;color:var(--site-muted,#777);text-decoration:none;border-bottom:2px solid transparent;white-space:nowrap}
.rashi-tab.active{color:var(--site-text,#222);border-bottom-color:var(--site-text,#222)}
.rashi-astro{margin:12px 0 10px;padding:10px 12px;border:1px solid #f0d9bd;border-radius:10px;background:linear-gradient(90deg,rgba(255,248,239,.95),rgba(255,255,255,.95));display:flex;gap:12px;align-items:center}
.rashi-astro img{width:54px;height:54px;border-radius:50%;object-fit:cover;border:1px solid #e7b77d;flex:0 0 auto}
.rashi-astro-label{font-size:10px;color:#f57c00;font-weight:800}.rashi-astro-name{font-size:15px;font-weight:900}.rashi-astro-designation{font-size:11px;color:#f57c00}.rashi-astro-bio{font-size:10px;color:var(--site-muted,#777);margin-top:2px}
.rashi-hero{display:grid;grid-template-columns:180px minmax(0,1fr);gap:15px;padding:12px 0;border-bottom:1px solid var(--site-border,#ddd)}
.rashi-hero img{width:180px;height:135px;object-fit:contain;border-radius:9px;border:1px solid var(--site-border,#ddd);background:#fff}
.rashi-meta{font-size:12px;color:var(--site-muted,#777);margin-top:5px;line-height:1.7}
.rashi-content{font-size:17px;line-height:1.9;padding:15px 0;border-bottom:1px solid var(--site-border,#ddd)}
.rashi-content p{margin:0 0 12px}.rashi-content h2,.rashi-content h3{line-height:1.4;margin:16px 0 8px}.rashi-content ul,.rashi-content ol{padding-left:24px;margin:8px 0 14px}.rashi-content img{max-width:100%;height:auto;border-radius:8px}
@media(max-width:700px){.rashi-top{align-items:flex-start}.rashi-back{font-size:11px}.rashi-select{min-width:118px}.rashi-title{font-size:21px}.rashi-tab{padding:9px 10px;font-size:12px}.rashi-hero{grid-template-columns:105px minmax(0,1fr);gap:10px}.rashi-hero img{width:105px;height:90px}.rashi-content{font-size:16px}}


/* ===== rashifal-yearly.blade.php ===== */

.rashifal-yearly-page .yr-head{border-top:2px solid var(--site-primary,#e53935);border-bottom:1px solid var(--site-border,#ddd);padding:10px 0 0}.rashifal-yearly-page .yr-top{display:flex;justify-content:space-between;gap:12px;align-items:center;margin-bottom:6px}.rashifal-yearly-page .yr-back{font-size:11px;color:var(--site-primary,#e53935);font-weight:800;text-decoration:none}.rashifal-yearly-page .yr-select{border:1px solid var(--site-border,#ddd);background:var(--site-surface,#fff);color:var(--site-text,#222);border-radius:7px;padding:7px 10px;font-size:12px;font-weight:700;min-width:135px}.rashifal-yearly-page .yr-title{display:block!important;width:100%!important;font-size:26px!important;line-height:1.25!important;font-weight:900!important;margin:4px 0 8px!important;color:var(--site-text,#222)!important}.rashifal-yearly-page .yr-tabs{display:flex!important;gap:0!important;margin:0!important;overflow-x:auto}.rashifal-yearly-page .yr-tab{display:block!important;flex:0 0 auto!important;padding:9px 16px!important;font-size:13px!important;font-weight:900!important;color:var(--site-muted,#777)!important;text-decoration:none!important;border-bottom:2px solid transparent!important;white-space:nowrap}.rashifal-yearly-page .yr-tab.active{color:var(--site-text,#222)!important;border-bottom-color:var(--site-text,#222)!important}.rashifal-yearly-page .astro{display:flex;align-items:center;gap:12px;margin:10px 0;padding:10px 12px;border:1px solid #f0d9bd;border-radius:10px;background:linear-gradient(100deg,#fff8ef,#fff)}.rashifal-yearly-page .astro img{width:56px;height:56px;border-radius:50%;object-fit:cover;border:1px solid #e7b77d}.rashifal-yearly-page .astro-label{font-size:10px;color:#f57c00;font-weight:800}.rashifal-yearly-page .astro-name{font-size:15px;font-weight:900;color:var(--site-text,#222)}.rashifal-yearly-page .astro-designation{font-size:11px;color:#f57c00}.rashifal-yearly-page .astro-bio{font-size:10px;color:var(--site-muted,#777);line-height:1.4}.rashifal-yearly-page .yr-content{font-size:17px;line-height:1.9;padding:14px 0;color:var(--site-text,#222)}.rashifal-yearly-page .yr-content p{margin:0 0 12px}.rashifal-yearly-page .yr-content h2,.rashifal-yearly-page .yr-content h3{margin:16px 0 8px;line-height:1.4}.rashifal-yearly-page .yr-content ul,.rashifal-yearly-page .yr-content ol{padding-left:24px}.rashifal-yearly-page .yr-content img{max-width:100%;height:auto;border-radius:8px}@media(max-width:700px){.rashifal-yearly-page .yr-title{font-size:21px!important}.rashifal-yearly-page .yr-tab{padding:9px 11px!important;font-size:12px!important}.rashifal-yearly-page .yr-content{font-size:16px}.rashifal-yearly-page .yr-top{align-items:flex-start}}


/* ===== election.blade.php ===== */

.election-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.e-card{border:1px solid var(--site-border,#ddd);border-radius:8px;padding:12px;display:flex;gap:12px;background:var(--site-surface,#fff)}.e-card img,.e-avatar{width:70px;height:70px;border-radius:50%;object-fit:cover;background:#eee;display:grid;place-items:center;flex:0 0 70px}.e-name{font-size:16px;font-weight:900}.e-party,.e-status,.e-detail{font-size:11px;color:var(--site-muted,#777);margin-top:3px}.e-votes{font-size:15px;font-weight:900;margin-top:5px}@media(max-width:700px){.election-list{grid-template-columns:1fr}}


/* ===== static-page.blade.php ===== */

.static-content{font-size:16px;line-height:1.9;white-space:pre-line;padding:10px 0 20px}.static-content h2{font-size:20px}


/* ===== opinion-detail.blade.php ===== */

.op-detail{border-top:2px solid var(--site-primary,#e53935)}.op-detail h1{font-size:25px;line-height:1.4;margin:10px 0}.op-author{display:flex;align-items:center;gap:12px;padding:12px 0;border-bottom:1px solid var(--site-border,#ddd)}.op-author img{width:58px;height:58px;border-radius:50%;object-fit:cover;border:1px solid var(--site-border,#ddd)}.op-author-name{font-weight:900;font-size:15px}.op-author-meta{font-size:11px;color:var(--site-muted,#777)}.op-excerpt{font-size:15px;line-height:1.8;padding:14px 0;border-bottom:1px solid var(--site-border,#ddd);font-weight:600}.op-content{font-size:17px;line-height:1.95;padding:15px 0;white-space:pre-line}@media(max-width:700px){.op-detail h1{font-size:20px}.op-content{font-size:16px}}


/* ===== state-city.blade.php ===== */

*{box-sizing:border-box}.sc-body{margin:0;background:#fff;color:#181818;font-family:'Noto Sans Devanagari','Segoe UI',Arial,sans-serif}.sc-shell{min-height:100vh;background:#fff}.sc-header{height:64px;border-bottom:1px solid #e6e6e6;display:flex;align-items:center;gap:14px;padding:0 28px;position:sticky;top:0;background:#fff;z-index:20}.sc-back{border:0;background:none;font-size:34px;line-height:1;cursor:pointer;color:#222;padding:0}.sc-header-title{font-size:22px;font-weight:900}.sc-container{max-width:850px;margin:0 auto;padding:18px 24px 100px}.sc-heading{font-size:21px;font-weight:900;margin:8px 0 18px}.sc-search{display:flex;align-items:center;gap:10px;background:#efefef;border-radius:8px;padding:12px 16px;margin:0 0 20px}.sc-search input{border:0;outline:0;background:transparent;width:100%;font:inherit;font-size:17px}.sc-state-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px 30px}.sc-state{border:0;background:transparent;padding:0;text-align:center;cursor:pointer;color:#222;font:inherit}.sc-state-photo{width:150px;height:150px;border-radius:50%;margin:0 auto 10px;position:relative;overflow:hidden;border:2px solid #e6e6e6;background:linear-gradient(135deg,#e9f7ff,#fff0d4);display:grid;place-items:center}.sc-state-photo img{width:100%;height:100%;object-fit:cover;display:block}.sc-state-fallback{font-size:46px;font-weight:900;color:#f39a16}.sc-check{position:absolute;right:0;top:4px;width:34px;height:34px;border-radius:50%;background:#fff;border:1px solid #ddd;display:grid;place-items:center;font-size:20px}.sc-state.selected .sc-state-photo{border-color:#f39a16}.sc-state.selected .sc-check{background:#f39a16;color:#fff;border-color:#f39a16}.sc-state-name{font-size:19px;font-weight:900}.sc-city-view{display:none}.sc-city-view.open{display:block}.sc-city-back{border:0;background:none;color:#222;font-size:16px;font-weight:800;padding:0;margin:0 0 14px;cursor:pointer}.sc-city-title{font-size:22px;font-weight:900;margin:0 0 16px}.sc-city-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.sc-city{min-height:54px;display:flex;align-items:center;justify-content:center;padding:10px 16px;border:1px solid #ddd;border-radius:999px;background:#fff;color:#222;font-size:17px;font-weight:800;text-decoration:none}.sc-city:hover{border-color:#f39a16;color:#f39a16}.sc-bottom{position:fixed;left:0;right:0;bottom:0;background:#fff;border-top:1px solid #ddd;padding:12px 18px;z-index:30}.sc-bottom button{display:block;width:min(850px,100%);margin:auto;background:#f39a16;color:#fff;border:0;border-radius:10px;padding:14px 18px;font-size:19px;font-weight:900;cursor:pointer}.sc-empty{font-size:15px;color:#777}.site-dark .sc-body,.site-dark .sc-shell,.site-dark .sc-header,.site-dark .sc-bottom{background:#111315;color:#f2f4f7;border-color:#30353b}.site-dark .sc-back,.site-dark .sc-state,.site-dark .sc-city-back,.site-dark .sc-city-title,.site-dark .sc-city{color:#f2f4f7}.site-dark .sc-city{background:#191c20;border-color:#30353b}.site-dark .sc-search{background:#22272d}.site-dark .sc-search input{color:#f2f4f7}
@media(max-width:700px){.sc-header{height:56px;padding:0 18px}.sc-header-title{font-size:18px}.sc-container{padding:15px 16px 92px}.sc-heading{font-size:18px;margin:5px 0 17px}.sc-state-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:26px 8px}.sc-state-photo{width:96px;height:96px}.sc-state-name{font-size:15px}.sc-state-fallback{font-size:30px}.sc-check{width:28px;height:28px;font-size:17px}.sc-city-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:11px}.sc-city{font-size:15px;min-height:50px}.sc-bottom button{font-size:18px;padding:13px}}


/* =====================================================
   RIGHT SIDEBAR — moved out of partials/website-right-sidebar.blade.php
   (poll, opinion, video, rashifal-snippet, rashifal-picker-popup styles).
   One small dynamic rule (sidebar widget order, admin-configurable)
   stayed inline in that file since it needs Blade data — everything
   else here was fully static. Order preserved.
   ===================================================== */
.website-tool-card{background:#fff;border:1px solid #e8e8e8;border-radius:8px;padding:12px;margin-bottom:15px;box-shadow:0 1px 4px rgba(0,0,0,.04)}
.website-tool-title{display:flex;align-items:center;gap:7px;font-size:16px;font-weight:800;border-bottom:2px solid #c62828;padding-bottom:9px;margin-bottom:10px}
.poll-question{font-size:14px;font-weight:700;line-height:1.5;margin-bottom:10px}.poll-form{margin:0}.poll-option{display:flex;align-items:center;gap:7px;border:1px solid #ddd;border-radius:7px;padding:8px;margin:7px 0;cursor:pointer;font-size:13px}.poll-option input{margin:0}.poll-submit{border:0;background:#c62828;color:#fff;border-radius:6px;padding:8px 13px;font-weight:700;cursor:pointer;width:100%;margin-top:5px}.poll-result{margin:8px 0}.poll-result-label{display:flex;justify-content:space-between;font-size:12px;margin-bottom:4px}.poll-bar{height:7px;background:#eee;border-radius:20px;overflow:hidden}.poll-bar>span{display:block;height:100%;background:#c62828}.poll-total{font-size:11px;color:#777;margin-top:8px}

.opinion-item{display:flex;gap:9px;padding:10px 0;border-bottom:1px solid #eee}.opinion-item:last-child{border-bottom:0}.opinion-avatar{width:46px;height:46px;border-radius:50%;object-fit:cover;background:#f1f1f1;flex:0 0 46px}.opinion-heading{font-size:13px;font-weight:800;line-height:1.45;color:#222}.opinion-author{font-size:11px;color:#777;margin-top:3px}.opinion-excerpt{font-size:11px;color:#555;margin-top:3px;line-height:1.5}

.right-sidebar{width:100%;min-width:0}.sidebar-widget-stack{display:flex;flex-direction:column;min-width:0;width:100%;contain:layout style}.right-sidebar .side-box{width:100%;min-width:0}.side-title{display:block;font-size:16px;font-weight:900;border-bottom:2px solid var(--site-primary,#e53935);padding-bottom:8px;margin-bottom:10px;line-height:1.35}.google-box{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:8px;font-size:13px;line-height:1.5;font-weight:800}.google-follow-link{display:inline-flex;flex:0 0 auto}.google-follow-image{display:block;height:44px;width:auto;max-width:150px;object-fit:contain;border-radius:6px}.video-box{display:block;width:100%;overflow:hidden}.video-inner{width:100%;min-width:0;aspect-ratio:16/9;border-radius:8px;background:#111;display:grid;place-items:center;position:relative;overflow:hidden}.video-inner img{width:100%;height:100%;object-fit:cover;display:block}.video-subtitle{font-size:12px;line-height:1.5;color:var(--site-muted,#777);padding:10px}.play-button{width:42px;height:42px;border-radius:50%;background:rgba(0,0,0,.78);color:#fff;display:grid;place-items:center;font-size:17px;z-index:2}.rashi-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:6px}.rashi-item{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:58px;border:1px solid var(--site-border,#eee);border-radius:6px;font-size:11px;gap:3px}.rashi-item .sym{font-size:18px}.rashifal-widget{padding:0;overflow:hidden}.rashifal-select-row{display:flex;align-items:center;justify-content:space-between;gap:8px;padding:9px 10px;background:#f5f5f5;border-bottom:1px solid #ddd}.rashifal-select-row label{font-size:12px;font-weight:800;color:#666}.rashifal-select-button{border:0;background:transparent;font:inherit;font-size:12px;font-weight:900;color:#555;display:inline-flex;align-items:center;gap:6px;cursor:pointer;padding:3px 0}.rashifal-select-button .chevron{font-size:11px;color:#777}.rashifal-widget-head{padding:10px 11px 4px;font-size:15px;font-weight:900}.rashifal-sign{padding:0 11px;font-size:15px;font-weight:900}.rashifal-sign span{font-size:12px;color:#777;font-weight:700}.rashifal-copy{padding:7px 11px 0;font-size:12px;line-height:1.55;color:#555}.rashifal-meta{padding:7px 11px;font-size:10px;color:#707070}.rashifal-more{display:block;padding:7px 11px 11px;color:#f57c00!important;font-size:11px;font-weight:900}
.rashifal-snippet-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;padding:0 8px 9px}
.rashifal-snippet{display:block;min-width:0;padding:7px 7px 6px;border:1px solid #ececec;border-radius:7px;background:#fff;text-decoration:none!important;transition:border-color .15s,box-shadow .15s}
.rashifal-snippet:hover{border-color:#f3c37c;box-shadow:0 2px 8px rgba(0,0,0,.05)}
.rashifal-snippet-top{display:flex;align-items:center;gap:5px;min-width:0}
.rashifal-snippet-top img{width:25px!important;height:25px!important;object-fit:contain!important;flex:0 0 27px}
.rashifal-snippet-top strong{font-size:11px!important;line-height:1.2!important;color:#222!important;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rashifal-snippet-copy{font-size:10px;line-height:1.45;color:#555;margin-top:5px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;min-height:29px}
.rashifal-snippet-more{display:block;margin-top:4px;color:#f57c00;font-size:9px;font-weight:900;line-height:1.2}
.rashifal-all-button{font-size:10px!important;color:#f57c00!important;font-weight:900;text-decoration:none!important;white-space:nowrap}
@media(max-width:700px){.rashifal-snippet-grid{gap:5px;padding-left:6px;padding-right:6px}.rashifal-snippet{padding:6px}.rashifal-snippet-top img{width:24px!important;height:24px!important;flex-basis:24px}.rashifal-snippet-top strong{font-size:10px!important}.rashifal-snippet-copy{font-size:9px;line-height:1.4;min-height:25px}.rashifal-snippet-more{font-size:8px}}
.rashi-picker-overlay{position:fixed;inset:0;background:rgba(0,0,0,.78);z-index:99999;display:none;align-items:center;justify-content:center;padding:18px}.rashi-picker-overlay.is-open{display:flex}.rashi-picker{width:min(540px,100%);max-height:min(590px,calc(100vh - 36px));overflow:auto;background:#fff;border-radius:9px;box-shadow:0 18px 60px rgba(0,0,0,.35);position:relative;padding:24px 28px 26px}.rashi-picker-close{position:fixed;right:28px;top:22px;width:42px;height:42px;border-radius:50%;border:0;background:#fff;color:#222;font-size:28px;line-height:1;cursor:pointer;z-index:100000}.rashi-picker-title{text-align:center;color:#777;font-size:18px;font-weight:800;margin:0 0 22px}.rashi-picker-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:25px 12px}.rashi-picker-item{border:0;background:#fff;padding:0;cursor:pointer;text-align:center;color:#222;font-family:inherit}.rashi-picker-item img{display:block;width:58px;height:58px;object-fit:contain;margin:0 auto 6px}.rashi-picker-item strong{display:block;font-size:13px;font-weight:900;line-height:1.2}.rashi-picker-item small{display:block;color:#777;font-size:10px;margin-top:4px;line-height:1.2}.rashi-picker-item:hover strong{color:#f57c00}@media(max-width:700px){.rashi-picker{padding:21px 16px 24px;border-radius:8px}.rashi-picker-title{font-size:16px;margin-bottom:18px}.rashi-picker-grid{grid-template-columns:repeat(4,1fr);gap:21px 8px}.rashi-picker-item img{width:52px;height:52px}.rashi-picker-item strong{font-size:12px}.rashi-picker-item small{font-size:9px}.rashi-picker-close{right:14px;top:12px;width:38px;height:38px;font-size:24px}}

/* V40 — clean Bhaskar-style right rail: no cards except Rashifal. */
.right-sidebar > .website-tool-card,
.right-sidebar > .side-box.website-tool-card,
.right-sidebar .poll-card,
.right-sidebar .content-widget {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.right-sidebar > .website-tool-card:not(.rashifal-widget),
.right-sidebar > .side-box.website-tool-card:not(.rashifal-widget),
.right-sidebar .poll-card,
.right-sidebar .content-widget {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 28px !important;
}
.right-sidebar .website-tool-title,
.right-sidebar .side-title,
.right-sidebar .content-widget-title {
  padding-bottom: 8px !important;
  margin-bottom: 10px !important;
}
.right-sidebar .rashifal-widget {
  background: #fff !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: hidden !important;
  margin-bottom: 28px !important;
}
.right-sidebar .rashifal-select-row {
  background: #f5f5f5 !important;
}

/* V41 — sober Rashifal widget + Bhaskar-like picker. */
.right-sidebar .rashifal-widget{
  background:#fff!important;border:1px solid #e4e4e4!important;border-radius:10px!important;
  box-shadow:none!important;padding:0!important;overflow:hidden!important;margin-bottom:24px!important;
}
.right-sidebar .rashifal-widget .rashifal-widget-top{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:12px 12px 8px!important;background:#fff!important;border:0!important;}
.rashifal-widget-title{font-size:14px!important;font-weight:800!important;color:#333!important;line-height:1.35!important;}
.rashifal-all-button{border:0!important;background:transparent!important;color:#f57c00!important;font:inherit!important;font-size:11px!important;font-weight:800!important;cursor:pointer;padding:2px 0!important;white-space:nowrap;}
.rashifal-all-button span{font-size:12px;color:#777;margin-left:3px;}
.rashifal-mini-strip{display:flex!important;gap:7px!important;padding:3px 11px 10px!important;overflow-x:auto!important;scrollbar-width:none!important;}
.rashifal-mini-strip::-webkit-scrollbar{display:none;}
.rashifal-mini-item{flex:0 0 30px!important;width:25px!important;height:25px!important;border:0!important;border-radius:50%!important;background:#f5f5f7!important;padding:4px!important;cursor:pointer!important;display:grid!important;place-items:center!important;}
.rashifal-mini-item img{width:25px!important;height:25px!important;object-fit:contain!important;display:block!important;}
.rashifal-current{margin:0 11px 11px!important;padding:10px!important;border:1px solid #f0dfca!important;border-radius:7px!important;background:#fffaf4!important;}
.rashifal-current-sign{font-size:13px!important;font-weight:900!important;color:#222!important;margin-bottom:4px!important;}
.rashifal-current-copy{font-size:11px!important;line-height:1.5!important;color:#555!important;}
.rashifal-current-meta{font-size:10px!important;color:#707070!important;margin-top:6px!important;}

.rashi-picker-overlay{position:fixed!important;inset:0!important;background:rgba(0,0,0,.72)!important;z-index:99999!important;display:none!important;align-items:center!important;justify-content:center!important;padding:18px!important;}
.rashi-picker-overlay.is-open{display:flex!important;}
.rashi-picker{width:min(610px,100%)!important;max-height:min(680px,calc(100vh - 36px))!important;overflow:auto!important;background:#fff!important;border-radius:12px!important;box-shadow:0 18px 60px rgba(0,0,0,.3)!important;padding:0!important;position:relative!important;}
.rashi-picker-header{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:15px!important;background:linear-gradient(90deg,#f57c00,#ff5a00)!important;color:#fff!important;padding:14px 17px!important;}
.rashi-picker-main-title{font-size:17px!important;font-weight:900!important;line-height:1.25!important;}
.rashi-picker-date{font-size:10px!important;margin-top:3px!important;opacity:.92!important;}
.rashi-picker-close{width:34px!important;height:34px!important;border:0!important;border-radius:50%!important;background:transparent!important;color:#fff!important;font-size:27px!important;line-height:1!important;cursor:pointer!important;padding:0!important;}
.rashi-picker-body{padding:14px 14px 16px!important;}
.rashi-picker-label{text-align:left!important;color:#777!important;font-size:11px!important;font-weight:700!important;margin-bottom:10px!important;}
.rashi-picker-grid{display:grid!important;grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:7px!important;}
.rashi-picker-item{border:1px solid #e1e4e8!important;border-radius:9px!important;background:#fff!important;padding:8px 4px!important;cursor:pointer!important;text-align:center!important;color:#222!important;font-family:inherit!important;min-height:70px!important;}
.rashi-picker-item img{display:block!important;width:32px!important;height:32px!important;object-fit:contain!important;margin:0 auto 3px!important;}
.rashi-picker-item strong{display:block!important;font-size:12px!important;font-weight:900!important;line-height:1.2!important;}
.rashi-picker-item small{display:block!important;color:#777!important;font-size:8px!important;margin-top:2px!important;line-height:1.15!important;}
.rashi-picker-item.is-selected{border-color:#f57c00!important;background:#fff4e8!important;}
.rashi-picker-item:hover{border-color:#f57c00!important;}
.rashi-detail{margin:0 14px 14px;padding:12px;border:1px solid #f0dfca;border-radius:8px;background:#fffaf4;}
.rashi-detail-sign{font-size:15px;font-weight:900;color:#222;margin-bottom:4px;}
.rashi-detail-copy{font-size:12px;line-height:1.55;color:#555;}
@media(max-width:700px){
  .rashi-picker{max-height:calc(100vh - 20px)!important;border-radius:10px!important;}
  .rashi-picker-header{padding:13px 14px!important;}
  .rashi-picker-main-title{font-size:15px!important;}
  .rashi-picker-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:7px!important;}
  .rashi-picker-item{min-height:67px!important;}
  .rashi-picker-item img{width:25px!important;height:25px!important;}
}

/* V42 — Rashifal is the first right-rail module and stays the only outer box. */
.right-sidebar{display:flex!important;flex-direction:column!important;}
.right-sidebar .rashifal-widget{box-shadow:none!important;}
.right-sidebar .website-tool-card:not(.rashifal-widget),
.right-sidebar .side-box:not(.rashifal-widget),
.right-sidebar .poll-card,
.right-sidebar .content-widget{background:transparent!important;border:0!important;box-shadow:none!important;border-radius:0!important;padding-left:0!important;padding-right:0!important;}
.right-sidebar .rashifal-widget{border:1px solid #e5e5e5!important;border-radius:8px!important;box-shadow:none!important;background:#fff!important;}
.rashifal-mini-item{background:transparent!important;border:0!important;cursor:pointer!important;}
.rashifal-mini-item img{width:25px!important;height:25px!important;object-fit:contain!important;}
.rashifal-current{padding:8px 11px 11px!important;border-top:1px solid #f0f0f0!important;}
.rashifal-current-sign{font-size:14px!important;font-weight:900!important;}
.rashifal-current-copy{font-size:12px!important;line-height:1.55!important;color:#444!important;margin-top:4px!important;}
.rashifal-current-meta{font-size:10px!important;color:#707070!important;margin-top:5px!important;}
.rashi-detail{margin-top:18px!important;padding:14px!important;border-top:1px solid #eee!important;background:#fffaf2!important;border-radius:7px!important;}
.rashi-detail-sign{font-size:17px!important;font-weight:900!important;color:#222!important;}
.rashi-detail-copy{font-size:12px!important;line-height:1.6!important;color:#555!important;margin-top:6px!important;}
.rashi-picker-item.is-selected strong{color:#f57c00!important;}

/* V43 — Rashifal outer border, in-popup detail, and share action. */
.right-sidebar .rashifal-widget{border:1px solid #dcdcdc!important;box-shadow:none!important;border-radius:8px!important;}
.rashi-detail{margin:0 14px 14px!important;padding:12px!important;border:1px solid #f0dfca!important;border-radius:8px!important;background:#fffaf4!important;}
.rashi-detail-head{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:10px!important;}
.rashi-detail-sign{font-size:16px!important;font-weight:900!important;color:#222!important;margin:0!important;}
.rashi-detail-copy{font-size:12px!important;line-height:1.6!important;color:#555!important;margin-top:7px!important;}
.rashi-detail-meta{font-size:10px!important;color:#707070!important;margin-top:7px!important;}
.rashi-whatsapp-share{border:0!important;background:#25d366!important;color:#fff!important;border-radius:5px!important;padding:5px 8px!important;font-size:10px!important;font-weight:800!important;cursor:pointer!important;white-space:nowrap!important;}

/* V44 — Rashifal: full 12-icon sidebar grid + Bhaskar-like detailed selection panel. */
.right-sidebar .rashifal-widget{
  width:100%!important;
  border:1px solid #d9d9d9!important;
  border-radius:9px!important;
  box-shadow:none!important;
  background:#fff!important;
  overflow:hidden!important;
}
.right-sidebar .rashifal-widget-top{
  padding:11px 12px 8px!important;
  border-bottom:1px solid #eee!important;
}
.right-sidebar .rashifal-mini-grid{
  display:grid!important;
  grid-template-columns:repeat(6,minmax(0,1fr))!important;
  gap:7px!important;
  padding:7px 10px 10px!important;
}
.right-sidebar .rashifal-mini-item{
  width:100%!important;height:34px!important;min-width:0!important;
  display:grid!important;place-items:center!important;
  border:0!important;background:#f7f7f7!important;border-radius:50%!important;
  padding:3px!important;overflow:visible!important;
}
.right-sidebar .rashifal-mini-item img{
  width:25px!important;height:25px!important;max-width:30px!important;
  object-fit:contain!important;display:block!important;
}
.right-sidebar .rashifal-current{
  margin:0 10px 10px!important;padding:10px!important;
  border:1px solid #eee0d2!important;border-radius:7px!important;
  background:#fffaf4!important;
}
.rashi-detail{
  margin:0 14px 16px!important;padding:13px!important;
  border:1px solid #f0dfca!important;border-radius:8px!important;
  background:#fff!important;
}
.rashi-detail-head{display:grid!important;grid-template-columns:54px minmax(0,1fr) auto!important;align-items:center!important;gap:10px!important;}
.rashi-detail-icon-wrap{width:54px!important;height:54px!important;border-radius:8px!important;background:#fff0dc!important;display:grid!important;place-items:center!important;}
.rashi-detail-icon-wrap img{width:42px!important;height:42px!important;object-fit:contain!important;}
.rashi-detail-heading{min-width:0!important;}
.rashi-detail-sign{font-size:17px!important;font-weight:900!important;color:#222!important;}
.rashi-detail-subtitle{font-size:10px!important;color:#f57c00!important;margin-top:2px!important;}
.rashi-detail-divider{height:1px!important;background:#eee!important;margin:10px 0!important;}
.rashi-detail-label{font-size:11px!important;font-weight:800!important;color:#777!important;margin-bottom:8px!important;}
.rashi-detail-copy{padding:10px!important;border:1px solid #f1e2d2!important;border-radius:7px!important;background:#fffaf4!important;font-size:12px!important;line-height:1.6!important;color:#444!important;}
.rashi-detail-cards{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:8px!important;margin-top:10px!important;}
.rashi-detail-cards>div{min-height:62px!important;border:1px solid #e4e6e8!important;border-radius:7px!important;padding:8px!important;background:#fff!important;}
.rashi-detail-cards small{display:block!important;font-size:9px!important;color:#707070!important;line-height:1.3!important;}
.rashi-detail-cards strong{display:block!important;font-size:10px!important;line-height:1.45!important;color:#222!important;margin-top:3px!important;}
.rashi-whatsapp-share{border:0!important;background:#25d366!important;color:#fff!important;border-radius:5px!important;padding:6px 9px!important;font-size:10px!important;font-weight:800!important;cursor:pointer!important;white-space:nowrap!important;}
.rashi-detail-meta{font-size:10px!important;color:#707070!important;margin-top:8px!important;}
@media(max-width:700px){
 .right-sidebar .rashifal-mini-grid{grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:6px!important;padding-left:8px!important;padding-right:8px!important;}
 .right-sidebar .rashifal-mini-item img{width:25px!important;height:25px!important;}
 .rashi-detail-head{grid-template-columns:48px minmax(0,1fr)!important;}
 .rashi-whatsapp-share{grid-column:1/-1!important;justify-self:start!important;}
 .rashi-detail-cards{grid-template-columns:1fr!important;}
}

/* V45 — global public chrome, Rashifal profile and consistent story cards. */
.rashifal-widget{position:relative;z-index:2;}
.rashifal-astrologer{display:flex;align-items:center;gap:8px;padding:0 10px 7px;}
.rashifal-astrologer img{width:32px;height:32px;border-radius:50%;object-fit:cover;border:1px solid #eee;background:#f7f7f7;}
.rashifal-astrologer strong{display:block;font-size:12px;line-height:1.2;color:#222;}
.rashifal-astrologer small{display:block;font-size:10px;color:#777;margin-top:2px;}
.rashifal-mini-grid{grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:4px!important;padding:4px 8px 8px!important;}
.rashifal-mini-item{min-width:0!important;height:45px!important;padding:3px 1px!important;border:0!important;border-radius:4px!important;background:#fafafa!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:1px!important;}
.rashifal-mini-item img{width:25px!important;height:25px!important;object-fit:contain!important;flex:0 0 25px!important;}
.rashifal-mini-item span{font-size:8px!important;line-height:1!important;color:#555!important;white-space:nowrap;}
.rashifal-current{margin:0 10px 10px!important;padding:9px 10px!important;border:1px solid #f0dfca!important;border-radius:6px!important;background:#fffaf4!important;}
.rashi-picker-overlay{z-index:2000000!important;align-items:flex-start!important;padding:78px 18px 18px!important;}
.rashi-picker{z-index:2000001!important;max-height:calc(100vh - 96px)!important;}
.rashi-picker-close{z-index:2000002!important;}
.rashi-astrologer-detail{display:flex;align-items:center;gap:10px;margin:14px 0 8px;padding:10px;border-top:1px solid #eee;background:#fff;}
.rashi-astrologer-detail img{width:44px;height:44px;border-radius:50%;object-fit:cover;border:1px solid #eee;}
.rashi-astrologer-detail strong{display:block;font-size:13px;color:#222;}
.rashi-astrologer-detail span{display:block;font-size:10px;color:#f57c00;margin-top:2px;}
.rashi-astrologer-detail p{margin:3px 0 0;font-size:10px;line-height:1.4;color:#666;}
@media(max-width:700px){.rashifal-mini-grid{grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:3px!important;padding-left:6px!important;padding-right:6px!important}.rashifal-mini-item{height:42px!important}.rashifal-mini-item img{width:23px!important;height:23px!important}.rashifal-mini-item span{font-size:7px!important}.rashi-picker-overlay{padding:68px 10px 10px!important}.rashi-picker{width:min(540px,100%)!important;max-height:calc(100vh - 82px)!important;}}

/* Final right-rail containment: sidebar must always stay inside the 320px public column. */
.public-right{width:100%!important;min-width:0!important;max-width:320px!important;overflow:visible!important}
.public-right .right-sidebar{display:flex!important;flex-direction:column!important;width:100%!important;max-width:100%!important;min-width:0!important;overflow:visible!important;box-sizing:border-box!important}
.public-right .right-sidebar>*{width:100%!important;max-width:100%!important;min-width:0!important;box-sizing:border-box!important}
.public-right .right-sidebar .website-ad{display:block!important;width:100%!important;max-width:100%!important;min-width:0!important;overflow:hidden!important;box-sizing:border-box!important}
.public-right .right-sidebar .website-ad-image,.public-right .right-sidebar .website-ad img,.public-right .right-sidebar .website-ad iframe{display:block!important;width:100%!important;max-width:100%!important;min-width:0!important;height:auto!important;box-sizing:border-box!important}
.public-right .right-sidebar .website-tool-card,.public-right .right-sidebar .side-box,.public-right .right-sidebar .poll-card,.public-right .right-sidebar .content-widget{width:100%!important;max-width:100%!important;min-width:0!important;box-sizing:border-box!important;overflow:hidden!important}
@media(max-width:900px){.public-right{max-width:none!important}.public-right .right-sidebar{width:100%!important}}

/* Final Rashifal sidebar layout: 12 icons + one selected 2-line preview. */
.right-sidebar .rashifal-widget{padding:0!important;background:#fff!important;border:1px solid #e1e1e1!important;border-radius:8px!important;overflow:hidden!important;}
.right-sidebar .rashifal-widget-top{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:8px!important;padding:10px 11px 8px!important;border-bottom:1px solid #eee!important;}
.right-sidebar .rashifal-widget-title{font-size:14px!important;font-weight:900!important;color:#222!important;line-height:1.3!important;}
.right-sidebar .rashifal-all-button{font-size:10px!important;font-weight:900!important;color:#f57c00!important;text-decoration:none!important;white-space:nowrap!important;}
.right-sidebar .rashifal-all-button span{font-size:15px!important;color:#777!important;vertical-align:-1px!important;margin-left:2px!important;}
.right-sidebar .rashifal-mini-grid{display:grid!important;grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:5px!important;padding:8px 9px 7px!important;}
.right-sidebar .rashifal-mini-item{appearance:none!important;-webkit-appearance:none!important;width:100%!important;height:44px!important;min-width:0!important;padding:2px 1px!important;margin:0!important;border:1px solid transparent!important;border-radius:5px!important;background:#fafafa!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:1px!important;cursor:pointer!important;font-family:inherit!important;}
.right-sidebar .rashifal-mini-item img{width:25px!important;height:25px!important;object-fit:contain!important;display:block!important;}
.right-sidebar .rashifal-mini-item span{font-size:8px!important;line-height:1!important;color:#555!important;white-space:nowrap!important;}
.right-sidebar .rashifal-mini-item:hover,.right-sidebar .rashifal-mini-item.is-active{border-color:#f0b15c!important;background:#fff5e9!important;}
.right-sidebar .rashifal-mini-item.is-active span{color:#f57c00!important;font-weight:900!important;}
.right-sidebar .rashifal-current{margin:0 9px 9px!important;padding:9px 10px!important;border:1px solid #eee0d2!important;border-radius:7px!important;background:#fffaf4!important;}
.right-sidebar .rashifal-current-head{display:flex!important;align-items:center!important;gap:8px!important;}
.right-sidebar .rashifal-current-head img{width:32px!important;height:32px!important;object-fit:contain!important;flex:0 0 32px!important;}
.right-sidebar .rashifal-current-sign{font-size:13px!important;font-weight:900!important;color:#222!important;line-height:1.2!important;margin:0!important;}
.right-sidebar .rashifal-current-meta{font-size:8px!important;color:#707070!important;margin-top:2px!important;line-height:1.25!important;}
.right-sidebar .rashifal-current-copy{font-size:10px!important;line-height:1.5!important;color:#555!important;margin-top:6px!important;display:-webkit-box!important;-webkit-box-orient:vertical!important;-webkit-line-clamp:2!important;overflow:hidden!important;min-height:30px!important;}
.right-sidebar .rashifal-more{display:inline-block!important;padding:0!important;margin-top:5px!important;color:#f57c00!important;font-size:9px!important;font-weight:900!important;text-decoration:none!important;}
.right-sidebar .rashifal-sidebar-astrologer{
    display:flex!important;align-items:center!important;gap:8px!important;
    margin:0 9px 10px!important;padding:8px 9px!important;
    border-top:1px solid #eee!important;background:#fff!important;
}
.right-sidebar .rashifal-sidebar-astrologer img,
.right-sidebar .rashifal-sidebar-astrologer-avatar{
    width:38px!important;height:38px!important;flex:0 0 38px!important;
    border-radius:50%!important;object-fit:cover!important;
    border:1px solid #e7e7e7!important;background:#f7f7f7!important;
}
.right-sidebar .rashifal-sidebar-astrologer-avatar{
    display:grid!important;place-items:center!important;
    color:#f57c00!important;font-size:17px!important;font-weight:900!important;
}
.right-sidebar .rashifal-sidebar-astrologer-info{min-width:0!important;}
.right-sidebar .rashifal-sidebar-astrologer-info strong{
    display:block!important;font-size:11px!important;line-height:1.2!important;color:#222!important;
}
.right-sidebar .rashifal-sidebar-astrologer-info span{
    display:block!important;font-size:9px!important;line-height:1.2!important;
    color:#f57c00!important;margin-top:2px!important;
}
.right-sidebar .rashifal-sidebar-astrologer-info small{
    display:block!important;font-size:8px!important;line-height:1.35!important;
    color:#777!important;margin-top:2px!important;
}
@media(max-width:700px){
 .right-sidebar .rashifal-mini-grid{grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:4px!important;padding-left:7px!important;padding-right:7px!important;}
 .right-sidebar .rashifal-mini-item{height:42px!important;}
 .right-sidebar .rashifal-mini-item img{width:23px!important;height:23px!important;}
 .right-sidebar .rashifal-mini-item span{font-size:7px!important;}
}

@media(max-width:900px){
 .right-sidebar .rashifal-mini-item img{display:block!important;visibility:visible!important;opacity:1!important;width:23px!important;height:23px!important;min-width:23px!important;min-height:23px!important;object-fit:contain!important;}
 .right-sidebar .rashifal-current-head img{display:block!important;visibility:visible!important;opacity:1!important;width:32px!important;height:32px!important;min-width:32px!important;min-height:32px!important;object-fit:contain!important;}
 .right-sidebar .rashifal-sidebar-astrologer img{display:block!important;visibility:visible!important;opacity:1!important;width:38px!important;height:38px!important;min-width:38px!important;min-height:38px!important;object-fit:cover!important;}
}

/* Final popup positioning fix */
.rashi-picker-close{position:static!important;right:auto!important;top:auto!important;}
.rashi-picker{scroll-behavior:auto!important;}

/* RASHIFAL POPUP ONLY — existing homepage sidebar layout is intentionally untouched. */
.rashi-picker-overlay{
    position:fixed!important;inset:0!important;z-index:2147483000!important;
    display:none!important;align-items:flex-start!important;justify-content:center!important;
    background:rgba(0,0,0,.78)!important;padding:22px 18px 18px!important;
    box-sizing:border-box!important;
}
.rashi-picker-overlay.is-open{display:flex!important;}
.rashi-picker{
    width:min(610px,100%)!important;
    max-height:calc(100vh - 44px)!important;
    overflow:auto!important;
    background:#fff!important;border-radius:12px!important;
    box-shadow:0 20px 70px rgba(0,0,0,.38)!important;
    position:relative!important;margin:0!important;
}
.rashi-picker-header{
    display:flex!important;align-items:center!important;justify-content:space-between!important;gap:14px!important;
    background:linear-gradient(90deg,#f57c00,#ff5a00)!important;color:#fff!important;
    padding:14px 17px!important;
}
.rashi-picker-main-title{font-size:17px!important;font-weight:900!important;line-height:1.25!important;}
.rashi-picker-date{font-size:10px!important;margin-top:3px!important;opacity:.95!important;}
.rashi-picker-close{
    flex:0 0 34px!important;width:34px!important;height:34px!important;
    border:0!important;background:transparent!important;color:#fff!important;
    font-size:28px!important;line-height:1!important;cursor:pointer!important;padding:0!important;
}
.rashi-picker-body{padding:14px 14px 8px!important;}
.rashi-picker-label{font-size:11px!important;font-weight:800!important;color:#777!important;margin:0 0 9px!important;}
.rashi-picker-grid{display:grid!important;grid-template-columns:repeat(6,minmax(0,1fr))!important;gap:7px!important;}
.rashi-picker-item{
    min-width:0!important;min-height:68px!important;padding:7px 3px!important;
    border:1px solid #e1e4e8!important;border-radius:9px!important;background:#fff!important;
    cursor:pointer!important;text-align:center!important;font-family:inherit!important;color:#222!important;
}
.rashi-picker-item img{display:block!important;width:32px!important;height:32px!important;object-fit:contain!important;margin:0 auto 3px!important;}
.rashi-picker-item strong{display:block!important;font-size:12px!important;font-weight:900!important;line-height:1.2!important;}
.rashi-picker-item small{display:block!important;color:#777!important;font-size:8px!important;margin-top:2px!important;line-height:1.15!important;}
.rashi-picker-item.is-selected{border-color:#f57c00!important;background:#fff4e8!important;}
.rashi-picker-item:hover{border-color:#f57c00!important;}

.rashi-detail{
    margin:7px 14px 0!important;padding:13px!important;
    border:1px solid #f0dfca!important;border-radius:8px!important;background:#fffaf4!important;
}
.rashi-detail-head{
    display:grid!important;grid-template-columns:54px minmax(0,1fr) auto!important;
    align-items:center!important;gap:10px!important;
}
.rashi-detail-icon-wrap{
    width:54px!important;height:54px!important;border-radius:8px!important;
    background:#fff0dc!important;display:grid!important;place-items:center!important;
}
.rashi-detail-icon-wrap img{width:42px!important;height:42px!important;object-fit:contain!important;}
.rashi-detail-heading{min-width:0!important;}
.rashi-detail-sign{font-size:17px!important;font-weight:900!important;color:#222!important;line-height:1.2!important;}
.rashi-detail-subtitle{font-size:10px!important;color:#f57c00!important;margin-top:3px!important;}
.rashi-detail-number{text-align:right!important;}
.rashi-detail-number small{display:block!important;font-size:9px!important;color:#707070!important;}
.rashi-detail-number strong{display:block!important;font-size:15px!important;color:#c62828!important;margin-top:2px!important;}
.rashi-detail-divider{height:1px!important;background:#eee!important;margin:10px 0!important;}
.rashi-detail-label{font-size:11px!important;font-weight:800!important;color:#777!important;margin-bottom:7px!important;}
.rashi-detail-copy{
    box-sizing:border-box!important;
    padding:10px!important;border:1px solid #f1e2d2!important;border-radius:7px!important;
    background:#fff!important;color:#444!important;font-size:12px!important;line-height:1.55!important;
    height:106px!important;max-height:106px!important;overflow:hidden!important;
    display:block!important;
}
.rashi-detail-meta-row{
    margin-top:8px!important;font-size:10px!important;color:#707070!important;
}
.rashi-detail-meta-row strong{color:#222!important;}
.rashi-detail-actions{
    display:flex!important;align-items:center!important;justify-content:space-between!important;
    gap:10px!important;margin-top:9px!important;
}
.rashi-detail-more{
    color:#f57c00!important;font-size:11px!important;font-weight:900!important;
    text-decoration:none!important;
}
.rashi-whatsapp-share{
    border:0!important;background:#25d366!important;color:#fff!important;border-radius:5px!important;
    padding:6px 9px!important;font-size:10px!important;font-weight:800!important;
    cursor:pointer!important;white-space:nowrap!important;
}
.rashi-astrologer-detail{
    display:flex!important;align-items:center!important;gap:10px!important;
    margin:13px 14px 0!important;padding:10px 0!important;border-top:1px solid #eee!important;
}
.rashi-astrologer-detail img{
    width:46px!important;height:46px!important;border-radius:50%!important;
    object-fit:cover!important;border:1px solid #eee!important;background:#f7f7f7!important;
}
.rashi-astrologer-detail strong{display:block!important;font-size:13px!important;color:#222!important;line-height:1.2!important;}
.rashi-astrologer-detail span{display:block!important;font-size:10px!important;color:#f57c00!important;margin-top:2px!important;}
.rashi-astrologer-detail p{display:block!important;font-size:10px!important;line-height:1.4!important;color:#666!important;margin:3px 0 0!important;}
.rashi-picker-footer{
    padding:8px 14px!important;text-align:center!important;
    background:#f5f6f7!important;color:#707070!important;font-size:9px!important;
}
@media(max-width:700px){
    .rashi-picker-overlay{padding:10px!important;}
    .rashi-picker{max-height:calc(100vh - 20px)!important;border-radius:10px!important;}
    .rashi-picker-header{padding:13px 14px!important;}
    .rashi-picker-main-title{font-size:15px!important;}
    .rashi-picker-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:7px!important;}
    .rashi-picker-item{min-height:67px!important;}
    .rashi-picker-item img{width:25px!important;height:25px!important;}
    .rashi-detail-copy{height:106px!important;max-height:106px!important;}\n    .rashi-detail-head{grid-template-columns:48px minmax(0,1fr)!important;}
    .rashi-detail-number{grid-column:1/-1!important;text-align:left!important;}
    .rashi-detail-actions{align-items:flex-start!important;flex-direction:column!important;}
}
/* Search page cleanup: no decorative arrow/chevron on result cards. */
.search-card::before,.search-card::after,.search-title::before,.search-title::after{content:none!important;display:none!important}
.search-card{text-decoration:none!important;color:inherit!important}
.search-card:hover{background:#fafafa!important}
.search-form button{cursor:pointer}


/* ===== State News horizontal tabs (home.blade.php) ===== */
.state-tabs{display:flex;gap:7px;overflow-x:auto;scrollbar-width:none;margin-bottom:10px}
                    .state-tabs::-webkit-scrollbar{display:none}
                    .state-tab{flex:0 0 auto;border:1px solid #e5e7eb;background:#fff;color:#333;border-radius:999px;padding:7px 13px;font:inherit;font-size:13px;font-weight:800;cursor:pointer;white-space:nowrap}
                    .state-tab.active{background:#c62828;color:#fff;border-color:#c62828}
                    .state-panel[hidden]{display:none!important}


/* =====================================================
   CUSTOM PAGINATION (resources/views/vendor/pagination/tailwind.blade.php)
   Laravel's default pagination view assumes Tailwind CSS utility classes
   are loaded (w-5 h-5, sm:hidden, hidden sm:flex, etc.) — this site
   doesn't ship Tailwind on public pages, so those classes did nothing:
   the inline SVG chevron icons rendered at their raw, unconstrained size
   (huge), and BOTH the "mobile" and "desktop" variants showed at once
   since the responsive hide/show classes never applied either.
   ===================================================== */
.kl-pagination{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;margin-top:10px}
.kl-pagination-info{font-size:12px;color:var(--site-muted,#777)}
.kl-pagination-info strong{color:var(--site-text,#111);font-weight:800}
.kl-pagination-links{display:flex;flex-wrap:wrap;gap:6px}
.kl-page-link{display:inline-flex;align-items:center;justify-content:center;min-width:36px;height:36px;padding:0 10px;border:1px solid var(--site-border,#ddd);border-radius:7px;background:var(--site-surface,#fff);color:var(--site-text,#111);font-size:13px;font-weight:700;text-decoration:none;line-height:1}
.kl-page-link:hover{border-color:var(--site-primary,#e53935);color:var(--site-primary,#e53935)}
.kl-page-link.is-current{background:var(--site-primary,#e53935);border-color:var(--site-primary,#e53935);color:#fff;cursor:default}
.kl-page-link.is-disabled{opacity:.4;cursor:not-allowed}
.kl-page-link.is-disabled:hover{border-color:var(--site-border,#ddd);color:var(--site-text,#111)}
.kl-page-dots{border:0;background:transparent;cursor:default;min-width:auto;padding:0 4px}
.kl-page-prev,.kl-page-next{font-size:18px;font-weight:900}
@media(max-width:480px){.kl-pagination{justify-content:center}.kl-pagination-info{width:100%;text-align:center}}
body.site-dark .kl-page-link{background:var(--site-surface,#191c20);border-color:var(--site-border,#30353b);color:var(--site-text,#f2f4f7)}
body.site-dark .kl-page-link.is-disabled:hover{border-color:var(--site-border,#30353b);color:var(--site-text,#f2f4f7)}

/* ===== Site logo (moved out of partials/site-logo.blade.php) ===== */
.site-logo-picture{display:flex;align-items:center;justify-content:flex-start;width:auto;max-width:220px;height:46px;overflow:hidden;flex:0 0 auto}
.site-logo-image{display:block;width:auto!important;height:auto!important;max-width:220px!important;max-height:44px!important;object-fit:contain}
.site-logo-image.dark-logo{display:none}
.site-logo-text{display:inline-flex;align-items:center;font-size:28px;font-weight:900;line-height:1;white-space:nowrap}.site-logo-text .yellow{color:#ff8c00}
body.site-dark .site-logo-image.light-logo{display:none}
body.site-dark .site-logo-image.dark-logo{display:block}
@media(max-width:700px){.site-logo-picture{max-width:170px;height:42px}.site-logo-image{max-width:170px!important;max-height:40px!important}.site-logo-text{font-size:23px}}

/* =====================================================
   BIG BREAKING layout (article.blade.php + home.blade.php hero) —
   everything centered: highlighter badge on top (blinking), then the
   LIVE / बड़ी ब्रेकिंग badge, then the Headline Colour split into two
   centered lines with a short rule between them. Normal posts are
   completely untouched; this only applies when a post has the
   "🚨 Big Breaking" toggle on.
   ===================================================== */
.big-breaking-block{display:flex;flex-direction:column;align-items:center;text-align:center;gap:8px;margin-bottom:10px}
.big-breaking-title{margin:0;display:flex;flex-direction:column;align-items:center;gap:6px}
.big-breaking-accent{font-weight:900!important;line-height:1.35!important;font-size:24px!important}
.big-breaking-rule{display:block;width:56px;height:3px;border-radius:2px}
.big-breaking-plain{color:#111;font-weight:900!important;line-height:1.35!important;font-size:24px!important}
.article-header.is-breaking,.big-news-body.is-breaking{text-align:center}
.article-header.is-breaking .article-badge{margin-left:auto;margin-right:auto}
body.site-dark .big-breaking-plain{color:#f2f4f7}
@media(max-width:700px){.big-breaking-accent,.big-breaking-plain{font-size:20px!important}}

/* Homepage — compact "लाइव अपडेट्स" preview under the top hero story */
.home-live-updates-preview{margin-top:10px}
.home-live-updates-preview-header{display:flex;align-items:center;justify-content:space-between;font-size:14px;font-weight:900;color:#111;margin-bottom:6px}
.home-live-updates-preview-header a{color:#c62828;font-size:12px;font-weight:800}
.home-live-updates-preview ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:6px}
.home-live-updates-preview li{font-size:13px;line-height:1.5;color:#333;border-top:1px dashed #edd9b8;padding-top:6px}
.home-live-updates-preview li:first-child{border-top:0;padding-top:0}
.home-live-updates-preview li a{color:#333;font-weight:700}
.home-live-updates-preview-time{color:#c62828;font-weight:900;margin-right:4px}

body.site-dark .home-live-updates-preview-header{color:#f2f4f7}
body.site-dark .home-live-updates-preview li{color:#c7ccd3;border-top-color:#30353b}
body.site-dark .home-live-updates-preview li a{color:#f2f4f7}

/* Homepage small cards — compact live-updates mini preview (2 items) */
.card-live-updates{margin-top:6px;padding:6px 0 0;border-top:1px dashed var(--site-border,#e5e5e5);display:flex;flex-direction:column;gap:4px}
.card-live-updates-item{font-size:12px;line-height:1.5;color:#333}
.card-live-updates-time{color:#c62828;font-weight:900;margin-right:3px}
.card-live-updates-heading{color:#333}
.card-live-updates-readmore{display:inline-block;margin-left:4px;color:#c62828;font-weight:800;font-size:11px;white-space:nowrap}
body.site-dark .card-live-updates{border-top-color:#30353b}
body.site-dark .card-live-updates-item,body.site-dark .card-live-updates-heading{color:#c7ccd3}

/* ===== Cookie consent banner ===== */
.kl-cookie-consent{position:fixed;left:0;right:0;bottom:0;z-index:99998;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;padding:14px 18px;background:#1c1c1c;color:#f2f2f2;box-shadow:0 -2px 12px rgba(0,0,0,.2)}
.kl-cookie-consent-text{flex:1 1 260px;font-size:13px;line-height:1.5}
.kl-cookie-consent-text a{color:#ffb74d;text-decoration:underline}
.kl-cookie-consent-actions{display:flex;gap:8px;flex:0 0 auto}
.kl-cookie-btn{border:0;border-radius:6px;padding:9px 18px;font-size:13px;font-weight:800;cursor:pointer}
.kl-cookie-btn-accept{background:var(--site-primary,#e53935);color:#fff}
.kl-cookie-btn-reject{background:transparent;color:#f2f2f2;border:1px solid #555}
@media(max-width:600px){.kl-cookie-consent{flex-direction:column;align-items:stretch;text-align:center}.kl-cookie-consent-actions{justify-content:center}}

/* ===== Reader's News submission form (below each article) ===== */
.kl-reader-news{margin:18px 0;padding:16px;background:linear-gradient(135deg,#fff8f0,#fff);border:1px solid #f2d9b8;border-radius:12px}
.kl-reader-news-head{display:flex;align-items:flex-start;gap:10px;margin-bottom:12px}
.kl-reader-news-icon{font-size:26px;line-height:1}
.kl-reader-news-title{font-size:17px;font-weight:900;color:#111}
.kl-reader-news-sub{font-size:12px;color:var(--site-muted,#777);margin-top:2px}
.kl-reader-news-form{display:flex;flex-direction:column;gap:10px}
.kl-reader-news-row{display:flex;gap:10px;flex-wrap:wrap}
.kl-reader-news-row input[type="text"],.kl-reader-news-row input[type="tel"]{flex:1 1 160px;padding:10px 12px;border:1px solid var(--site-border,#ddd);border-radius:7px;background:var(--site-surface,#fff);color:var(--site-text,#111);font-size:14px}
.kl-reader-news textarea{width:100%;padding:10px 12px;border:1px solid var(--site-border,#ddd);border-radius:7px;background:var(--site-surface,#fff);color:var(--site-text,#111);font-size:14px;resize:vertical;font-family:inherit}
.kl-reader-news-row-bottom{align-items:center;justify-content:space-between}
.kl-reader-news-file{font-size:12px;color:var(--site-muted,#777);cursor:pointer;display:flex;align-items:center;gap:6px}
.kl-reader-news-submit{border:0;border-radius:7px;padding:11px 20px;background:var(--site-primary,#e53935);color:#fff;font-weight:800;font-size:14px;cursor:pointer;white-space:nowrap}
.kl-reader-news-submit:hover{filter:brightness(.95)}
.kl-reader-news-thanks{padding:16px;text-align:center;font-size:15px;font-weight:800;color:#1e7a32}
.kl-reader-news-errors{background:#fdecea;border:1px solid #f5c2c0;border-radius:7px;padding:10px 14px;margin-bottom:10px;font-size:13px;color:#c62828}
.kl-reader-news-errors ul{margin:0;padding-left:18px}
body.site-dark .kl-reader-news{background:linear-gradient(135deg,#191c20,#141618);border-color:#30353b}
body.site-dark .kl-reader-news-title{color:#f2f4f7}
body.site-dark .kl-reader-news-row input,body.site-dark .kl-reader-news textarea{background:#191c20;border-color:#30353b;color:#f2f4f7}
@media(max-width:480px){.kl-reader-news-row-bottom{flex-direction:column;align-items:stretch}.kl-reader-news-submit{width:100%}}
