/**
 * wpnewz Main Stylesheet
 * Modeled after SBN Live / Jannah Theme layout
 */

:root {
    --brand-color: #e81700;
    --dark-brand-color: #b60000;
    --bright-color: #ffffff;
    --base-color: #2c2f34;
    --body-bg: #f4fff7;
    --border-color: #e5e7eb;
    --border-accent: #e74c3c;
    --text-muted: #6b7280;
    --font-heading: 'Poppins', 'Hind', sans-serif;
    --font-body: 'Hind', 'Poppins', sans-serif;
    --container-max: 1200px;
    --radius-pill: 9999px;
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Global Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--base-color);
    background-color: var(--body-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: var(--brand-color);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #111827;
    margin-top: 0;
    line-height: 1.35;
    font-weight: 700;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.container-full {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Buttons */
.button, 
button.button, 
input[type="submit"].button {
    display: inline-block;
    background-color: var(--brand-color);
    color: #ffffff !important;
    border: none;
    border-radius: var(--radius-pill);
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.15s ease;
}

.button:hover,
button.button:hover,
input[type="submit"].button:hover {
    background-color: var(--dark-brand-color);
    transform: translateY(-1px);
}

/* Ad Placements */
.stream-item {
    margin: 15px auto;
    text-align: center;
}

.ad-placeholder {
    background: #eef2f6;
    border: 1px dashed #cbd5e1;
    border-radius: 6px;
    padding: 18px;
    position: relative;
    margin: 0 auto;
}

.ad-placeholder.banner-728x90 {
    max-width: 728px;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ad-placeholder.banner-fluid {
    width: 100%;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ad-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.ad-demo-box {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.custom-ad-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
}

.custom-ad-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.single-article-ad {
    margin: 20px 0;
    text-align: center;
}

/* ========================================================
   Header & Navigation
   ======================================================== */
.theme-header {
    background: #ffffff;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}

.header-logo-wrap {
    display: flex;
    align-items: center;
}

.header-logo-wrap img,
.header-logo-wrap .custom-logo,
.custom-logo-link img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo img,
.footer-logo .custom-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 10px auto;
    display: block;
}

.custom-logo-text {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.logo-accent {
    color: var(--brand-color);
}

.logo-live {
    color: #111827;
}

.logo-slogan {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    margin-top: 3px;
}

/* Main Menu */
.main-menu-wrap {
    display: flex;
    align-items: center;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
}

.main-menu > li > a {
    font-size: 19px;
    font-weight: 800;
    color: #1a1a1a;
    padding: 10px 4px;
    position: relative;
}

.main-menu > li.current-menu-item > a,
.main-menu > li > a:hover {
    color: var(--brand-color);
}

.main-menu > li.current-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-color);
    border-radius: 2px;
}

/* Header Components: Search & Dropdown */
.header-components {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-search-form {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: var(--radius-pill);
    padding: 4px 12px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.header-search-form:focus-within {
    background: #ffffff;
    border-color: var(--brand-color);
    box-shadow: 0 0 0 3px rgba(232, 23, 0, 0.1);
}

.header-search-form input {
    border: none;
    background: transparent;
    font-size: 13px;
    outline: none;
    width: 130px;
    padding: 4px 6px;
    font-family: var(--font-body);
}

.header-search-form button {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #6b7280;
    font-size: 14px;
    padding: 4px;
}

.header-search-form button:hover {
    color: var(--brand-color);
}

/* Popular Posts Mega Dropdown */
.popular-posts-dropdown {
    position: relative;
}

.popular-dropdown-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.popular-dropdown-btn:hover {
    border-color: var(--brand-color);
    color: var(--brand-color);
}

.popular-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 440px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 16px;
    display: none;
    z-index: 1100;
    border-top: 3px solid var(--brand-color);
}

.popular-posts-dropdown:hover .popular-dropdown-menu,
.popular-posts-dropdown:focus-within .popular-dropdown-menu {
    display: block;
}

.popular-dropdown-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popular-menu-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.popular-menu-thumb {
    width: 75px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-menu-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-menu-title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

/* Mobile Toggles */
.mobile-header-components {
    display: none;
}

.mobile-toggle-btn,
.mobile-search-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    color: #1e293b;
    cursor: pointer;
    padding: 6px;
}

/* ========================================================
   Hero Slider Section
   ======================================================== */
.hero-slider-section {
    margin-bottom: 25px;
}

.hero-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-main-slide {
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: background-image 0.5s ease-in-out;
}

.hero-overlay {
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 40px 0 25px 0;
}

.hero-caption {
    max-width: 850px;
}

.hero-meta {
    margin-bottom: 10px;
}

.meta-date {
    font-size: 13px;
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hero-title {
    font-size: 32px;
    color: #ffffff;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title a {
    color: #ffffff;
}

.hero-title a:hover {
    color: #ffd1d1;
}

/* Hero Nav Strip */
.hero-nav-strip {
    background: #111827;
    padding: 12px 0;
}

.hero-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.hero-nav-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    border-top: 3px solid transparent;
    transition: all 0.25s ease;
}

.hero-nav-item:hover,
.hero-nav-item.is-active {
    background: rgba(255, 255, 255, 0.12);
    border-top-color: var(--brand-color);
}

.hero-nav-meta {
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.hero-nav-title {
    font-size: 12px;
    font-weight: 600;
    color: #f3f4f6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

/* ========================================================
   Section Titles
   ======================================================== */
.section-title {
    margin: 25px 0 20px 0;
}

.section-title-centered {
    display: flex;
    align-items: center;
    text-align: center;
}

.section-title-centered::before,
.section-title-centered::after {
    content: '';
    flex: 1;
    height: 2px;
    background-color: var(--brand-color);
}

.the-section-title {
    padding: 0 18px;
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-color);
}

.light-title.section-title-centered::before,
.light-title.section-title-centered::after {
    background-color: #ffffff;
}

.light-title .the-section-title {
    color: #ffffff;
}

/* Layout Columns */
.section-layout-row {
    display: flex;
    gap: 25px;
}

.main-content-col {
    flex: 1;
    min-width: 0;
}

.sidebar-col {
    width: 340px;
    flex-shrink: 0;
}

/* ========================================================
   Category Badges
   ======================================================== */
.post-cat-badge {
    display: inline-block;
    background-color: var(--brand-color);
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.cat-item-7, .cat-item-10 { background-color: #e67e22 !important; }
.cat-item-20, .cat-item-30 { background-color: #2ecc71 !important; }
.cat-item-22, .cat-item-33 { background-color: #9b59b6 !important; }
.cat-item-34 { background-color: #34495e !important; }

/* ========================================================
   Big Lead Post & Compact List (Section 1)
   ======================================================== */
.mag-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 18px;
    box-shadow: var(--shadow-card);
}

.big-lead-post {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 18px;
}

.big-lead-post .post-thumb-wrapper {
    flex: 0 0 45%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.big-lead-post .post-thumb img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.big-lead-post:hover .post-thumb img {
    transform: scale(1.03);
}

.big-lead-post .post-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.meta-views {
    margin-left: auto;
    font-weight: 700;
    color: #e81700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.big-lead-post .post-title {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.35;
}

.big-lead-post .post-excerpt {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 14px;
    line-height: 1.6;
}

/* Compact Small Read More Button */
.btn-read-more-small,
.more-link.button,
a.more-link,
.big-lead-post .button,
.big-lead-post .more-link {
    align-self: flex-start !important;
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: max-content !important;
    padding: 5px 16px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    border-radius: var(--radius-pill) !important;
    margin-top: 8px !important;
    background-color: var(--brand-color) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 6px rgba(232, 23, 0, 0.25) !important;
    transition: all 0.2s ease !important;
    letter-spacing: 0.3px;
    text-decoration: none !important;
}

.btn-read-more-small:hover,
.more-link.button:hover,
a.more-link:hover,
.big-lead-post .button:hover,
.big-lead-post .more-link:hover {
    background-color: var(--dark-brand-color) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(232, 23, 0, 0.35) !important;
}

/* Compact Subsequent Posts */
.sub-posts-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.compact-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f8fafc;
}

.compact-post-item .post-thumb-wrapper {
    flex: 0 0 160px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
}

.compact-post-item .post-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.compact-post-item:hover .post-thumb-wrapper img {
    transform: scale(1.05);
}

.compact-post-item .post-details {
    flex: 1;
}

.compact-post-item .post-title {
    font-size: 16px;
    margin: 4px 0 0 0;
    font-weight: 700;
    line-height: 1.4;
}

.pagination-wrap {
    text-align: center;
    margin-top: 18px;
}

.load-more-btn {
    padding: 9px 30px;
}

/* ========================================================
   Sidebar & Signature Tabs Widget
   ======================================================== */
.sticky-sidebar {
    position: sticky;
    top: 90px;
}

.widget-tabs-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 25px;
}

.tabs-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.tab-nav-item {
    flex: 1;
    text-align: center;
}

.tab-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 14px 10px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.tab-nav-item.active .tab-btn {
    color: var(--brand-color);
    border-bottom-color: var(--brand-color);
    background: #ffffff;
}

.tabs-content-body {
    padding: 16px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-posts-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tab-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tab-post-thumb {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.tab-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-post-info {
    flex: 1;
}

.tab-post-title {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.35;
}

.tab-post-meta {
    font-size: 11px;
    color: var(--text-muted);
}

/* Sidebar Dynamic Widgets Styling */
.sidebar-widget-area .widget,
.registered-widgets-container .widget {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-card);
}

.sidebar-widget-area .widget-title,
.registered-widgets-container .widget-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
    color: var(--text-dark);
}

.sidebar-widget-area .widget-title::after,
.registered-widgets-container .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--brand-color);
}

/* Category & Archive lists in sidebar */
.sidebar-widget-area .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-widget-area .widget ul li {
    padding: 9px 0;
    border-bottom: 1px dashed #f1f5f9;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-widget-area .widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-widget-area .widget ul li a {
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.2s, transform 0.2s;
}

.sidebar-widget-area .widget ul li a:hover {
    color: var(--brand-color);
    padding-left: 4px;
}

/* Search widget in sidebar */
.sidebar-widget-area .widget_search .search-form,
.sidebar-widget-area .wp-block-search {
    position: relative;
    display: flex;
    gap: 8px;
    margin: 0;
}

.sidebar-widget-area .widget_search input[type="search"],
.sidebar-widget-area .wp-block-search__input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.sidebar-widget-area .widget_search input[type="search"]:focus,
.sidebar-widget-area .wp-block-search__input:focus {
    border-color: var(--brand-color);
}

.sidebar-widget-area .widget_search .search-submit,
.sidebar-widget-area .wp-block-search__button {
    background: var(--brand-color);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.sidebar-widget-area .widget_search .search-submit:hover,
.sidebar-widget-area .wp-block-search__button:hover {
    background: #b91c1c;
}

/* Tag cloud */
.sidebar-widget-area .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sidebar-widget-area .tagcloud a {
    background: #f1f5f9;
    color: #475569;
    font-size: 12px !important;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.sidebar-widget-area .tagcloud a:hover {
    background: var(--brand-color);
    color: #ffffff;
}

/* Custom HTML Ad Banners inside sidebar */
.sidebar-widget-area .widget_custom_html img,
.sidebar-widget-area .widget_media_image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
}

/* ========================================================
   Section: Top Story (Red Strip Gallery)
   ======================================================== */
.top-story-section {
    padding: 35px 0 40px 0;
    margin: 30px 0;
}

.top-story-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 15px;
}

.top-story-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    min-height: 180px;
    background: #990000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.top-story-card.featured-card {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
    min-height: 375px;
}

.card-thumb-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.top-story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.top-story-card:hover img {
    transform: scale(1.06);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    padding: 15px;
}

.top-story-card.featured-card .card-title {
    font-size: 20px;
}

.top-story-card .card-title,
.top-story-card .card-title a {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.top-story-card .card-title a:hover {
    color: #fca5a5 !important;
}

/* ========================================================
   Section 2: Pradesh Multi-Card Carousel Grid
   ======================================================== */
.category-section-2 {
    margin-bottom: 45px;
}

.pradesh-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pradesh-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pradesh-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-thumb-wrap {
    height: 180px;
    overflow: hidden;
    background: #f1f5f9;
}

.card-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pradesh-card:hover .card-thumb-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.pradesh-card .card-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.pradesh-card .card-title,
.pradesh-card .card-title a {
    color: #0f172a !important;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.pradesh-card .card-title a:hover {
    color: var(--brand-color, #dd0000) !important;
}

.card-desc {
    font-size: 13px;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

/* ========================================================
   Single Article Page & Typography
   ======================================================== */
.single-post-main {
    padding: 20px 0 40px 0;
}

.breadcrumb-trail {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-trail .sep {
    color: #cbd5e1;
}

.breadcrumb-trail .current {
    color: var(--brand-color);
    font-weight: 600;
}

.single-article-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    margin-bottom: 30px;
}

.single-article-card .entry-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin: 10px 0 15px 0;
}

.single-article-card .entry-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    color: var(--text-muted);
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

/* Social Share Bar */
.social-share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0 25px 0;
    flex-wrap: wrap;
}

.share-label {
    font-size: 13px;
    font-weight: 700;
    margin-right: 5px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.share-whatsapp { background: #25d366; }
.share-facebook { background: #1877f2; }
.share-twitter { background: #000000; }
.share-telegram { background: #229ed9; }
.share-copy { background: #64748b; }

.entry-featured-image {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.entry-featured-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

/* Article Body Content (Devanagari Optimized) */
.entry-content {
    font-size: 19px;
    line-height: 1.8;
    color: #1f2937;
    letter-spacing: 0.2px;
}

.entry-content p {
    margin-bottom: 1.5em;
}

.entry-content h2, .entry-content h3 {
    margin-top: 1.8em;
    margin-bottom: 0.8em;
}

.entry-tags {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tags-title {
    font-weight: 700;
    font-size: 13px;
}

.tag-badge {
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    color: #475569;
}

.tag-badge:hover {
    background: var(--brand-color);
    color: #ffffff;
}

/* Author Box */
.entry-author-box {
    display: flex;
    gap: 18px;
    align-items: center;
    background: #f8fafc;
    border-radius: 8px;
    padding: 18px;
    margin-top: 25px;
    border: 1px solid #e2e8f0;
}

.author-avatar img {
    border-radius: 50%;
}

.author-name {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.author-bio {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

/* Related Stories */
.related-stories-section {
    margin-top: 35px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.related-post-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px;
}

.related-thumb {
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
    display: block;
    margin-bottom: 8px;
}

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

.related-title {
    font-size: 14px;
    margin: 0 0 6px 0;
    line-height: 1.35;
}

/* ========================================================
   Dark Skin Footer
   ======================================================== */
.site-footer.dark-skin {
    background-color: #0b0f19;
    color: #94a3b8;
    border-top: 6px solid var(--brand-color);
    margin-top: 40px;
}

#footer-widgets-container {
    padding: 40px 0 25px 0;
}

.footer-brand-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-text-logo {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

.tagline-red {
    color: #ff3333;
    border-bottom: 2px solid #ff3333;
    padding-bottom: 2px;
}

.tagline-white {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 2px;
}

.site-info {
    background-color: #050811;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    font-size: 13px;
}

.footer-info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Back to top button */
.go-to-top-button {
    position: fixed;
    right: 25px;
    bottom: 55px;
    width: 42px;
    height: 42px;
    background-color: var(--brand-color);
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(232, 23, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.go-to-top-button.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ========================================================
   Sticky Breaking News Ticker (Bottom Bar)
   ======================================================== */
.news-ticker-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 42px;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--brand-color);
}

.ticker-badge {
    background-color: #fa1919;
    color: #ffffff;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px 0 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-top-right-radius: 35px;
    flex-shrink: 0;
    user-select: none;
}

.ticker-content-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-inner-marquee {
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: absolute;
    will-change: transform;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
}

.ticker-bullet {
    color: #fa1919;
    font-size: 8px;
    margin-right: 8px;
}

.ticker-item a {
    color: #ffffff;
}

.ticker-item a:hover {
    color: #fca5a5;
}

.ticker-controls {
    display: flex;
    gap: 4px;
    padding-right: 12px;
    flex-shrink: 0;
}

.ticker-controls button {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 15px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.ticker-controls button:hover {
    color: #ffffff;
}

.footer-spacer-for-ticker {
    height: 44px;
}

/* ========================================================
   Mobile Drawer & Search Overlay
   ======================================================== */
.side-aside {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background-color: #e81700;
    color: #ffffff;
    z-index: 10000;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.25);
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.side-aside.is-open {
    left: 0;
}

.close-side-aside {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-search-box {
    margin: 45px 0 20px 0;
}

.mobile-search-box .search-form {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    padding: 4px 10px;
}

.mobile-search-box input {
    border: none;
    background: transparent;
    color: #ffffff;
    outline: none;
    padding: 6px;
    width: 100%;
    font-size: 14px;
}

.mobile-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.mobile-search-box button {
    border: none;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}

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

.mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list li a {
    display: block;
    padding: 12px 6px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

/* Fullscreen Search Popup */
.tie-popup-search-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-popup-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
}

.popup-search-wrap-inner {
    width: 90%;
    max-width: 600px;
}

.tie-popup-search-form {
    display: flex;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 8px;
}

.tie-popup-search-input {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 26px;
    outline: none;
    font-family: var(--font-body);
}

.tie-popup-search-submit {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* ========================================================
   Organized Category Archive Page Styles
   ======================================================== */
.category-banner-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--brand-color);
    border-radius: 8px;
    padding: 22px 28px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-card);
}

.category-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fee2e2;
    color: var(--brand-color);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.category-banner-box .archive-title {
    font-size: 28px;
    font-weight: 800;
    margin: 4px 0 0 0;
    color: #0f172a;
}

.category-banner-box .archive-description {
    margin-top: 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

/* First Featured Card on Category Page */
.category-featured-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-card);
    display: flex;
    transition: box-shadow 0.25s ease;
}

.category-featured-card:hover {
    box-shadow: var(--shadow-hover);
}

.featured-card-thumb {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.featured-card-thumb img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-featured-card:hover .featured-card-thumb img {
    transform: scale(1.04);
}

.featured-card-body {
    flex: 1;
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.featured-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin: 6px 0 10px 0;
}

.featured-card-title,
.featured-card-title a {
    color: #0f172a !important;
    text-decoration: none;
    transition: color 0.2s;
}

.featured-card-title a:hover {
    color: var(--brand-color, #dd0000) !important;
}

.featured-card-excerpt {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Sub-grid of category cards (2 Columns) */
.category-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-grid-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-grid-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.category-grid-card .card-thumb-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.category-grid-card .card-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-grid-card:hover .card-thumb-wrapper img {
    transform: scale(1.05);
}

.category-grid-card .card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-grid-card .card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 6px 0 8px 0;
}

.category-grid-card .card-title,
.category-grid-card .card-title a {
    color: #0f172a !important;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.category-grid-card .card-title a:hover {
    color: var(--brand-color, #dd0000) !important;
}

.category-grid-card .card-excerpt {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Pagination Styling */
.archive-pagination {
    margin: 30px 0;
    text-align: center;
}

.archive-pagination .nav-links {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.archive-pagination a.page-numbers,
.archive-pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
}

.archive-pagination a.page-numbers:hover {
    background: #f1f5f9;
    border-color: var(--brand-color);
    color: var(--brand-color);
}

.archive-pagination span.page-numbers.current {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(232, 23, 0, 0.3);
}

/* ========================================================
   Responsive Breakpoints
   ======================================================== */
@media (max-width: 991px) {
    .main-menu-wrap,
    .desktop-search,
    .popular-posts-dropdown {
        display: none;
    }

    .mobile-header-components {
        display: block;
    }

    .section-layout-row {
        flex-direction: column;
    }

    .sidebar-col {
        width: 100%;
    }

    .hero-main-slide {
        height: 360px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-story-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pradesh-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 782px) {
    .big-lead-post {
        flex-direction: column;
    }

    .big-lead-post .post-thumb-wrapper {
        flex: 0 0 100%;
    }

    .compact-post-item .post-thumb-wrapper {
        flex: 0 0 110px;
        height: 75px;
    }

    .hero-nav-strip {
        display: none;
    }

    .pradesh-cards-grid,
    .top-story-grid {
        grid-template-columns: 1fr;
    }

    .top-story-card.featured-card {
        grid-column: span 1;
        grid-row: span 1;
        height: 220px;
    }

    .single-article-card {
        padding: 16px;
    }

    .single-article-card .entry-title {
        font-size: 24px;
    }

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

/* ========================================================
   PWA Right-Side Floating Install Button
   ======================================================== */
.pwa-floating-btn {
    position: fixed;
    right: 20px;
    bottom: 85px;
    z-index: 99999;
    animation: pwaSlideInRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pwaSlideInRight {
    from {
        opacity: 0;
        transform: translateX(60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.pwa-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #dd0000 0%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 10px 18px 10px 12px;
    box-shadow: 0 10px 25px -3px rgba(221, 0, 0, 0.45), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    user-select: none;
    position: relative;
    backdrop-filter: blur(8px);
}

.pwa-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 30px -4px rgba(221, 0, 0, 0.55);
}

.pwa-icon-pulse {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    flex-shrink: 0;
    position: relative;
}

.pwa-icon-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    animation: pwaPulse 2s infinite;
}

@keyframes pwaPulse {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1.4); opacity: 0; }
}

.pwa-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.pwa-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.pwa-sub {
    font-size: 11px;
    opacity: 0.85;
    color: #fecaca;
}

.pwa-close-btn {
    font-size: 18px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 6px;
    padding: 2px 4px;
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.pwa-close-btn:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.2);
}

/* App Topbar & Bottom Nav default hidden in normal browser */
.pwa-app-topbar,
.pwa-bottom-nav {
    display: none;
}

/* ========================================================
   PWA Standalone App Mode (Show only post & clean UI)
   ======================================================== */
@media all and (display-mode: standalone), (display-mode: fullscreen) {
    body {
        padding-top: 56px !important;
        padding-bottom: 64px !important;
        background: #f8fafc;
        -webkit-tap-highlight-color: transparent;
    }

    /* Hide website chrome in app mode */
    .theme-header,
    .stream-item-above-header,
    .stream-item-below-header,
    .stream-item-above-footer,
    .site-footer,
    .news-ticker-bar,
    .footer-spacer-for-ticker,
    .pwa-floating-btn {
        display: none !important;
    }

    /* Show App Top Bar */
    .pwa-app-topbar {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 56px;
        background: #ffffff;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        z-index: 9999;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
    }

    .pwa-brand-link {
        font-family: var(--font-heading);
        font-size: 20px;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
    }

    .pwa-live-badge {
        font-size: 10px;
        background: #ef4444;
        color: #fff;
        padding: 2px 6px;
        border-radius: 4px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .pwa-action-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #f1f5f9;
        border: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #1e293b;
        font-size: 15px;
        cursor: pointer;
        text-decoration: none;
    }

    /* Show App Bottom Nav */
    .pwa-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: #ffffff;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        z-index: 9999;
        align-items: center;
        justify-content: space-around;
        padding: 0 6px;
    }

    .pwa-nav-tab {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: #64748b;
        text-decoration: none;
        font-size: 11px;
        font-weight: 600;
        flex: 1;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 6px 0;
    }

    .pwa-nav-tab i {
        font-size: 18px;
    }

    .pwa-nav-tab.active,
    .pwa-nav-tab:hover {
        color: #dd0000;
    }

    /* Single Post: SHOW ONLY POST (Clean reader view) */
    .single .sidebar-col {
        display: none !important;
    }

    .single .main-content-col {
        width: 100% !important;
        max-width: 100% !important;
        flex: 100% !important;
    }

    .single-article-ad {
        display: none !important;
    }

    .single-post-main {
        padding: 10px 0 20px 0 !important;
    }

    .single-article-card {
        border-radius: 0;
        border: none;
        box-shadow: none;
        padding: 16px 12px !important;
    }
}

/* Also support body.pwa-standalone-mode class */
body.pwa-standalone-mode {
    padding-top: 56px !important;
    padding-bottom: 64px !important;
    background: #f8fafc;
}

body.pwa-standalone-mode .theme-header,
body.pwa-standalone-mode .stream-item-above-header,
body.pwa-standalone-mode .stream-item-below-header,
body.pwa-standalone-mode .stream-item-above-footer,
body.pwa-standalone-mode .site-footer,
body.pwa-standalone-mode .news-ticker-bar,
body.pwa-standalone-mode .footer-spacer-for-ticker,
body.pwa-standalone-mode .pwa-floating-btn {
    display: none !important;
}

body.pwa-standalone-mode .pwa-app-topbar {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    z-index: 9999;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

body.pwa-standalone-mode .pwa-brand-link {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

body.pwa-standalone-mode .pwa-live-badge {
    font-size: 10px;
    background: #ef4444;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

body.pwa-standalone-mode .pwa-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
}

body.pwa-standalone-mode .pwa-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 9999;
    align-items: center;
    justify-content: space-around;
    padding: 0 6px;
}

body.pwa-standalone-mode .pwa-nav-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #64748b;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    flex: 1;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 0;
}

body.pwa-standalone-mode .pwa-nav-tab i {
    font-size: 18px;
}

body.pwa-standalone-mode .pwa-nav-tab.active,
body.pwa-standalone-mode .pwa-nav-tab:hover {
    color: #dd0000;
}

body.pwa-standalone-mode.single .sidebar-col {
    display: none !important;
}

body.pwa-standalone-mode.single .main-content-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
}

body.pwa-standalone-mode.single .single-article-ad {
    display: none !important;
}

body.pwa-standalone-mode.single .single-post-main {
    padding: 10px 0 20px 0 !important;
}

body.pwa-standalone-mode.single .single-article-card {
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 16px 12px !important;
}

