/**
 * 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 Slider Navigation Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    user-select: none;
    opacity: 0.85;
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

.hero-slider-arrow:hover {
    background: var(--brand-color, #dd0000);
    border-color: var(--brand-color, #dd0000);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 15px;
        opacity: 0.95;
    }
    .hero-slider-prev {
        left: 10px;
    }
    .hero-slider-next {
        right: 10px;
    }
}

.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;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #eef2f6;
}

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

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

.compact-post-item .post-title a {
    color: #0f172a;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.compact-post-item .post-title a:hover {
    color: var(--brand-color, #dd0000);
}

.compact-post-item .post-meta {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.compact-post-item .post-thumb-wrapper {
    flex: 0 0 130px;
    width: 130px;
    height: 85px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
}

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

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

/* In-Feed Advertisement Box (Matching Reference Image) */
.feed-inbetween-ad-box {
    margin: 18px 0;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
}

.feed-ad-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    margin-bottom: 8px;
    text-align: center;
}

.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;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.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: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 180px;
    background: #0f172a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.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;
}

/* Top Story Slider Wrapper */
.top-story-slider-wrapper {
    position: relative;
    width: 100%;
}

.top-story-arrow,
.pradesh-arrow {
    display: none;
}

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

.pradesh-carousel-wrapper {
    position: relative;
    width: 100%;
}

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

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

.pradesh-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.card-thumb-wrap {
    height: 165px;
    overflow: hidden;
    background: #f8fafc;
    position: relative;
}

.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.04);
}

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

.card-meta {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.card-meta i {
    color: #94a3b8;
}

.pradesh-card .card-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    line-height: 1.45;
}

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

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

/* ========================================================
   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;
}

.footer-custom-logo-img {
    max-height: 58px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    margin: 0 auto 8px auto;
}

/* Footer Social Media Icons Bar */
.footer-social-links-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 18px auto 6px auto;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.footer-social-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.footer-social-btn.fb-btn { background-color: #1877f2; }
.footer-social-btn.tw-btn { background-color: #000000; border: 1px solid rgba(255, 255, 255, 0.25); }
.footer-social-btn.yt-btn { background-color: #ff0000; }
.footer-social-btn.insta-btn { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.footer-social-btn.tg-btn { background-color: #229ed9; }
.footer-social-btn.wa-btn { background-color: #25d366; }

.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: 44px;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
    border-top: 2px solid var(--brand-color, #dd0000);
}

.ticker-badge {
    display: none !important;
}

.ticker-logo-link {
    display: none !important;
}

.ticker-site-logo-img {
    display: none !important;
}

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

.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: 15px;
    font-weight: 700;
}

.ticker-item-logo {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    flex-shrink: 0;
    vertical-align: middle;
}

.ticker-each-logo {
    height: 20px;
    max-width: 38px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    display: inline-block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

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

.ticker-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.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: 48px;
}

/* Mobile Ticker (Exact match to reference photo media_1790385458614.jpg) */
@media (max-width: 768px) {
    .news-ticker-bar {
        height: 48px;
        background-color: #000000;
        border-top: none;
        border-bottom: 3.5px solid var(--brand-color, #dd0000);
        box-shadow: 0 -2px 14px rgba(0, 0, 0, 0.6);
    }

    .ticker-badge {
        display: none !important;
    }

    .ticker-content-track {
        padding-left: 10px;
    }

    .ticker-controls {
        display: none !important;
    }

    .ticker-item {
        font-size: 16px;
        font-weight: 700;
        padding: 0 10px;
        line-height: 1.3;
    }

    .ticker-item-logo {
        margin-right: 6px;
    }

    .ticker-each-logo {
        height: 17px;
        max-width: 32px;
    }

    .ticker-item a {
        color: #ffffff !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    }

    .ticker-bullet {
        display: none;
    }

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

/* ========================================================
   In-Article "Read More / यह भी पढ़ें" Card
   ======================================================== */
.in-article-read-more {
    margin: 22px 0;
    padding: 12px 16px;
    background: #f8fafc;
    border-left: 4px solid var(--brand-color, #dd0000);
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-top: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.in-article-read-more:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.in-article-read-more .in-rm-thumb {
    width: 90px;
    height: 65px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #e2e8f0;
}

.in-article-read-more .in-rm-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 !important;
}

.in-article-read-more .in-rm-content {
    flex: 1;
    min-width: 0;
}

.in-article-read-more .in-rm-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--brand-color, #dd0000);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.in-article-read-more .in-rm-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.in-article-read-more .in-rm-title a {
    color: #1e293b;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.in-article-read-more .in-rm-title a:hover {
    color: var(--brand-color, #dd0000);
}

@media (max-width: 600px) {
    .in-article-read-more {
        padding: 10px 12px;
        gap: 10px;
        margin: 18px 0;
    }
    .in-article-read-more .in-rm-thumb {
        width: 75px;
        height: 56px;
    }
    .in-article-read-more .in-rm-title {
        font-size: 14px;
    }
}

/* ========================================================
   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 {
        padding: 12px 0;
        gap: 12px;
    }

    .compact-post-item .post-title {
        font-size: 15px;
        line-height: 1.35;
    }

    .compact-post-item .post-thumb-wrapper {
        flex: 0 0 105px;
        width: 105px;
        height: 72px;
        border-radius: 8px;
    }

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

    /* Top Story in mobile: Slider style */
    .top-story-slider-wrapper {
        position: relative;
        width: 100%;
    }

    .top-story-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 12px !important;
        padding: 4px 6px 14px 6px !important;
        margin: 0 !important;
        scrollbar-width: none !important;
    }

    .top-story-grid::-webkit-scrollbar {
        display: none !important;
    }

    .top-story-card,
    .top-story-card.featured-card {
        flex: 0 0 84% !important;
        max-width: 84% !important;
        height: 220px !important;
        min-height: 220px !important;
        scroll-snap-align: center !important;
        border-radius: 10px !important;
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .top-story-arrow,
    .pradesh-arrow {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid #cbd5e1;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        border-radius: 50%;
        color: #1e293b;
        font-size: 14px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 5;
        transition: transform 0.2s ease;
    }

    .top-story-arrow:active,
    .pradesh-arrow:active {
        transform: translateY(-50%) scale(0.92);
    }

    .top-story-prev,
    .pradesh-prev {
        left: -6px;
    }

    .top-story-next,
    .pradesh-next {
        right: -6px;
    }

    /* Below of top story category (Pradesh): horizontal carousel matching reference image */
    .pradesh-carousel-wrapper {
        position: relative;
        width: 100%;
    }

    .pradesh-cards-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 14px !important;
        padding: 4px 6px 14px 6px !important;
        margin: 0 !important;
        scrollbar-width: none !important;
    }

    .pradesh-cards-grid::-webkit-scrollbar {
        display: none !important;
    }

    .pradesh-card {
        flex: 0 0 74% !important;
        max-width: 74% !important;
        scroll-snap-align: center !important;
        border-radius: 10px !important;
    }

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

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

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

    /* Make all in center in mobile */
    .site-footer,
    .footer-brand-box,
    .footer-widget-area {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .footer-logo {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto 12px auto !important;
        text-align: center !important;
    }

    .footer-logo img,
    .footer-custom-logo-img {
        margin: 0 auto !important;
        display: inline-block !important;
        max-height: 52px !important;
        width: auto !important;
    }

    .footer-tagline-wrapper {
        text-align: center !important;
        margin: 0 auto 14px auto !important;
    }

    .footer-tagline {
        font-size: 18px !important;
        text-align: center !important;
    }

    .footer-social-links-bar {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 14px auto !important;
    }

    .footer-info-container {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 12px !important;
    }

    .copyright-text {
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .footer-menu-wrap,
    .footer-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
        flex-wrap: wrap !important;
    }
}

/* ========================================================
   Floating Action Buttons (App Download & WhatsApp Channel)
   Positioned in the middle on the right edge of mobile screen
   ======================================================== */
.pwa-floating-btn {
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 99999;
    animation: pwaSlideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pwaSlideInRight {
    from {
        opacity: 0;
        transform: translate(40px, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%) scale(1);
    }
}

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

.pwa-btn:hover {
    transform: translateX(-4px);
    box-shadow: -4px 6px 18px rgba(221, 0, 0, 0.6);
}

.pwa-icon-mini {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #ffffff;
    flex-shrink: 0;
}

.pwa-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #ffffff;
    white-space: nowrap;
}

.pwa-close-btn {
    font-size: 16px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.75);
    margin-left: 2px;
    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.25);
}

/* WhatsApp Channel Floating Button */
.wa-floating-btn {
    position: fixed;
    right: 0;
    top: 54%;
    transform: translateY(-50%);
    z-index: 99998;
    animation: pwaSlideInRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 8px 12px 8px 12px;
    box-shadow: -2px 4px 14px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    text-decoration: none !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    user-select: none;
    position: relative;
}

.wa-btn:hover {
    transform: translateX(-4px);
    box-shadow: -4px 6px 18px rgba(37, 211, 102, 0.6);
}

.wa-icon-mini {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    flex-shrink: 0;
}

.wa-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #ffffff;
    white-space: nowrap;
}

/* 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,
    .wa-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-brand-link img,
    .pwa-brand-link .custom-logo,
    .pwa-app-logo-img {
        max-height: 36px;
        width: auto;
        object-fit: contain;
        vertical-align: middle;
    }

    .pwa-brand-text {
        font-size: 18px;
        font-weight: 800;
        color: #1e293b;
    }

    .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, no comments, no related posts) */
    .single .sidebar-col,
    .single .breadcrumb-trail,
    .single .entry-author-box,
    .single .related-stories-section,
    .single #comments,
    .single .comments-area,
    .single .comment-respond {
        display: none !important;
    }

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

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

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

    /* Only WhatsApp share button in standalone app */
    .single .social-share-bar .share-btn:not(.share-whatsapp),
    .single .social-share-bar .share-label,
    .single .social-share-bar #copy-post-link {
        display: none !important;
    }

    .single .social-share-bar {
        margin: 14px 0 18px 0 !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        display: flex !important;
    }

    .single .social-share-bar .share-whatsapp {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        background: #25D366 !important;
        color: #ffffff !important;
        padding: 8px 18px !important;
        border-radius: 50px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4) !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 .pwa-floating-btn,
body.pwa-standalone-mode .wa-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,
body.pwa-standalone-mode.single .breadcrumb-trail,
body.pwa-standalone-mode.pwa-hide-ads.single .single-article-ad,
body.pwa-standalone-mode:not(.pwa-show-ads).single .single-article-ad,
body.pwa-standalone-mode.single .entry-author-box,
body.pwa-standalone-mode.single .related-stories-section,
body.pwa-standalone-mode.single #comments,
body.pwa-standalone-mode.single .comments-area,
body.pwa-standalone-mode.single .comment-respond {
    display: none !important;
}

body.pwa-standalone-mode.pwa-show-ads.single .single-article-ad,
body.pwa-standalone-mode.pwa-show-ads .pwa-feed-ad-banner,
body.pwa-show-ads .pwa-feed-ad-banner,
.pwa-feed-ad-banner {
    display: block !important;
    margin: 14px auto !important;
    max-width: 100% !important;
}

body.pwa-standalone-mode.pwa-hide-ads .pwa-feed-ad-banner,
body.pwa-hide-ads .pwa-feed-ad-banner {
    display: none !important;
}

.pwa-notif-btn {
    color: #e11d48 !important;
    position: relative;
}

.pwa-notif-btn:hover {
    background: #ffe4e6 !important;
    color: #be123c !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-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;
}

/* Only WhatsApp share button in standalone app */
body.pwa-standalone-mode.single .social-share-bar .share-btn:not(.share-whatsapp),
body.pwa-standalone-mode.single .social-share-bar .share-label,
body.pwa-standalone-mode.single .social-share-bar #copy-post-link {
    display: none !important;
}

body.pwa-standalone-mode.single .social-share-bar {
    margin: 14px 0 18px 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    display: flex !important;
}

body.pwa-standalone-mode.single .social-share-bar .share-whatsapp {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #25D366 !important;
    color: #ffffff !important;
    padding: 8px 18px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4) !important;
}

.pwa-category-banner-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f8fafc;
    color: #dd0000;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    align-self: flex-start;
}

/* ========================================================
   PWA App Feed (Matching Reference Image)
   ======================================================== */
.pwa-app-feed-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 12px 14px 25px 14px;
    background: #ffffff;
    min-height: 85vh;
}

.pwa-feed-container {
    display: flex;
    flex-direction: column;
}

/* 1. Lead Featured Post Card (Reference Top Card) */
.pwa-lead-card {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #000;
}

.pwa-lead-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.pwa-lead-card:hover .pwa-lead-thumb-wrap img {
    transform: scale(1.03);
}

.pwa-lead-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    padding: 16px 14px 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pwa-lead-badge-row {
    margin-bottom: 6px;
}

.pwa-cat-badge {
    background: #dd0000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.3px;
}

.pwa-lead-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px 0;
}

.pwa-lead-title a {
    color: #ffffff !important;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pwa-lead-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #e2e8f0;
}

/* Round WhatsApp Share Button */
.pwa-round-wa-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, background 0.2s;
    flex-shrink: 0;
}

.pwa-round-wa-btn:hover {
    transform: scale(1.12);
    background: #20bd5a;
}

.pwa-btn-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pwa-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #dd0000;
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none !important;
    line-height: 1.2;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 1px 4px rgba(221, 0, 0, 0.3);
    white-space: nowrap;
}

.pwa-read-more-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    color: #ffffff !important;
}

.pwa-read-more-btn i {
    font-size: 10px;
}

/* 2. Compact News Feed List (Reference List Items) */
.pwa-items-list {
    display: flex;
    flex-direction: column;
}

.pwa-feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.pwa-feed-item:last-child {
    border-bottom: none;
}

.pwa-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.pwa-item-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.pwa-item-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;
}

.pwa-item-title a:hover {
    color: #dd0000 !important;
}

.pwa-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
}

.pwa-meta-date {
    font-size: 12px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pwa-item-thumb-col {
    width: 105px;
    height: 75px;
    flex-shrink: 0;
}

.pwa-thumb-link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
}

.pwa-thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.pwa-feed-item:hover .pwa-thumb-link img {
    transform: scale(1.05);
}

/* Standalone Switcher Rules */
.pwa-standalone-feed-only {
    display: none;
}

@media all and (display-mode: standalone), (display-mode: fullscreen) {
    .homepage-desktop-view {
        display: none !important;
    }
    .pwa-standalone-feed-only {
        display: block !important;
    }
}

body.pwa-standalone-mode .homepage-desktop-view {
    display: none !important;
}

body.pwa-standalone-mode .pwa-standalone-feed-only {
    display: block !important;
}

/* PWA Feed Pagination */
.pwa-feed-pagination {
    margin: 22px 0 10px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pwa-feed-pagination a,
.pwa-feed-pagination span {
    padding: 7px 15px;
    background: #f1f5f9;
    color: #1e293b;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.pwa-feed-pagination span.current {
    background: #dd0000;
    color: #ffffff;
}

.pwa-feed-pagination a:hover {
    background: #dd0000;
    color: #ffffff;
}


