:root {
    --rs-bg: #ffffff;
    --rs-surface: #ffffff;
    --rs-surface-strong: #f7f9fc;
    --rs-text: #171717;
    --rs-muted: #6a6a6a;
    --rs-border: #edf0f5;
    --rs-border-strong: #dbe1ea;
    --rs-accent: #d71920;
    --rs-accent-dark: #9f1016;
    --rs-nav: #002765;
    --rs-nav-deep: #001538;
    --rs-ink: #101010;
    --rs-shadow: 0 12px 26px rgba(0, 21, 56, 0.08);
    --rs-soft-shadow: 0 8px 20px rgba(0, 21, 56, 0.06);
}

[data-theme="dark"] {
    --rs-bg: #101722;
    --rs-surface: #151f2d;
    --rs-surface-strong: #1b2839;
    --rs-text: #f3f7fb;
    --rs-muted: #bac5d4;
    --rs-border: #253449;
    --rs-border-strong: #31435b;
    --rs-accent: #ff3138;
    --rs-accent-dark: #f01922;
    --rs-nav: #002765;
    --rs-nav-deep: #001538;
    --rs-ink: #050608;
    --rs-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
    --rs-soft-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

html {
    color-scheme: light;
}

html[data-theme="dark"] {
    color-scheme: dark;
}

body.rs-modern-public {
    background: var(--rs-bg);
    color: var(--rs-text);
    font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif;
    font-size: 16px;
    font-kerning: normal;
    line-height: 1.65;
    text-align: left;
    text-rendering: optimizeLegibility;
    word-spacing: normal;
}

.rs-modern-public,
.rs-modern-public input,
.rs-modern-public button,
.rs-modern-public textarea,
.rs-modern-public select,
.rs-modern-public h1,
.rs-modern-public h2,
.rs-modern-public h3,
.rs-modern-public h4,
.rs-modern-public h5,
.rs-modern-public h6,
.rs-modern-public p,
.rs-modern-public a,
.rs-modern-public span,
.rs-modern-public li {
    font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif !important;
    text-align: left;
    word-spacing: normal;
}

.rs-modern-public a {
    color: inherit;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.rs-modern-public a:hover,
.rs-modern-public a:focus {
    color: var(--rs-accent);
    text-decoration: none;
}

.rs-modern-public .container {
    max-width: none;
    width: min(1280px, calc(100% - 24px));
}

.rs-modern-public #newsticker {
    background: var(--rs-ink);
    border-bottom: 3px solid var(--rs-accent);
}

.rs-modern-public .headline-wrapper {
    background: transparent;
}

.rs-modern-public .headline-title {
    align-items: center;
    background: #fd7d01;
    display: flex;
    padding-left: 12px;
    position: relative;
}

.rs-modern-public .headline-title:after {
    border-left-color: #fd7d01;
}

.rs-modern-public .headline-title h5 {
    padding-left: 4px;
    text-align: left;
}

.rs-modern-public .headline-title h5,
.rs-modern-public .ticker a,
.rs-modern-public .fa-icon-wrap a {
    color: #fff;
}

.rs-modern-public .header-wrapper {
    background: #fff;
    border-bottom: 1px solid var(--rs-border);
}

[data-theme="dark"] .rs-modern-public .header-wrapper {
    background: #111b29;
    border-bottom-color: var(--rs-border);
}

.rs-modern-public .logo {
    margin: 0;
}

.rs-logo-link {
    display: inline-block;
    line-height: 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.18s ease;
}

.rs-logo-link:hover,
.rs-logo-link:focus {
    outline: 0;
    transform: translateY(-1px);
}

.rs-logo-main {
    height: 57px;
    width: 260px;
}

.rs-logo-mobile {
    height: 44px;
    margin-top: 3px;
    width: 180px;
}

.rs-logo-img,
.rs-logo-mask {
    display: block;
    height: 100%;
    width: 100%;
}

.rs-logo-img {
    object-fit: contain;
}

.rs-logo-mask {
    background-color: #fff;
    display: none;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-mask: url("/download/rs-logo-new.png") center / contain no-repeat;
    mask: url("/download/rs-logo-new.png") center / contain no-repeat;
}

[data-theme="dark"] .rs-logo-img {
    display: none;
}

[data-theme="dark"] .rs-logo-mask {
    display: block;
}

.rs-masthead-actions {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    min-height: 57px;
}

.rs-daily-brief {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
    margin-right: 4px;
}

.rs-brief-item {
    align-items: center;
    background: transparent;
    color: var(--rs-muted);
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    gap: 7px;
    height: auto;
    padding: 0;
    white-space: nowrap;
}

.rs-brief-item:hover,
.rs-brief-item:focus {
    color: var(--rs-nav);
    outline: 0;
    text-decoration: none;
}

.rs-brief-item i {
    color: var(--rs-accent);
    font-size: 13px;
}

.rs-weather-brief {
    color: var(--rs-text);
}

[data-theme="dark"] .rs-weather-brief {
    color: var(--rs-text);
}

[data-theme="dark"] .rs-brief-item:hover,
[data-theme="dark"] .rs-brief-item:focus {
    color: #fff;
}

.rs-theme-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--rs-text);
    display: inline-flex;
    font-weight: 800;
    gap: 0;
    height: 34px;
    letter-spacing: 0.02em;
    justify-content: center;
    padding: 0;
    text-transform: uppercase;
    width: 34px;
}

.rs-theme-toggle:hover,
.rs-theme-toggle:focus {
    background: transparent;
    color: var(--rs-accent);
    outline: 0;
    transform: translateY(-1px) scale(1.08);
}

.rs-theme-toggle {
    cursor: pointer;
    font-size: 18px;
    transition: color 0.18s ease, transform 0.18s ease;
}

.rs-modern-public .navbar.megamenu {
    background: var(--rs-nav);
    border: 0;
    border-bottom: 0;
    box-shadow: none;
    margin-bottom: 0;
    min-height: 48px;
    z-index: 1030;
}

.rs-modern-public .navbar.megamenu.rs-navbar-fixed {
    box-shadow: 0 8px 22px rgba(0, 21, 56, 0.18);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
}

.rs-navbar-placeholder {
    display: none;
}

.rs-navbar-placeholder.is-active {
    display: block;
}

.rs-modern-public .navbar.megamenu .container,
.rs-modern-public .navbar.megamenu .row,
.rs-modern-public .navbar.megamenu .col-md-12 {
    position: static;
}

.rs-modern-public .navbar.megamenu .navbar-header {
    background: transparent !important;
    float: none;
    margin: 0 !important;
    min-height: 0;
    position: static !important;
    width: auto !important;
}

.rs-modern-public .navbar.megamenu .navbar-brand {
    display: none;
}

.rs-modern-public .navbar.megamenu .navbar-collapse {
    border: 0;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}

.rs-modern-public .navbar.megamenu .navbar-nav {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.rs-modern-public .navbar-nav > li > a {
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 20px;
    padding: 15px 12px;
    position: relative;
    text-transform: none;
}

.rs-modern-public .navbar-nav > li > a:hover,
.rs-modern-public .navbar-nav > li.open > a,
.rs-modern-public .navbar-nav > li.active > a {
    background: var(--rs-nav-deep) !important;
    color: #fff !important;
}

.rs-modern-public .navbar-nav > li > a:after {
    background: var(--rs-accent);
    bottom: 0;
    content: "";
    height: 3px;
    left: 10px;
    opacity: 0;
    position: absolute;
    right: 10px;
    transform: scaleX(0.2);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.rs-modern-public .navbar-nav > li > a:hover:after,
.rs-modern-public .navbar-nav > li.open > a:after,
.rs-modern-public .navbar-nav > li.active > a:after {
    opacity: 1;
    transform: scaleX(1);
}

.rs-modern-public .dropdown-menu {
    background: var(--rs-nav-deep);
    border: 0;
    box-shadow: var(--rs-shadow);
    padding: 8px;
}

.rs-modern-public .dropdown-menu > li > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 700;
    padding: 10px 12px;
}

.rs-modern-public .dropdown-menu > li:last-child > a {
    border-bottom: 0;
}

.rs-modern-public .dropdown-menu > li > a:hover,
.rs-modern-public .dropdown-menu > li > a:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Search bar removed — strip is only visible on mobile for the theme toggle. */
.site-search-strip {
    background: transparent;
    border: 0;
    display: none;
    margin: 0;
}

.site-search-strip .container {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.rs-theme-toggle-mobile {
    display: none;
    margin-right: 10px;
}

.rs-modern-public .site-search-form {
    background: var(--rs-surface);
    border: 1px solid var(--rs-border);
    box-shadow: none;
    display: flex;
    float: none !important;
    height: 32px;
    margin: 0;
    max-width: 360px;
    padding: 0;
    width: 33.333333%;
}

.rs-modern-public #site-search {
    background: transparent;
    border: 0;
    color: var(--rs-text);
    flex: 1 1 auto;
    height: 30px;
    min-width: 0;
    outline: 0;
    padding: 0 10px;
}

.rs-modern-public #site-search-submit {
    align-items: center;
    background: var(--rs-accent);
    border: 0;
    color: #fff;
    display: inline-flex;
    flex: 0 0 36px;
    height: 30px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    width: 36px;
}

.rs-modern-public #main-content {
    padding-top: 14px;
}

.rs-modern-public .outer-wrapper {
    background: transparent;
    margin-bottom: 18px;
}

/* Vertical divider between main content and right sidebar.
   Placed on the sidebar's left edge — sidebar/post-sidebar are only ever used
   in two-column rows, so there's no risk of a spurious border on full-width pages.
   Columns stack on mobile (< 768 px), so the divider is suppressed there. */
@media (min-width: 768px) {
    .rs-modern-public .outer-wrapper > .sidebar,
    .rs-modern-public .outer-wrapper > .post-sidebar {
        border-left: 1px solid var(--rs-border);
    }
}

.rs-modern-public .widget,
.rs-modern-public .fbt-vc-inner,
.rs-modern-public .fbt-vc-hr-inner,
.rs-modern-public .main-carousel,
.rs-modern-public .gallery,
.rs-modern-public .single-post,
.rs-modern-public .fbt-related-posts,
.rs-modern-public .fbt-contact-box {
    background: transparent;
    border: 0;
    box-shadow: none;
    margin-bottom: 14px;
    padding: 0;
}

.rs-modern-public .fbt-vc-inner .fbt-vc-inner,
.rs-modern-public .widget .fbt-vc-inner,
.rs-modern-public .main-carousel .fbt-vc-inner {
    border: 0;
    box-shadow: none;
    margin-bottom: 0;
    padding: 0;
}

.rs-modern-public .title-wrapper {
    border-bottom: 0 !important;
    margin: 0 0 10px;
    padding: 0;
    position: relative;
}

.rs-modern-public .title-wrapper:after {
    background: var(--rs-border-strong);
    bottom: -2px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}

.rs-modern-public .title-wrapper h2 {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1.25;
    margin: 0;
}

.rs-modern-public .title-wrapper h2 span,
.rs-modern-public .title-wrapper h2 a {
    background: transparent !important;
    color: var(--rs-text) !important;
    display: inline-block;
    padding: 0 0 10px;
}

.rs-modern-public .post-item {
    background: transparent;
    border: 0;
    box-shadow: 0 1px 0 var(--rs-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.rs-modern-public .post-item:hover {
    box-shadow: 0 1px 0 var(--rs-border-strong);
    transform: none;
}

.rs-modern-public .post-item.small {
    border: 0;
    border-bottom: 1px solid var(--rs-border);
    box-shadow: none;
    padding: 0 0 12px;
}

.rs-modern-public .post-item.small:hover {
    box-shadow: none;
    transform: none;
}

.rs-modern-public .post-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 10px;
}

.rs-modern-public .post-item.small .post-content {
    padding: 0 8px 0 0;
}

.rs-modern-public .post-item h3,
.rs-modern-public .single-post h3 {
    color: var(--rs-text);
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-wrap: pretty;
    word-spacing: 0.03em;
}

.rs-modern-public .single-post h3 {
    font-weight: 700;
}

.rs-modern-public .post-item h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 8px;
}

.rs-modern-public .post-item.small h3 {
    font-size: 15px;
    line-height: 1.45;
}

.rs-modern-public .post-item.big h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.rs-modern-public .post-info {
    align-items: center;
    color: var(--rs-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 8px 14px;
    margin-top: auto;
}

.rs-modern-public .post-info span {
    align-items: center;
    display: inline-flex;
    gap: 6px;
    margin: 0;
}

.rs-modern-public .post-info i {
    color: var(--rs-accent);
}

.rs-modern-public .text-content,
.rs-modern-public .text-content p {
    color: var(--rs-muted);
    font-size: 15px;
    line-height: 1.65;
    text-align: left !important;
    word-spacing: normal !important;
}

.rs-modern-public .fbt-resize {
    background: transparent !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
}

.rs-modern-public .img-thumb {
    background: transparent !important;
    height: auto !important;
    min-height: 0 !important;
}

.rs-modern-public .fbt-resize img,
.rs-modern-public .img-thumb img {
    display: block;
    max-width: 100%;
    width: 100%;
}

.rs-modern-public .single-post .img-crop > img {
    display: block;
    height: auto !important;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}

.rs-modern-public .post-item .img-thumb {
    height: 168px !important;
    overflow: hidden;
}

.rs-modern-public .post-item.big .img-thumb {
    height: 256px !important;
}

.rs-modern-public .post-item.small .img-thumb {
    height: 84px !important;
}

.rs-modern-public .post-item .fbt-resize {
    height: 100% !important;
    max-height: none !important;
}

.rs-modern-public .post-item .fbt-resize img,
.rs-modern-public .post-item .img-thumb img {
    height: 100% !important;
    object-fit: cover;
}

@media (min-width: 768px) {
    .rs-modern-public .fbt-vc-inner > .row,
    .rs-modern-public .fbt-vc-hr-inner > .post-col-left > .row,
    .rs-modern-public .post-container > .row,
    .rs-modern-public .gallery-img {
        align-items: stretch;
        display: flex;
        flex-wrap: wrap;
    }

    .rs-modern-public .fbt-vc-inner > .row > [class*="col-"],
    .rs-modern-public .fbt-vc-hr-inner > .post-col-left > .row > [class*="col-"],
    .rs-modern-public .post-container > .row > [class*="col-"],
    .rs-modern-public .gallery-img > [class*="col-"] {
        display: flex;
        flex-direction: column;
        float: none;
    }

    .rs-modern-public .fbt-vc-inner > .row > .clearfix[class*="visible-"],
    .rs-modern-public .fbt-vc-hr-inner > .post-col-left > .row > .clearfix[class*="visible-"],
    .rs-modern-public .post-container > .row > .clearfix[class*="visible-"],
    .rs-modern-public .gallery-img > .clearfix[class*="visible-"] {
        display: none !important;
    }

    .rs-modern-public .fbt-vc-inner > .row > [class*="col-"] > .post-item,
    .rs-modern-public .fbt-vc-hr-inner > .post-col-left > .row > [class*="col-"] > .post-item,
    .rs-modern-public .post-container > .row > [class*="col-"] > .post-item,
    .rs-modern-public .gallery-img > [class*="col-"] > .post-item {
        flex: 1 1 auto;
        width: 100%;
    }

    .rs-modern-public .post-grid .post-item:not(.small) .fbt-resize,
    .rs-modern-public .padding-reset .post-item:not(.small) .fbt-resize,
    .rs-modern-public .gallery-img .post-item:not(.small) .fbt-resize,
    .rs-modern-public .post-container .post-item:not(.small) .fbt-resize {
        aspect-ratio: auto;
        height: 100% !important;
        min-height: 0;
    }

    .rs-modern-public .post-grid .post-item:not(.small) .fbt-resize img,
    .rs-modern-public .padding-reset .post-item:not(.small) .fbt-resize img,
    .rs-modern-public .gallery-img .post-item:not(.small) .fbt-resize img,
    .rs-modern-public .post-container .post-item:not(.small) .fbt-resize img {
        height: 100% !important;
        object-fit: cover;
        width: 100%;
    }
}

.rs-modern-public .nav-tabs {
    border-bottom: 0;
    display: flex;
    gap: 6px;
}

.rs-modern-public .nav-tabs > li > a {
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    color: var(--rs-text);
    font-weight: 800;
    margin: 0;
}

.rs-modern-public .nav-tabs > li.active > a,
.rs-modern-public .nav-tabs > li.active > a:hover,
.rs-modern-public .nav-tabs > li > a:hover {
    background: var(--rs-nav-deep);
    border-bottom-color: var(--rs-accent);
    color: #fff;
}

.rs-modern-public .sidebar .theiaStickySidebar,
.rs-modern-public .post-sidebar .theiaStickySidebar {
    position: static !important;
    top: auto !important;
}

.rs-modern-public .sidebar .widget,
.rs-modern-public .post-sidebar .widget,
.rs-modern-public .sidebar .advertisement,
.rs-modern-public .post-sidebar .advertisement,
.rs-modern-public .rs-sidebar-shorts {
    margin-bottom: 24px;
}

.rs-modern-public .advertisement {
    background: var(--rs-surface);
    border: 0;
    box-shadow: none;
    padding: 10px;
}

.rs-modern-public .advertisement span {
    color: var(--rs-muted);
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    text-align: center;
    text-transform: uppercase;
}

.rs-modern-public .advertisement img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}

.rs-modern-public .rs-manual-ad-slot {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    padding: 0;
}

.rs-modern-public .rs-manual-ad-slot a {
    display: block;
    margin: 0 auto;
    max-width: min(100%, var(--rs-ad-width, 970px));
    position: relative;
}

.rs-modern-public .rs-manual-ad-slot .desktop-ad,
.rs-modern-public .rs-manual-ad-slot .tablet-ad,
.rs-modern-public .rs-manual-ad-slot .mobile-ad {
    margin: 0;
}

.rs-modern-public .rs-sponsored-badge {
    background: rgba(0, 0, 0, 0.74);
    border-radius: 999px;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 900;
    left: 8px;
    letter-spacing: 0.06em !important;
    line-height: 1;
    margin: 0 !important;
    padding: 5px 8px;
    position: absolute;
    text-transform: uppercase;
    top: 8px;
    z-index: 2;
}

.rs-modern-public .district-scroll {
    background: var(--rs-surface-strong);
    border: 1px solid var(--rs-border);
}

.rs-modern-public .district-scroll-list li {
    background: var(--rs-surface) !important;
    border: 1px solid var(--rs-border-strong) !important;
    font-weight: 800;
}

.rs-modern-public .district-scroll-list li:hover {
    background: var(--rs-accent) !important;
}

.rs-modern-public .district-scroll-list li:hover a {
    color: #fff;
}

.rs-modern-public .fbt-blog-single .single-post {
    padding: 22px;
}

.rs-modern-public .single-post .img-crop h3 {
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.18;
    margin-left: 0 !important;
    margin: 0 0 14px;
    padding-left: 0 !important;
    text-align: justify !important;
    text-align-last: left;
    text-indent: 0 !important;
}

.rs-modern-public .post-info-meta {
    background: var(--rs-surface-strong);
    border-left: 4px solid var(--rs-accent);
    margin: 0 0 16px;
    padding: 10px 12px;
}

.rs-share-actions {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin: 6px 0 14px;
}

.rs-share-box {
    display: inline-block;
    margin: 0;
    position: relative;
}

.rs-share-icon,
.rs-share-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--rs-nav);
    display: inline-flex;
    font-size: 21px;
    font-weight: 900;
    height: 32px;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
    width: 32px;
}

.rs-share-whatsapp {
    color: #128c45;
    font-size: 23px;
}

.rs-share-icon:hover,
.rs-share-icon:focus,
.rs-share-toggle:hover,
.rs-share-toggle:focus,
.rs-share-box.is-open .rs-share-toggle {
    background: transparent;
    color: var(--rs-accent);
    outline: 0;
    text-decoration: none;
    transform: translateY(-1px) scale(1.08);
}

.rs-share-whatsapp:hover,
.rs-share-whatsapp:focus {
    color: #0b7a3a;
}

.rs-share-menu {
    background: var(--rs-surface);
    box-shadow: var(--rs-shadow);
    display: none;
    left: auto;
    min-width: 190px;
    padding: 8px;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 50;
}

.rs-share-box.is-open .rs-share-menu {
    display: grid;
    gap: 4px;
}

.rs-share-menu a,
.rs-share-menu button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--rs-text);
    display: flex;
    font-weight: 800;
    gap: 10px;
    padding: 9px 10px;
    text-align: left;
    width: 100%;
}

.rs-share-menu a:hover,
.rs-share-menu button:hover {
    background: var(--rs-surface-strong);
    color: var(--rs-accent);
}

.rs-ad-break {
    background: transparent;
    box-shadow: none;
    margin: 22px 0;
    padding: 0;
    text-align: center;
}

.rs-ad-label {
    color: var(--rs-muted);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.rs-custom-ad {
    display: block;
    margin: 0 auto;
    max-width: min(100%, var(--rs-ad-width, 970px));
    position: relative;
}

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

.rs-manual-ad-slot-break {
    margin-bottom: 10px;
}

.rs-google-ad-slot {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.rs-google-ad {
    min-height: 90px;
}

.rs-home-video-section,
.rs-article-video-section {
    margin: 18px 0;
    padding: 14px 14px 12px;
    position: relative;
    z-index: 0;
}

.rs-home-video-section:before,
.rs-article-video-section:before {
    background: linear-gradient(135deg, #841010 0%, #b01818 55%, #cf2525 100%);
    content: "";
    inset: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
}

.rs-video-section-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 6px;
    position: relative;
}

.rs-video-section-head:after {
    background: rgba(255, 255, 255, 0.24);
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
}

.rs-video-section-head span {
    color: #ffe3d3;
    display: block;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rs-video-section-head h2 {
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    margin: 2px 0 0;
}

.rs-video-section-head a {
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 0;
}

.rs-video-section-head a:hover {
    background: transparent;
    color: #ffe0cc;
}

.rs-video-grid,
.rs-shorts-tile-grid,
.rs-sidebar-shorts-grid {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 12px !important;
    scrollbar-width: none; /* Firefox */
}

.rs-video-grid::-webkit-scrollbar,
.rs-shorts-tile-grid::-webkit-scrollbar,
.rs-sidebar-shorts-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.rs-shorts-tile-grid,
.rs-sidebar-shorts-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.rs-home-main-category-row {
    margin-bottom: 18px;
}

.rs-home-main-category {
    margin-bottom: 18px;
}

.rs-video-grid {
    display: grid !important;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 85%;
}

.rs-video-loading {
    align-items: center;
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 9px;
    margin: 2px 0 10px;
}

.rs-spinner {
    animation: rs-spin 0.85s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    border-top-color: #fff;
    display: inline-block;
    height: 16px;
    width: 16px;
}

.rs-sidebar-shorts .rs-video-loading {
    color: var(--rs-muted);
    margin: 4px 0 12px;
}

.rs-sidebar-shorts .rs-spinner {
    border-color: rgba(0, 39, 101, 0.18);
    border-top-color: var(--rs-nav);
}

[data-theme="dark"] .rs-sidebar-shorts .rs-spinner {
    border-color: rgba(255, 255, 255, 0.18);
    border-top-color: #fff;
}

@keyframes rs-spin {
    to {
        transform: rotate(360deg);
    }
}

.rs-video-error {
    color: #fff0e4;
    font-size: 13px;
    font-weight: 800;
    margin: 2px 0 10px;
}

.rs-video-card {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    padding: 0 0 10px;
    width: 100% !important;
    max-width: none;
    scroll-snap-align: start;
}

.rs-video-frame {
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
    position: relative;
}

.rs-video-frame iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
}

.rs-youtube-play {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: block;
    height: 100%;
    padding: 0;
    position: relative;
    width: 100%;
}

.rs-youtube-thumb {
    background: #1b1b1b;
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.22s ease, filter 0.22s ease;
    width: 100%;
}

.rs-youtube-play:hover .rs-youtube-thumb,
.rs-youtube-play:focus .rs-youtube-thumb {
    filter: brightness(0.82);
    transform: scale(1.035);
}

.rs-play-badge {
    align-items: center;
    background: rgba(210, 0, 0, 0.92);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    left: 50%;
    padding-left: 3px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.2s ease, transform 0.2s ease;
    width: 42px;
}

.rs-youtube-play:hover .rs-play-badge,
.rs-youtube-play:focus .rs-play-badge {
    background: #fd7d1f;
    transform: translate(-50%, -50%) scale(1.08);
}

.rs-video-unavailable {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 13px;
    font-weight: 800;
    justify-content: center;
    text-align: center;
}

.rs-video-expand {
    align-items: center;
    background: rgba(0, 0, 0, 0.55);
    border: 0;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    position: absolute;
    right: 8px;
    top: 8px;
    width: 32px;
    z-index: 2;
}

.rs-video-expand:hover,
.rs-video-expand:focus {
    background: rgba(0, 0, 0, 0.78);
    outline: 0;
}

.rs-video-content {
    padding: 8px 0 0;
}

.rs-video-content h3 {
    color: #fff;
    display: -webkit-box;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0 0 6px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rs-home-shorts-section {
    margin: 16px 0 14px;
    padding: 0;
}

.rs-video-section-head.rs-video-section-head-shorts {
    border-bottom: 1px solid var(--rs-border);
    margin-bottom: 10px;
    padding-bottom: 6px;
}

.rs-video-section-head.rs-video-section-head-shorts h2 {
    color: var(--rs-text);
    font-size: 18px;
}

.rs-video-section-head.rs-video-section-head-shorts a {
    background: transparent;
    color: var(--rs-nav);
    font-size: 11px;
    padding: 0;
}

.rs-video-section-head.rs-video-section-head-shorts a:hover {
    background: transparent;
    color: var(--rs-accent);
}

.rs-short-tile {
    background: transparent;
    border: 0;
    display: block;
    padding: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    width: 100%;
    flex: 0 0 38% !important;
    max-width: 150px;
    scroll-snap-align: start;
}

.rs-short-tile:hover,
.rs-short-tile:focus {
    opacity: 0.92;
    outline: 0;
    transform: translateY(-1px);
}

.rs-short-tile img {
    aspect-ratio: 9 / 15;
    border: 0;
    border-radius: 12px;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.rs-video-content a {
    color: #ffe7d8;
    font-size: 11px;
    font-weight: 900;
}

.rs-sidebar-shorts {
    margin-bottom: 14px;
}

.rs-sidebar-shorts .rs-video-section-head:after,
.rs-video-section-head.rs-video-section-head-shorts:after {
    background: var(--rs-border-strong);
}

.rs-sidebar-shorts .rs-video-section-head h2,
.rs-video-section-head.rs-video-section-head-shorts h2 {
    color: var(--rs-text);
    font-size: 16px;
}

.rs-sidebar-shorts .rs-video-section-head a,
.rs-video-section-head.rs-video-section-head-shorts a {
    color: var(--rs-nav);
    font-size: 11px;
}

@media (min-width: 768px) {
    .rs-video-grid {
        grid-auto-columns: 45%;
    }
    .rs-home-video-section-wide .rs-video-grid {
        grid-auto-columns: 23%;
    }
    .rs-short-tile {
        flex: 0 0 23% !important;
    }
    .rs-sidebar-shorts-grid {
        display: grid !important;
        grid-auto-columns: calc((100% - 12px) / 2);
        grid-auto-flow: column;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }
    .rs-sidebar-shorts-grid .rs-short-tile {
        flex: none !important;
        min-width: 0;
        width: 100%;
    }
}

.rs-shorts-controls {
    align-items: center;
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    margin-top: 8px;
}

.rs-shorts-btn {
    align-items: center;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    color: #9a1212;
    display: inline-flex;
    flex: 0 0 30px;
    height: 30px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    text-align: center;
    transition: all 0.2s ease;
    width: 30px;
}

.rs-shorts-btn i {
    display: block;
    font-size: 18px;
    line-height: 1;
    margin: 0;
    pointer-events: none;
}

.rs-shorts-btn:hover,
.rs-shorts-btn:focus {
    background: #fff3f3;
    border-color: #f1c0c0;
    color: #c51414;
    outline: 0;
}

.rs-videos-controls {
    margin-top: 10px;
}

.rs-video-grid .rs-video-card {
    animation: rsFadeIn 0.25s ease;
}

@keyframes rsFadeIn {
    from {
        opacity: 0.01;
        transform: translateY(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rs-shorts-head {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
}

.rs-shorts-head h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    margin: 0;
}

.rs-shorts-head a {
    color: #fff0df;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.rs-shorts-wrap[hidden],
.rs-video-grid[hidden],
.rs-video-loading[hidden],
.rs-video-error[hidden] {
    display: none !important;
}

.rs-shorts-list {
    display: grid;
    gap: 0 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
}

.rs-short-item {
    align-items: center;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    display: flex;
    gap: 10px;
    padding: 9px 0;
    text-align: left;
    width: 100%;
}

.rs-short-item:hover,
.rs-short-item:focus {
    color: #fff;
    outline: 0;
    opacity: 0.9;
}

.rs-short-thumb {
    display: block;
    flex: 0 0 82px;
}

.rs-short-thumb img {
    aspect-ratio: 9 / 16;
    border: 0;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.rs-short-meta {
    display: block;
    min-width: 0;
}

.rs-short-meta strong {
    color: #fff;
    display: -webkit-box;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
    margin: 0 0 4px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rs-short-meta small {
    color: #ffd9bc;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

body.rs-shorts-open {
    overflow: hidden;
}

.rs-shorts-modal {
    align-items: center;
    background: rgba(0, 0, 0, 0.86);
    display: none;
    inset: 0;
    justify-content: center;
    padding: 18px;
    position: fixed;
    z-index: 2000;
}

.rs-shorts-modal.is-positioning {
    visibility: hidden;
}

.rs-shorts-modal.is-positioning .rs-shorts-feed {
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.rs-shorts-modal.is-open {
    display: flex;
}

.rs-shorts-close {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 24px;
    position: absolute;
    right: 18px;
    top: 14px;
}

.rs-shorts-modal-body {
    align-items: center;
    display: grid !important;
    grid-template-columns: minmax(0, 480px) 54px !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 16px !important;
    justify-content: center;
    max-width: 610px;
    height: calc(100vh - 24px);
    height: calc(100svh - 24px);
    max-height: 920px;
    position: relative;
    width: 100%;
}

.rs-shorts-nav {
    align-items: center;
    background: rgba(255, 255, 255, 0.18);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 20px;
    height: 48px;
    justify-content: center;
    transition: background 0.15s;
    width: 48px;
}

.rs-shorts-nav:hover,
.rs-shorts-nav:focus {
    background: rgba(255, 255, 255, 0.32);
    outline: 0;
}

[data-rs-short-prev],
.rs-shorts-nav[data-rs-short-prev] {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 2 !important;
    align-self: end !important;
}

[data-rs-short-next],
.rs-shorts-nav[data-rs-short-next] {
    grid-column: 2 / 3 !important;
    grid-row: 2 / 3 !important;
    align-self: start !important;
}

.rs-shorts-nav[data-rs-short-prev] i,
.rs-shorts-nav[data-rs-short-next] i {
    transform: rotate(90deg);
}

.rs-shorts-feed {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 3 !important;
    height: 100%;
    max-width: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    position: relative;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    touch-action: pan-y;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.rs-shorts-feed::-webkit-scrollbar {
    display: none;
}

.rs-shorts-slide {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100%;
    padding: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.rs-shorts-player-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    max-width: 100%;
    width: 100%;
}

.rs-shorts-player {
    aspect-ratio: 9 / 16;
    background: #000;
    position: relative; /* anchor for swipe overlay */
    height: auto;
    max-height: 100% !important;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    width: min(100%, calc((100vh - 82px) * 0.5625));
    width: min(100%, calc((100svh - 82px) * 0.5625));
}

.rs-shorts-player iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
}

.rs-shorts-swipe-zone-left,
.rs-shorts-swipe-zone-right {
    display: none;
}

@media (hover: none) and (pointer: coarse) {
    .rs-shorts-swipe-zone-left,
    .rs-shorts-swipe-zone-right {
        display: block;
        position: absolute;
        z-index: 5;
        background: transparent;
        touch-action: none; /* edge swipes navigate while the iframe center stays native */
    }
    .rs-shorts-swipe-zone-left { top: 0; bottom: 0; left: 0; width: 18%; }
    .rs-shorts-swipe-zone-right { top: 0; bottom: 0; right: 0; width: 18%; }
}

.rs-shorts-meta {
    color: #fff;
    flex: 0 0 auto;
    min-height: 48px;
    padding: 10px 4px 0;
}

.rs-shorts-meta h4 {
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 6px;
}

.rs-shorts-meta a {
    color: #ffd8bf;
    font-size: 11px;
    font-weight: 900;
}

.rs-shorts-feed-loading {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    left: 0;
    padding: 10px;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
    top: 12px;
    z-index: 6;
}

.rs-modern-public .post-info-meta b {
    color: var(--rs-text);
    font-weight: 800;
}

.rs-modern-public .post-text-content {
    color: var(--rs-text);
    font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif !important;
    font-size: 19px;
    line-height: 1.85;
    margin-top: 22px;
    max-width: 100%;
    overflow-x: auto;
    overflow-wrap: break-word;
    text-align: justify !important;
    text-align-last: left;
    text-indent: 0 !important;
    white-space: normal !important;
    word-break: normal;
    word-spacing: normal !important;
}

.rs-modern-public .post-text-content h1,
.rs-modern-public .post-text-content h2,
.rs-modern-public .post-text-content h3,
.rs-modern-public .post-text-content h4,
.rs-modern-public .post-text-content h5,
.rs-modern-public .post-text-content h6 {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: justify !important;
    text-align-last: left;
    text-indent: 0 !important;
}

.rs-modern-public .post-text-content p,
.rs-modern-public .post-text-content span,
.rs-modern-public .post-text-content div,
.rs-modern-public .post-text-content font,
.rs-modern-public .post-text-content strong,
.rs-modern-public .post-text-content b,
.rs-modern-public .post-text-content em,
.rs-modern-public .post-text-content u {
    box-sizing: border-box;
    font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", sans-serif !important;
    margin-left: 0 !important;
    max-width: 100%;
    overflow-wrap: break-word;
    padding-left: 0 !important;
    text-align: justify !important;
    text-align-last: left;
    text-indent: 0 !important;
    white-space: normal !important;
    word-break: normal;
    word-spacing: normal !important;
}

.rs-modern-public .post-text-content p {
    margin-bottom: 18px;
}

.rs-modern-public .post-text-content table,
.rs-modern-public .post-text-content iframe,
.rs-modern-public .post-text-content video {
    max-width: 100%;
}

.rs-modern-public .post-text-content img {
    height: auto;
    max-width: 100%;
}

/* CMS / WYSIWYG content often has inline style="color:#000" or <font color="black">.
   In dark mode these hardcoded colours make text invisible against the dark background.
   Force all descendant text to the theme text colour; links get the accent colour.
   background-color is also stripped so any inline highlight boxes don't block text. */
[data-theme="dark"] .rs-modern-public .post-text-content,
[data-theme="dark"] .rs-modern-public .post-text-content * {
    color: var(--rs-text) !important;
    background-color: transparent !important;
    border-color: var(--rs-border) !important;
}

[data-theme="dark"] .rs-modern-public .post-text-content a,
[data-theme="dark"] .rs-modern-public .post-text-content a * {
    color: var(--rs-accent) !important;
}

.rs-modern-public .fbt-contact-box input {
    background: var(--rs-surface);
    border: 1px solid var(--rs-border-strong);
    color: var(--rs-text);
    height: 44px;
    padding: 0 12px;
    width: 100%;
}

.rs-modern-public .fbt-contact-box label {
    color: var(--rs-text);
    font-weight: 800;
}

.rs-modern-public .fbt-contact-box .button {
    background: var(--rs-accent);
    border: 1px solid var(--rs-accent);
    color: #fff;
    font-weight: 900;
    height: 44px;
    margin-bottom: 16px;
    padding: 0 18px;
    width: 100%;
}

.rs-modern-public .fbt-contact-box .button:hover {
    background: var(--rs-ink);
    border-color: var(--rs-ink);
}

.rs-modern-public .footer-wrapper {
    background: var(--rs-ink);
    border-top: 4px solid var(--rs-accent);
    margin-top: 28px;
}

.rs-modern-public #BackToTop {
    background: var(--rs-accent);
}

[data-theme="dark"] .rs-modern-public img {
    filter: none;
}

[data-theme="dark"] .rs-modern-public .navbar-toggle .icon-bar {
    background: #fff;
}

@media (max-width: 991px) {
    .rs-modern-public .site-search-form {
        max-width: 100%;
        width: 33.333333%;
    }

    .rs-modern-public .navbar.megamenu {
        background: var(--rs-nav);
        border-bottom: 0;
        min-height: 58px;
        position: relative;
    }

    .rs-modern-public .navbar.megamenu .navbar-header {
        align-items: center;
        background: var(--rs-nav) !important;
        border-bottom: 0;
        display: flex;
        justify-content: space-between;
        left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        min-height: 58px !important;
        padding: 0 10px;
        position: absolute !important;
        right: 0 !important;
        top: 0;
        width: 100% !important;
        z-index: 1051;
    }

    .rs-modern-public .navbar-brand img {
        max-height: 44px;
    }

    .rs-modern-public .navbar-brand.rs-logo-link {
        padding: 0;
    }

    .rs-modern-public .navbar.megamenu .navbar-brand {
        display: block;
    }

    .rs-modern-public .navbar-brand .rs-logo-img {
        display: none;
    }

    .rs-modern-public .navbar-brand .rs-logo-mask {
        background-color: #fff;
        display: block;
    }

    .rs-modern-public .navbar.megamenu .navbar-nav {
        display: block;
    }

    .rs-modern-public .navbar-collapse {
        background: var(--rs-nav-deep);
        border: 0;
        box-shadow: 0 16px 30px rgba(0, 21, 56, 0.24);
        left: 0;
        margin-top: 0;
        max-height: calc(100vh - 58px);
        overflow-y: auto;
        padding-left: 0;
        padding-right: 0;
        position: absolute;
        right: 0;
        top: 58px;
        transform: translateY(-4px);
        transition: opacity 0.18s ease, transform 0.18s ease;
        width: 100%;
        z-index: 1050;
    }

    .rs-modern-public .navbar-collapse.collapse {
        display: none !important;
        opacity: 0;
    }

    .rs-modern-public .navbar-collapse.collapse.in {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
    }

    .rs-modern-public .navbar-nav {
        background: var(--rs-nav-deep) !important;
        border: 0 !important;
        margin: 0;
    }

    .rs-modern-public .navbar-nav .open .dropdown-menu {
        background: var(--rs-nav-deep);
        border: 0;
        box-shadow: none;
        padding: 0;
        position: static;
        width: 100%;
    }

    .rs-modern-public .navbar-nav > li > a {
        border: 0 !important;
        color: #fff !important;
        font-size: 14px;
        line-height: 20px;
        padding: 12px 14px;
    }

    .rs-modern-public .post-item .img-thumb {
        height: 148px !important;
    }

    .rs-modern-public .post-item.big .img-thumb {
        height: 220px !important;
    }

    .rs-modern-public .post-item.small .img-thumb {
        height: 74px !important;
    }

    .rs-modern-public .navbar-toggle {
        border: 0 !important;
        margin: 0;
        padding: 10px 8px;
    }

    .rs-modern-public .navbar-toggle:focus,
    .rs-modern-public .navbar-toggle:hover {
        background: rgba(255, 255, 255, 0.08) !important;
    }

    .rs-modern-public .navbar-toggle .icon-bar {
        background: #fff !important;
        border-radius: 1px;
    }

    .rs-modern-public .navbar-nav > li > a:hover,
    .rs-modern-public .navbar-nav > li > a:focus,
    .rs-modern-public .navbar-nav > li.open > a,
    .rs-modern-public .navbar-nav > li.active > a {
        background: rgba(255, 255, 255, 0.08) !important;
        color: #fff !important;
    }

    .rs-modern-public .navbar-default .navbar-nav .open .dropdown-menu > li > a,
    .rs-modern-public .navbar-nav .open .dropdown-menu > li > a,
    .rs-modern-public .dropdown-menu > li > a {
        color: #fff !important;
        padding: 10px 24px;
    }

    .rs-modern-public .sidebar .theiaStickySidebar,
    .rs-modern-public .post-sidebar .theiaStickySidebar {
        position: static;
    }

    .rs-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rs-shorts-list {
        grid-template-columns: 1fr;
    }

    .rs-shorts-tile-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rs-home-video-section-wide .rs-video-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    body.rs-modern-public {
        font-size: 14px;
        line-height: 1.55;
        overflow-x: hidden;
        word-spacing: normal;
    }

    .rs-modern-public .header-wrapper {
        display: none;
    }

    .rs-modern-public #main-content {
        padding-top: 8px;
    }

    .rs-modern-public .container {
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
    }

    .rs-modern-public .row {
        margin-left: -6px;
        margin-right: -6px;
    }

    .rs-modern-public [class*="col-"],
    .rs-modern-public .fbt-col-lg-9,
    .rs-modern-public .fbt-col-lg-3,
    .rs-modern-public .main-wrapper,
    .rs-modern-public .post-wrapper,
    .rs-modern-public .post-container,
    .rs-modern-public .post-left-sidebar,
    .rs-modern-public .sidebar,
    .rs-modern-public .post-sidebar {
        padding-left: 6px;
        padding-right: 6px;
    }

    .rs-modern-public .fbt-col-lg-9,
    .rs-modern-public .fbt-col-lg-3,
    .rs-modern-public .main-wrapper,
    .rs-modern-public .post-wrapper,
    .rs-modern-public .post-container,
    .rs-modern-public .post-left-sidebar,
    .rs-modern-public .sidebar,
    .rs-modern-public .post-sidebar {
        float: none;
        width: 100%;
    }

    .rs-modern-public .outer-wrapper {
        margin-bottom: 12px;
    }

    /* Search strip reappears on mobile — only the theme-toggle button remains */
    .site-search-strip {
        display: block;
        margin: 6px 0 0;
    }

    .site-search-strip .container {
        justify-content: flex-end;
    }

    .rs-theme-toggle-mobile {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .rs-modern-public .site-search-form {
        flex: 1 1 auto;
        height: 34px;
        max-width: none;
        width: auto;
    }

    .rs-modern-public #site-search {
        height: 32px;
        min-width: 0;
        width: 100%;
    }

    .rs-modern-public #site-search-submit {
        flex-basis: 38px;
        height: 32px;
        width: 38px;
    }

    .rs-modern-public .post-item {
        height: auto;
    }

    .rs-modern-public .post-item .img-thumb {
        height: 122px !important;
    }

    .rs-modern-public .post-item.big .img-thumb {
        height: 190px !important;
    }

    .rs-modern-public .post-item.small .img-thumb {
        height: 62px !important;
    }

    .rs-modern-public .widget,
    .rs-modern-public .fbt-vc-inner,
    .rs-modern-public .fbt-vc-hr-inner,
    .rs-modern-public .main-carousel,
    .rs-modern-public .gallery,
    .rs-modern-public .single-post,
    .rs-modern-public .fbt-related-posts,
    .rs-modern-public .fbt-contact-box {
        margin-bottom: 12px;
        padding: 10px;
    }

    .rs-modern-public .title-wrapper {
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .rs-modern-public .title-wrapper h2,
    .rs-modern-public .title-wrapper h2 span,
    .rs-modern-public .title-wrapper h2 a {
        font-size: 15px;
        line-height: 1.25;
    }

    .rs-modern-public .post-item.big h3,
    .rs-modern-public .post-item h3 {
        font-size: 14px;
        line-height: 1.35;
        margin-bottom: 5px;
    }

    .rs-modern-public .post-item.small h3 {
        font-size: 13px;
        line-height: 1.35;
    }

    .rs-modern-public .post-item.big h3 {
        font-size: 17px;
    }

    .rs-modern-public .post-content {
        padding: 8px;
    }

    .rs-modern-public .post-item.small {
        margin-bottom: 10px;
    }

    .rs-modern-public .post-item.small .row {
        align-items: center;
        display: flex;
    }

    .rs-modern-public .post-item.small .post-content {
        padding: 0 4px 0 0;
    }

    .rs-modern-public .post-info {
        font-size: 11px;
        line-height: 1.3;
        margin-top: auto;
    }

    .rs-modern-public .text-content {
        display: none;
    }

    .rs-modern-public .post-grid,
    .rs-modern-public .padding-reset {
        margin-bottom: 12px;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .rs-modern-public .padding-reset.col-xs-6,
    .rs-modern-public .post-grid.col-xs-6,
    .rs-modern-public .gallery-img .col-xs-6 {
        width: 50%;
    }

    .rs-modern-public .post-grid .post-item:not(.small) .fbt-resize,
    .rs-modern-public .padding-reset .post-item:not(.small) .fbt-resize,
    .rs-modern-public .gallery-img .post-item:not(.small) .fbt-resize,
    .rs-modern-public .post-container .post-item:not(.small) .fbt-resize {
        aspect-ratio: auto;
        height: 100% !important;
    }

    .rs-modern-public .post-grid .post-item:not(.small) .fbt-resize img,
    .rs-modern-public .padding-reset .post-item:not(.small) .fbt-resize img,
    .rs-modern-public .gallery-img .post-item:not(.small) .fbt-resize img,
    .rs-modern-public .post-container .post-item:not(.small) .fbt-resize img {
        height: 100% !important;
        object-fit: cover;
        width: 100%;
    }

    .rs-modern-public .single-post .img-crop h3 {
        font-size: 23px;
        line-height: 1.25;
    }

    .rs-modern-public .post-text-content {
        font-size: 16px;
        line-height: 1.75;
    }

    .rs-modern-public .post-info-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .rs-share-menu {
        left: auto;
        right: 0;
    }

    .rs-video-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .rs-home-video-section,
    .rs-article-video-section {
        margin: 14px 0;
        padding: 14px 10px 12px;
    }

    .rs-video-section-head h2 {
        font-size: 18px;
    }

    .rs-video-section-head.rs-video-section-head-shorts h2 {
        font-size: 16px;
    }

    .rs-shorts-modal {
        padding: 48px 6px 12px;
    }

    .rs-shorts-modal-body {
        display: grid !important;
        grid-template-columns: minmax(0, min(100%, 430px)) !important;
        grid-template-rows: 1fr 1fr !important;
        align-items: center;
        justify-content: center;
        height: calc(100vh - 60px);
        height: calc(100svh - 60px);
        max-width: 100%;
        gap: 0 !important;
    }

    .rs-shorts-feed {
        grid-column: 1 / 2 !important;
        justify-self: center;
    }
    
    .rs-shorts-nav {
        display: inline-flex !important;
        font-size: 18px;
        height: 42px;
        position: absolute;
        right: 4px;
        width: 42px;
        z-index: 7;
    }

    .rs-shorts-nav[data-rs-short-prev] {
        top: calc(50% - 52px);
    }

    .rs-shorts-nav[data-rs-short-next] {
        top: calc(50% + 8px);
    }

    .rs-shorts-close {
        font-size: 22px;
        right: 10px;
        top: 10px;
    }
}

@media (max-width: 991px) {
    .rs-short-tile img {
        aspect-ratio: 9 / 14;
    }
}

@media (max-width: 767px) {
    .rs-short-tile img {
        aspect-ratio: 9 / 13;
    }

    .rs-shorts-btn {
        flex-basis: 28px;
        height: 28px;
        width: 28px;
    }
}

@media (max-width: 575px) {
    .rs-short-tile img {
        aspect-ratio: 9 / 12;
        border-radius: 10px;
    }
}

.rs-modern-public .rs-video-date {
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    font-size: 11px;
    font-weight: 700;
    gap: 6px;
    line-height: 1.2;
    margin-top: 7px;
}

.rs-modern-public .rs-video-date i {
    font-size: 11px;
}

.rs-modern-public .rs-feature-pair > [class*="col-"] {
    margin-bottom: 18px;
    padding-left: 9px;
    padding-right: 9px;
}

.rs-modern-public .rs-feature-pair {
    margin-left: -9px;
    margin-right: -9px;
}

.rs-modern-public .rs-state-row {
    border-top: 1px solid rgba(0, 39, 101, 0.12);
    margin: 26px -12px 0;
    padding-top: 20px;
}

.rs-modern-public .rs-state-column {
    padding-left: 12px;
    padding-right: 12px;
}

.rs-modern-public .rs-state-widget {
    margin-bottom: 24px;
}

.rs-modern-public .rs-state-widget-body {
    align-items: stretch;
    display: flex;
    margin-left: -8px;
    margin-right: -8px;
}

.rs-modern-public .rs-state-widget-list,
.rs-modern-public .rs-state-widget-lead {
    padding-left: 8px;
    padding-right: 8px;
}

.rs-modern-public .rs-state-widget-list {
    flex: 0 0 40%;
    max-width: 40%;
    width: 40%;
}

.rs-modern-public .rs-state-widget-lead {
    flex: 0 0 60%;
    max-width: 60%;
    width: 60%;
}

.rs-modern-public .rs-state-widget-lead .post-item.big {
    margin-bottom: 0;
}

.rs-modern-public .rs-state-widget-lead .fbt-resize {
    border-radius: 12px;
    height: 260px;
}

.rs-modern-public .rs-state-widget-lead .fbt-resize img {
    height: 100% !important;
    object-fit: cover;
    width: 100%;
}

.rs-modern-public .rs-state-widget-lead h3 {
    font-size: 18px;
    line-height: 1.35;
}

.rs-modern-public .rs-state-mini-news {
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 39, 101, 0.08);
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.rs-modern-public .rs-state-mini-news:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rs-modern-public .rs-state-mini-img {
    flex: 0 0 66px;
}

.rs-modern-public .rs-state-mini-img img {
    border-radius: 8px;
    display: block;
    height: 50px;
    object-fit: cover;
    width: 66px;
}

.rs-modern-public .rs-state-mini-content a {
    color: var(--rs-text);
    display: block;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.rs-modern-public .rs-state-mini-content span {
    color: var(--rs-muted);
    display: block;
    font-size: 10px;
    line-height: 1.2;
    margin-top: 4px;
}

.rs-modern-public .rs-home-states-full {
    clear: both;
}

.rs-modern-public .rs-delhi-state-row {
    border-top: 1px solid rgba(0, 39, 101, 0.12);
    margin-top: 18px;
    padding-top: 18px;
}

.rs-modern-public .rs-delhi-state-row .rs-state-widget {
    margin-bottom: 0;
}

.rs-modern-public .rs-home-after-state-wrapper {
    margin-top: 4px;
}

.rs-modern-public .rs-desh-apradh-row {
    margin-top: 8px;
}

.rs-modern-public .rs-ad-placeholder {
    align-items: center;
    background: rgba(0, 39, 101, 0.035);
    border: 2px dashed #0b63ce;
    border-radius: 12px;
    color: #0b63ce;
    display: flex;
    font-size: 12px;
    font-weight: 900;
    justify-content: center;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.rs-modern-public .rs-ad-placeholder-wide {
    height: 130px;
    margin: 4px 0 24px;
}

.rs-modern-public .rs-ad-placeholder-vertical {
    height: 320px;
    margin-bottom: 14px;
}

.rs-modern-public .rs-ad-placeholder-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 14px;
}

.rs-modern-public .rs-ad-placeholder-cube {
    aspect-ratio: 1 / 1;
    min-height: 86px;
}

.rs-modern-public .rs-ad-placeholder-rect {
    height: 120px;
    margin-bottom: 18px;
}

.rs-modern-public .post-container .post-grid {
    margin-bottom: 18px;
    padding-left: 9px;
    padding-right: 9px;
}

.rs-modern-public .post-container > .row {
    margin-left: -9px;
    margin-right: -9px;
}

@media (max-width: 991px) {
    .rs-modern-public .rs-state-widget-body {
        flex-direction: column;
    }

    .rs-modern-public .rs-state-widget-list,
    .rs-modern-public .rs-state-widget-lead {
        flex-basis: auto;
        max-width: 100%;
        width: 100%;
    }

    .rs-modern-public .rs-state-widget-lead {
        order: 1;
    }

    .rs-modern-public .rs-state-widget-list {
        margin-top: 12px;
        order: 2;
    }
}

@media (max-width: 767px) {
    .rs-modern-public .rs-state-row {
        margin-top: 18px;
        padding-top: 14px;
    }

    .rs-modern-public .rs-state-widget-lead .fbt-resize {
        height: 210px;
    }

    .rs-modern-public .rs-state-mini-img {
        flex-basis: 58px;
    }

    .rs-modern-public .rs-state-mini-img img {
        height: 44px;
        width: 58px;
    }
}


/* =========================================================================
   Footer (rs-footer)
   ========================================================================= */
.rs-modern-public .rs-footer {
    background: linear-gradient(180deg, #0e1828 0%, #08101c 100%);
    color: #cbd3df;
    border-top: 4px solid var(--rs-accent, #c9303f);
    margin-top: 36px;
    padding: 48px 0 0;
    font-size: 14px;
    line-height: 1.65;
}

.rs-modern-public .rs-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rs-modern-public .rs-footer-col {
    min-width: 0;
}

.rs-modern-public .rs-footer-logo {
    display: inline-block;
    margin-bottom: 14px;
}

.rs-modern-public .rs-footer-logo img {
    max-width: 190px;
    height: auto;
    /* Source PNG is dark — turn it pure white for the dark footer.
       brightness(0) collapses RGB to black, then invert(1) flips black→white. */
    filter: brightness(0) invert(1);
}

.rs-modern-public .rs-footer-tagline {
    margin: 0 0 18px;
    color: #a8b2c1;
    font-size: 13.5px;
    max-width: 360px;
}

.rs-modern-public .rs-footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rs-modern-public .rs-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: #e8edf4;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
    text-decoration: none;
    font-size: 15px;
}

.rs-modern-public .rs-social:hover,
.rs-modern-public .rs-social:focus {
    transform: translateY(-2px);
    background: var(--rs-accent, #c9303f);
    color: #fff;
}

.rs-modern-public .rs-footer-publisher {
    position: relative;
    margin-top: 18px;
    max-width: 370px;
    padding: 13px 15px 13px 17px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.rs-modern-public .rs-footer-publisher::before {
    content: "";
    position: absolute;
    inset: 12px auto 12px 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: var(--rs-accent, #c9303f);
}

.rs-modern-public .rs-footer-publisher span {
    display: block;
}

.rs-modern-public .rs-footer-publisher-hi {
    color: #f8fafc;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.55;
}

.rs-modern-public .rs-footer-publisher-en {
    margin-top: 3px;
    color: #aeb8c7;
    font-size: 12.5px;
    line-height: 1.45;
}

.rs-modern-public .rs-footer-heading {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 16px;
    padding-bottom: 10px;
    position: relative;
}

.rs-modern-public .rs-footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--rs-accent, #c9303f);
    border-radius: 2px;
}

.rs-modern-public .rs-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rs-modern-public .rs-footer-list li {
    margin-bottom: 8px;
}

.rs-modern-public .rs-footer-list a,
.rs-modern-public .rs-footer-contact-list a {
    color: #cbd3df;
    text-decoration: none;
    transition: color 0.15s ease, padding-left 0.15s ease;
    display: inline-flex;
    align-items: center;
}

.rs-modern-public .rs-footer-list a::before {
    content: "›";
    margin-right: 8px;
    color: var(--rs-accent, #c9303f);
    font-weight: 700;
    transform: translateX(0);
    transition: transform 0.15s ease;
}

.rs-modern-public .rs-footer-list a:hover,
.rs-modern-public .rs-footer-list a:focus,
.rs-modern-public .rs-footer-contact-list a:hover,
.rs-modern-public .rs-footer-contact-list a:focus {
    color: #fff;
    text-decoration: none;
}

.rs-modern-public .rs-footer-list a:hover::before {
    transform: translateX(3px);
}

.rs-modern-public .rs-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rs-modern-public .rs-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #cbd3df;
}

.rs-modern-public .rs-footer-contact-list li i {
    width: 22px;
    text-align: center;
    color: var(--rs-accent, #c9303f);
    margin-top: 3px;
    flex-shrink: 0;
}

.rs-modern-public .rs-footer-locations {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rs-modern-public .rs-footer-locations strong {
    color: #fff;
    font-weight: 600;
}

.rs-modern-public .rs-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0 22px;
    color: #8b95a4;
    font-size: 13px;
}

.rs-modern-public .rs-footer-bottom strong {
    color: #fff;
}

.rs-modern-public .rs-footer-bottom-right {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.rs-modern-public .rs-footer-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rs-modern-public .rs-footer-stat i {
    color: var(--rs-accent, #c9303f);
    font-size: 14px;
}

.rs-modern-public .rs-footer-stat-label {
    color: #8b95a4;
}

.rs-modern-public .rs-footer-stat-value {
    color: #fff;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.rs-modern-public .rs-footer-stat-live .rs-footer-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2bb673;
    box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.7);
    animation: rs-footer-pulse 1.6s infinite;
    display: inline-block;
}

@keyframes rs-footer-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(43, 182, 115, 0); }
    100% { box-shadow: 0 0 0 0 rgba(43, 182, 115, 0); }
}

@media (max-width: 991px) {
    .rs-modern-public .rs-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
    }
    /* Brand column spans the full width on tablets so the logo + tagline
       still read comfortably; news/quick-links/contact share the row below. */
    .rs-modern-public .rs-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .rs-modern-public .rs-footer {
        padding-top: 32px;
    }
    /* Two columns on small phones — News and Quick Links sit side-by-side
       under the full-width Brand and Contact blocks. Saves a lot of vertical
       scroll vs the previous single-column footer. */
    .rs-modern-public .rs-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px 18px;
    }
    .rs-modern-public .rs-footer-brand,
    .rs-modern-public .rs-footer-contact {
        grid-column: 1 / -1;
    }
    .rs-modern-public .rs-footer-tagline {
        font-size: 13px;
    }
    .rs-modern-public .rs-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .rs-modern-public .rs-footer-bottom-right {
        justify-content: center;
    }
}



/* =========================================================================
   Section headings — monochrome text + solid red accent mark + underline
   ========================================================================= */

/* Title text stays black on light theme / white on dark, regardless of any
   .color-N class the legacy markup carries. Background is forced clear. */
.rs-modern-public .title-wrapper h2 span,
.rs-modern-public .title-wrapper h2 a,
.rs-modern-public .title-wrapper h2 .color-1,
.rs-modern-public .title-wrapper h2 .color-2,
.rs-modern-public .title-wrapper h2 .color-3,
.rs-modern-public .title-wrapper h2 .color-4,
.rs-modern-public .title-wrapper h2 .color-5,
.rs-modern-public .title-wrapper h2 .color-6,
.rs-modern-public .title-wrapper h2 .color-7,
.rs-modern-public .title-wrapper h2 .color-8 {
    background: transparent !important;
    color: var(--rs-text) !important;
    font-weight: 800;
    letter-spacing: 0.005em;
}

/* Nested anchors inside a colored span follow the same monochrome rule. */
.rs-modern-public .title-wrapper h2 .color-1 a,
.rs-modern-public .title-wrapper h2 .color-2 a,
.rs-modern-public .title-wrapper h2 .color-3 a,
.rs-modern-public .title-wrapper h2 .color-4 a,
.rs-modern-public .title-wrapper h2 .color-5 a,
.rs-modern-public .title-wrapper h2 .color-6 a,
.rs-modern-public .title-wrapper h2 .color-7 a,
.rs-modern-public .title-wrapper h2 .color-8 a {
    color: var(--rs-text) !important;
    background: transparent !important;
    text-decoration: none;
}

/* Solid accent mark — a thick vertical bar in brand red, sitting just to
   the left of every section title. Distinctive and minimal; no FA glyph. */
.rs-modern-public .title-wrapper h2 > span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 18px;
    background: var(--rs-accent);
    border-radius: 2px;
    margin-right: 10px;
    vertical-align: -3px;
}

/* Underline: thin track across the row + a short bold red segment from the
   left, replacing the previous full-width 1px hairline. */
.rs-modern-public .title-wrapper {
    margin: 0 0 14px;
    padding-bottom: 8px;
    position: relative;
    border-bottom: 1px solid var(--rs-border);
}

/* Underline accent removed per request — only the thin grey track remains. */
.rs-modern-public .title-wrapper:after {
    content: none;
}

.rs-modern-public .title-wrapper h2 span,
.rs-modern-public .title-wrapper h2 a {
    padding: 0 0 4px;
}

.rs-modern-public .title-wrapper .rs-page-heading,
.rs-modern-public .title-wrapper h1.rs-page-heading {
    color: var(--rs-text);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.25;
    margin: 0;
    padding: 0;
    text-transform: none;
}

.rs-modern-public .title-wrapper .rs-page-heading span,
.rs-modern-public .title-wrapper h1.rs-page-heading span {
    background: transparent !important;
    color: var(--rs-text) !important;
    display: inline-block;
    padding: 0 0 4px;
}

.rs-modern-public .title-wrapper .rs-page-heading span::before,
.rs-modern-public .title-wrapper h1.rs-page-heading span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 18px;
    background: var(--rs-accent);
    border-radius: 2px;
    margin-right: 10px;
    vertical-align: -3px;
}

.rs-modern-public .owl-wrapper > .owl-carousel:not(.owl-theme) {
    display: flex;
    gap: 14px;
    overflow: hidden;
}

.rs-modern-public .main-carousel .owl-wrapper > .owl-carousel:not(.owl-theme) > .item,
.rs-modern-public .fbt-related-posts .rs-related-carousel .owl-carousel:not(.owl-theme) > .item {
    flex: 0 0 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
}

.rs-modern-public .sidebar-carousel .owl-wrapper > .owl-carousel:not(.owl-theme) {
    display: block;
}

.rs-modern-public .sidebar-carousel .owl-wrapper > .owl-carousel:not(.owl-theme) > .item + .item {
    display: none;
}

.rs-modern-public .fbt-related-posts .rs-related-carousel .owl-carousel:not(.owl-theme) {
    display: flex;
    gap: 14px;
    overflow: hidden;
}

.rs-modern-public .fbt-related-posts .rs-related-carousel .owl-carousel:not(.owl-theme) > .item {
    flex: 0 0 calc(25% - 11px);
    max-width: calc(25% - 11px);
}

.rs-modern-public .fbt-related-posts .post-item {
    min-width: 0;
}

@media (max-width: 767px) {
    .rs-modern-public .main-carousel .owl-wrapper > .owl-carousel:not(.owl-theme) > .item,
    .rs-modern-public .fbt-related-posts .rs-related-carousel .owl-carousel:not(.owl-theme) > .item {
        flex-basis: 72%;
        max-width: 72%;
    }
}


/* =========================================================================
   Shorts & Videos sections — accent bar in title + nav arrows in header
   (mirrors the look of the technology owl-carousel section)
   ========================================================================= */

/* The Shorts / Videos head row already exists (.rs-video-section-head); make
   it a flex row that pushes nav controls to the right. flex-wrap:nowrap
   keeps the title and nav cluster on one line at every width — the title
   shrinks with ellipsis instead of pushing the controls to a new row. */
.rs-modern-public .rs-section-with-nav .rs-video-section-head {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--rs-border);
    position: relative;
}

.rs-modern-public .rs-section-with-nav .rs-section-title {
    min-width: 0; /* allow shrink+ellipsis inside flex */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rs-modern-public .rs-section-with-nav .rs-section-nav {
    flex: 0 0 auto;
}

/* Hide the redundant "SHORTS" external link inside the shorts widget — the
   YouTube channel pill in the masthead and the footer already cover that.
   Keeps the title + arrows on one line in the narrow sidebar. Videos
   section keeps its "YouTube" link since it has more horizontal room.
   !important guards against legacy mobile-specific rules in style.css. */
.rs-modern-public .rs-sidebar-shorts .rs-section-link {
    display: none !important;
}

/* Section title: same red accent bar treatment as .title-wrapper headings. */
.rs-modern-public .rs-section-title {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: var(--rs-text);
    letter-spacing: 0.005em;
    line-height: 1.25;
}

.rs-modern-public .rs-section-title > span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 18px;
    background: var(--rs-accent);
    border-radius: 2px;
    margin-right: 10px;
    vertical-align: -3px;
}

/* Eyebrow line above the videos H2 (kept for "राष्ट्रीय सागर"). */
.rs-modern-public .rs-section-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rs-accent);
    margin-bottom: 2px;
}

/* Right-side nav cluster: optional external link + prev/next pill buttons. */
.rs-modern-public .rs-section-nav {
    align-items: center;
    display: flex;
    gap: 8px;
}

.rs-modern-public .rs-section-link {
    color: var(--rs-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--rs-border);
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.rs-modern-public .rs-section-link:hover,
.rs-modern-public .rs-section-link:focus {
    color: var(--rs-accent);
    border-color: var(--rs-accent);
    text-decoration: none;
}

.rs-modern-public .rs-nav-btn {
    align-items: center;
    background: transparent;
    border: 1px solid var(--rs-border);
    border-radius: 999px;
    color: var(--rs-text);
    cursor: pointer;
    display: inline-flex;
    height: 32px;
    justify-content: center;
    padding: 0;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
    width: 32px;
}

.rs-modern-public .rs-nav-btn i {
    font-size: 17px;
    line-height: 1;
}

.rs-modern-public .rs-nav-btn:hover,
.rs-modern-public .rs-nav-btn:focus {
    background: var(--rs-accent);
    border-color: var(--rs-accent);
    color: #fff;
    outline: 0;
    transform: translateY(-1px);
}

/* Hide the legacy floating arrow row at the bottom, in case any view still
   emits .rs-shorts-controls — they live in the title bar now. */
.rs-modern-public .rs-section-with-nav .rs-shorts-controls,
.rs-modern-public .rs-section-with-nav .rs-videos-controls {
    display: none !important;
}

/* =========================================================================
   Sleek modern date / time widget (top masthead)
   ========================================================================= */
.rs-modern-public .rs-daily-brief {
    background: var(--rs-card, #fff);
    border: 1px solid var(--rs-border);
    border-radius: 999px;
    padding: 4px 6px;
    gap: 0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

[data-theme="dark"] .rs-modern-public .rs-daily-brief {
    background: rgba(255, 255, 255, 0.04);
}

.rs-modern-public .rs-daily-brief .rs-brief-item {
    align-items: center;
    background: transparent;
    color: var(--rs-text);
    display: inline-flex;
    font-size: 12.5px;
    font-weight: 700;
    gap: 6px;
    padding: 6px 14px;
    position: relative;
}

/* Vertical separator between the date and time chips. */
.rs-modern-public .rs-daily-brief .rs-brief-item + .rs-brief-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background: var(--rs-border);
}

.rs-modern-public .rs-daily-brief .rs-brief-item i {
    color: var(--rs-accent);
    font-size: 12px;
}

/* The clock specifically — tabular figures so it doesn't jitter, slight
   tracking, and the AM/PM block reads as small caps. */
.rs-modern-public .rs-daily-brief [data-brief-time] {
    font-feature-settings: "tnum" 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    color: var(--rs-text);
}

.rs-modern-public .rs-daily-brief [data-brief-date] {
    color: var(--rs-text);
}


/* =========================================================================
   Shorts & Videos — sync title size + drop button borders + match colors
   ========================================================================= */

/* Title size now matches the .title-wrapper headings (17px / 900). */
.rs-modern-public .rs-section-with-nav .rs-section-title,
.rs-modern-public .rs-sidebar-shorts .rs-video-section-head h2.rs-section-title,
.rs-modern-public .rs-video-section-head.rs-video-section-head-shorts h2.rs-section-title,
.rs-modern-public .rs-home-video-section .rs-video-section-head h2.rs-section-title {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
    margin: 0;
}

/* Shorts title: black on light, white on dark — same as other sections.
   Accent bar stays brand red. */
.rs-modern-public .rs-sidebar-shorts .rs-section-title,
.rs-modern-public .rs-sidebar-shorts .rs-section-title > span {
    color: var(--rs-text) !important;
}

/* Videos section sits on a red gradient — title and bar are white. */
.rs-modern-public .rs-home-video-section .rs-section-title,
.rs-modern-public .rs-home-video-section .rs-section-title > span {
    color: #ffffff !important;
}

.rs-modern-public .rs-home-video-section .rs-section-title > span::before {
    background: #ffffff;
}

/* Eyebrow above the videos H2 stays warm-white. */
.rs-modern-public .rs-home-video-section .rs-section-eyebrow {
    color: #ffe3d3;
}

/* Drop the underline track on the wide-red videos head — already has its own
   white hairline from the legacy `.rs-video-section-head:after` rule. */
.rs-modern-public .rs-home-video-section .rs-video-section-head {
    border-bottom: 0;
}

/* ---------- Nav cluster (right side of head): no borders, color-matched ---------- */

/* Reset the borders/padding everywhere these controls live. */
.rs-modern-public .rs-section-with-nav .rs-section-link,
.rs-modern-public .rs-section-with-nav .rs-nav-btn {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: color 0.15s ease, background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

/* SHORTS (light surface): controls follow the body text colour, hover dims toward accent. */
.rs-modern-public .rs-sidebar-shorts .rs-section-link,
.rs-modern-public .rs-sidebar-shorts .rs-nav-btn {
    color: var(--rs-text) !important;
}

.rs-modern-public .rs-sidebar-shorts .rs-section-link:hover,
.rs-modern-public .rs-sidebar-shorts .rs-section-link:focus,
.rs-modern-public .rs-sidebar-shorts .rs-nav-btn:hover,
.rs-modern-public .rs-sidebar-shorts .rs-nav-btn:focus {
    color: var(--rs-accent) !important;
    background: transparent !important;
    transform: translateY(-1px);
    outline: 0;
}

/* VIDEOS (red surface): white controls, hover lifts to a soft cream. */
.rs-modern-public .rs-home-video-section .rs-section-link,
.rs-modern-public .rs-home-video-section .rs-nav-btn {
    color: #ffffff !important;
}

.rs-modern-public .rs-home-video-section .rs-section-link:hover,
.rs-modern-public .rs-home-video-section .rs-section-link:focus,
.rs-modern-public .rs-home-video-section .rs-nav-btn:hover,
.rs-modern-public .rs-home-video-section .rs-nav-btn:focus {
    color: #ffe3d3 !important;
    background: transparent !important;
    transform: translateY(-1px);
    outline: 0;
}

/* "YouTube" / "Shorts" external link sits flush with the arrows; uppercase
   like before but no pill outline now. */
.rs-modern-public .rs-section-with-nav .rs-section-link {
    padding: 4px 6px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.04em;
}

/* Arrow icons keep their size, just lose the pill outline and inherit colour. */
.rs-modern-public .rs-section-with-nav .rs-nav-btn {
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 999px;
}

.rs-modern-public .rs-section-with-nav .rs-nav-btn i {
    font-size: 18px;
    line-height: 1;
}

/* =========================================================================
   News title/content alignment
   ========================================================================= */
.rs-modern-public .post-item h3,
.rs-modern-public .post-content h3,
.rs-modern-public .img-credits h3,
.rs-modern-public .fbt-hr-crs .post-item h3,
.rs-modern-public .gallery-img .img-thumb .img-credits h3,
.rs-modern-public .sidebar .post-item h3,
.rs-modern-public .post-sidebar .post-item h3,
.rs-modern-public .post-left-sidebar .post-item h3,
.rs-modern-public .left-sidebar .post-item h3,
.rs-modern-public .rs-state-widget-lead h3,
.rs-modern-public .rs-state-mini-content a {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: justify !important;
    text-align-last: left;
    text-indent: 0 !important;
}

.rs-modern-public .post-content > a,
.rs-modern-public .img-credits > a,
.rs-modern-public .rs-state-mini-content a {
    display: block;
}

.rs-modern-public .post-content .text-content,
.rs-modern-public .post-content .text-content p,
.rs-modern-public .img-credits .text-content,
.rs-modern-public .img-credits .text-content p {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: justify !important;
    text-align-last: left;
    text-indent: 0 !important;
}


/* =========================================================================
   Wide-desktop layout fix (>= 1600px)
   The base grid in style.css redefines fbt-col-lg-* widths only at this
   breakpoint. That gave .fbt-col-lg-2 a too-narrow 16.66% width — the
   shorts section header (title + prev/next arrows) overflowed and the
   sidebar widget thumbnails shrank. Below 1600px the .col-md-3 / .col-md-9
   rules give a comfortable 25/75 split, so we keep that same ratio at
   >=1600px and also keep the breaking-news row stacked.
   ========================================================================= */
@media (min-width: 1600px) {
    /* Stack the home-top-news row (breaking news full-width above
       special/politics) at every viewport. */
    .rs-modern-public .rs-home-top-news > .fbt-col-lg-3,
    .rs-modern-public .rs-home-top-news > .fbt-col-lg-9 {
        float: none;
        width: 100%;
    }
    .rs-modern-public .rs-home-top-news > .fbt-col-lg-3 {
        margin-bottom: 14px;
    }

    /* Bottom row (खेल + बिहार चुनाव) — same treatment. Without this the
       inner 3/9 split kicks in at >=1600px and produces a 3-column bottom
       (खेल | बिहार | sidebar). Stack them so it's the same 2-column layout
       as on smaller desktops. */
    .rs-modern-public .post-wrapper > .row > .fbt-col-lg-3,
    .rs-modern-public .post-wrapper > .row > .fbt-col-lg-9 {
        float: none;
        width: 100%;
    }
    .rs-modern-public .post-wrapper > .row > .fbt-col-lg-3 {
        margin-bottom: 14px;
    }

    /* Restore the 75/25 main-wrapper / sidebar ratio that holds below 1600px,
       so the right sidebar is wide enough for the shorts header and the
       widget thumbnails don't shrink. */
    .rs-modern-public .outer-wrapper > .fbt-col-lg-10.main-wrapper,
    .rs-modern-public .outer-wrapper > .fbt-col-lg-10.post-wrapper {
        width: 75%;
    }
    .rs-modern-public .outer-wrapper > .fbt-col-lg-2.sidebar,
    .rs-modern-public .outer-wrapper > .fbt-col-lg-2.post-sidebar {
        width: 25%;
    }
}


/* =========================================================================
   COSMETIC ENHANCEMENTS — breadcrumbs, reading-progress, tag chips,
   trending rail, skeletons, smooth scroll, refined card motion
   ========================================================================= */

/* ---- Smooth scroll site-wide (respects reduced-motion preference) ---- */
@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

/* ---- Breadcrumbs ---- */
.rs-modern-public .rs-breadcrumbs {
    background: var(--rs-surface-soft, #f5f7fa);
    border-bottom: 1px solid var(--rs-border);
    padding: 10px 0;
    font-size: 13px;
    line-height: 1.4;
}

[data-theme="dark"] .rs-modern-public .rs-breadcrumbs {
    background: rgba(255, 255, 255, 0.03);
}

.rs-modern-public .rs-breadcrumbs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    min-width: 0;
}

.rs-modern-public .rs-breadcrumbs-item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

/* Separator chevron is its own list item between crumbs — gives consistent
   spacing on both sides regardless of crumb width. */
.rs-modern-public .rs-breadcrumbs-sep {
    display: inline-flex;
    align-items: center;
    color: var(--rs-border-strong, #c7ccd5);
    font-size: 11px;
    padding: 0 8px;
    flex: 0 0 auto;
}

.rs-modern-public .rs-breadcrumbs-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rs-muted, #6b7280);
    text-decoration: none;
    transition: color 0.15s ease;
    padding: 2px 0;
    position: relative !important;
    transform: translateY(0%) !important;
    -webkit-transform: translateY(0%) !important;
}

.rs-modern-public .rs-breadcrumbs-link:hover,
.rs-modern-public .rs-breadcrumbs-link:focus {
    color: var(--rs-accent);
    text-decoration: none;
}

.rs-modern-public .rs-breadcrumbs-home {
    color: var(--rs-accent);
    font-size: 13px;
}

.rs-modern-public .rs-breadcrumbs-current {
    color: var(--rs-text);
    font-weight: 700;
    max-width: 60vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rs-modern-public .rs-breadcrumbs-nolink {
    color: var(--rs-muted, #6b7280);
}

@media (max-width: 575px) {
    .rs-modern-public .rs-breadcrumbs { font-size: 12px; padding: 8px 0; }
    .rs-modern-public .rs-breadcrumbs-current { max-width: 70vw; }
    .rs-modern-public .rs-breadcrumbs-sep { padding: 0 6px; }
}

/* ---- Reading-progress bar (article detail only) ---- */
.rs-modern-public .rs-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9999;
    pointer-events: none;
    background: transparent;
}

.rs-modern-public .rs-reading-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--rs-accent, #c9303f), #ff7044);
    transition: width 0.08s linear;
    box-shadow: 0 0 6px rgba(201, 48, 63, 0.45);
}

/* ---- Reading-time + meta-info polish ---- */
.rs-modern-public .post-info-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 8px 0 12px;
    align-items: center;
}

.rs-modern-public .post-info-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--rs-muted, #6b7280);
    font-size: 13px;
}

.rs-modern-public .post-info-meta i {
    color: var(--rs-accent);
    font-size: 13px;
}

/* ---- Tag chips on articles ---- */
.rs-modern-public .rs-article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 18px 0 14px;
    padding: 14px 0 4px;
    border-top: 1px dashed var(--rs-border);
}

.rs-modern-public .rs-article-tags-icon {
    color: var(--rs-accent);
    font-size: 14px;
    margin-right: 2px;
}

.rs-modern-public .rs-article-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 11px;
    border-radius: 999px;
    background: var(--rs-surface-soft, #eef2f7);
    color: var(--rs-text);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.rs-modern-public .rs-article-tag:hover,
.rs-modern-public .rs-article-tag:focus {
    background: var(--rs-accent);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

[data-theme="dark"] .rs-modern-public .rs-article-tag {
    background: rgba(255, 255, 255, 0.06);
}

/* ---- Trending rail (home page) — auto-scroll marquee ---- */
.rs-modern-public .rs-trending-rail {
    background: linear-gradient(90deg, #fff5f5 0%, #ffffff 35%, #ffffff 100%);
    border-bottom: 1px solid var(--rs-border);
    overflow: hidden;
}

[data-theme="dark"] .rs-modern-public .rs-trending-rail {
    background: linear-gradient(90deg, rgba(201, 48, 63, 0.18) 0%, rgba(255, 255, 255, 0.02) 50%);
}

.rs-modern-public .rs-trending-rail .container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    min-width: 0;
}

.rs-modern-public .rs-trending-head {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--rs-accent, #c9303f);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 5px 11px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(201, 48, 63, 0.18);
}

.rs-modern-public .rs-trending-head i {
    font-size: 12px;
    color: #fff;
}

/* Viewport clips the scrolling track. overflow:hidden is correct here because
   the marquee runs via CSS transform animation, not scrollLeft. */
.rs-modern-public .rs-trending-viewport {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

/* Soft fade on both edges so items don't pop in/out on the marquee. */
.rs-modern-public .rs-trending-viewport::before,
.rs-modern-public .rs-trending-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24px;
    pointer-events: none;
    z-index: 2;
}
.rs-modern-public .rs-trending-viewport::before {
    left: 0;
    background: linear-gradient(90deg, var(--rs-card, #fff) 0%, transparent 100%);
}
.rs-modern-public .rs-trending-viewport::after {
    right: 0;
    background: linear-gradient(270deg, var(--rs-card, #fff) 0%, transparent 100%);
}

[data-theme="dark"] .rs-modern-public .rs-trending-viewport::before {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
}
[data-theme="dark"] .rs-modern-public .rs-trending-viewport::after {
    background: linear-gradient(270deg, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
}

/* Track is duplicated in HTML so -50% = exactly one full set, creating a seamless loop. */
.rs-modern-public .rs-trending-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 22px;
    width: max-content;
    padding: 2px 6px;
    animation: rs-trending-marquee 30s linear infinite;
    will-change: transform;
}

@keyframes rs-trending-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Pause when hovering, focused inside, or when JS sets data-paused on the rail */
.rs-modern-public .rs-trending-rail:hover .rs-trending-track,
.rs-modern-public .rs-trending-rail:focus-within .rs-trending-track,
.rs-modern-public [data-rs-trending][data-paused] .rs-trending-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .rs-modern-public .rs-trending-track { animation: none; }
}

.rs-modern-public .rs-trending-item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rs-text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    max-width: 380px;
    transition: color 0.15s ease, transform 0.15s ease;
}

.rs-modern-public .rs-trending-item:hover,
.rs-modern-public .rs-trending-item:focus {
    color: var(--rs-accent);
    text-decoration: none;
    transform: translateY(-1px);
}

.rs-modern-public .rs-trending-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rs-accent);
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(201, 48, 63, 0.55);
    animation: rs-trending-pulse 2.4s infinite;
}

@keyframes rs-trending-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(201, 48, 63, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(201, 48, 63, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 48, 63, 0); }
}

.rs-modern-public .rs-trending-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Manual nav arrows — plain icons, no circle */
.rs-modern-public .rs-trending-arrow {
    flex: 0 0 auto;
    background: transparent;
    border: 0;
    color: var(--rs-muted, #6b7280);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.15s ease;
}

.rs-modern-public .rs-trending-arrow i {
    font-size: 18px;
    line-height: 1;
}

.rs-modern-public .rs-trending-arrow:hover,
.rs-modern-public .rs-trending-arrow:focus {
    color: #2563eb;
    outline: 0;
}

@media (max-width: 575px) {
    .rs-modern-public .rs-trending-item { max-width: 70vw; }
    .rs-modern-public .rs-trending-arrow i { font-size: 16px; }
}

/* ---- Skeleton placeholders for the lazy video grid ---- */
.rs-modern-public .rs-video-card-skeleton {
    pointer-events: none;
}

.rs-modern-public .rs-skeleton-block,
.rs-modern-public .rs-skeleton-line {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.10) 50%, rgba(0, 0, 0, 0.06) 100%);
    background-size: 200% 100%;
    animation: rs-skeleton-shimmer 1.4s ease-in-out infinite;
    border-radius: 4px;
}

[data-theme="dark"] .rs-modern-public .rs-skeleton-block,
[data-theme="dark"] .rs-modern-public .rs-skeleton-line {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.10) 50%, rgba(255, 255, 255, 0.06) 100%);
    background-size: 200% 100%;
}

.rs-modern-public .rs-skeleton-block {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.rs-modern-public .rs-skeleton-line {
    height: 12px;
    margin-top: 10px;
}
.rs-modern-public .rs-skeleton-line-lg { width: 88%; height: 14px; }
.rs-modern-public .rs-skeleton-line-sm { width: 55%; height: 11px; }

@keyframes rs-skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---- Refined card hover micro-motion ---- */
@media (prefers-reduced-motion: no-preference) {
    .rs-modern-public .post-item,
    .rs-modern-public .rs-video-card,
    .rs-modern-public .rs-short-tile {
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .rs-modern-public .post-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    }

    .rs-modern-public .rs-video-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    }

    .rs-modern-public .post-item .img-thumb img {
        transition: transform 0.4s ease;
    }

    .rs-modern-public .post-item:hover .img-thumb img {
        transform: scale(1.03);
    }
}

/* ---- Focus-visible states for keyboard accessibility ---- */
.rs-modern-public a:focus-visible,
.rs-modern-public button:focus-visible {
    outline: 2px solid var(--rs-accent);
    outline-offset: 2px;
    border-radius: 3px;
}


/* =========================================================================
   Mobile shorts widget — force a sensible grid on phones
   The sidebar drops to full-width at <=991px. Without these overrides the
   2-column rule combined with the 9/12 aspect-ratio lets each tile
   stretch to ~half the viewport, producing 600+px tall thumbnails on
   iPhone 15 Chrome. Cap the per-tile height + switch to a 3-tile row at
   small widths so the widget looks like a compact gallery again.
   ========================================================================= */
@media (max-width: 991px) {
    .rs-modern-public .rs-sidebar-shorts {
        margin-top: 18px;
    }
    .rs-modern-public .rs-sidebar-shorts-grid {
        display: grid !important;
        grid-auto-columns: calc((100% - 10px) / 2);
        grid-auto-flow: column;
        grid-template-columns: none !important;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: 10px !important;
    }
    .rs-modern-public .rs-sidebar-shorts-grid .rs-short-tile {
        flex: none !important;
        min-width: 0;
        width: 100%;
    }
    .rs-modern-public .rs-short-tile img {
        aspect-ratio: 9 / 14;
        max-height: none;
        object-position: center;
    }
}

@media (max-width: 575px) {
    .rs-modern-public .rs-sidebar-shorts-grid {
        grid-auto-columns: calc((100% - 10px) / 2);
        grid-template-columns: none !important;
        gap: 10px !important;
    }
    .rs-modern-public .rs-short-tile img {
        aspect-ratio: 9 / 14;
        max-height: none;
        border-radius: 8px;
    }
    .rs-modern-public .rs-sidebar-shorts .rs-section-title {
        font-size: 16px;
    }
}

/* ---- Article description preview in section lead cards ---- */
.rs-modern-public .rs-article-desc {
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    display: -webkit-box !important;
    overflow: hidden !important;
    text-align: left !important;
}

/* ---- State map thumbnail in section header ---- */
.rs-modern-public .rs-state-map-img {
    display: inline-block;
    height: 28px;
    margin-left: 8px;
    object-fit: contain;
    opacity: 0.8;
    vertical-align: middle;
    width: auto;
}

/* ---- Relative time (article detail) ---- */
.rs-modern-public .rs-relative-time {
    font-variant-numeric: tabular-nums;
}

/* =========================================================================
   Inter-section spacing & dividers
   ========================================================================= */
.rs-modern-public .rs-home-states-full {
    border-top: 2px solid var(--rs-border);
    margin-top: 40px;
    padding-top: 32px;
}

.rs-modern-public .rs-home-after-state-wrapper {
    border-top: 2px solid var(--rs-border);
    margin-top: 40px;
    padding-top: 32px;
}

.rs-modern-public .rs-state-row + .rs-state-row {
    border-top: 1px solid var(--rs-border);
    margin-top: 28px;
    padding-top: 28px;
}

/* bottom outer-wrappers (videos, UP election, sports) */
.rs-modern-public .rs-home-after-state-wrapper ~ .outer-wrapper {
    border-top: 2px solid var(--rs-border);
    margin-top: 40px;
    padding-top: 32px;
}

.rs-modern-public .rs-state-no-news {
    color: var(--rs-muted);
    font-size: 13px;
    padding: 12px 0 8px;
}

/* =========================================================================
   State info card (listing sidebar — state pages)
   ========================================================================= */
.rs-modern-public .rs-state-info-card {
    background: var(--rs-surface);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.rs-modern-public .rs-state-map-header {
    padding: 10px 14px 4px;
}

.rs-modern-public .rs-state-name {
    color: var(--rs-text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

.rs-modern-public .rs-state-party-badge {
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 3px 9px;
    white-space: nowrap;
}

.rs-modern-public .rs-state-map-svg {
    background: transparent;
    min-height: 120px;
    position: relative;
}

.rs-modern-public .rs-state-map-svg svg {
    background: transparent;
    display: block;
    margin: 0 auto;
    width: 80%;
}

.rs-modern-public .rs-map-loading {
    align-items: center;
    color: var(--rs-muted);
    display: flex;
    font-size: 13px;
    gap: 8px;
    justify-content: center;
    min-height: 140px;
    padding: 20px;
}

.rs-modern-public .rs-map-no-data {
    color: var(--rs-muted);
    font-size: 13px;
    padding: 20px;
    text-align: center;
}

.rs-modern-public .rs-district-path {
    cursor: pointer;
    transition: fill 0.2s, fill-opacity 0.2s, stroke 0.15s;
}

/* Fixed-position so it follows the mouse regardless of scroll or container */
.rs-map-tooltip {
    background: rgba(0, 0, 0, 0.78);
    border-radius: 5px;
    color: #fff;
    display: none;
    font-size: 12px;
    padding: 5px 11px;
    pointer-events: none;
    position: fixed;
    white-space: nowrap;
    z-index: 9999;
}

.rs-modern-public .rs-state-info-grid {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr;
}

.rs-modern-public .rs-state-info-item {
    align-items: flex-start;
    border-right: 1px solid var(--rs-border);
    border-top: 1px solid var(--rs-border);
    display: flex;
    gap: 8px;
    padding: 10px 12px;
}

.rs-modern-public .rs-state-info-item:nth-child(2n) {
    border-right: 0;
}

.rs-modern-public .rs-state-info-item i {
    color: var(--rs-accent);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.rs-modern-public .rs-state-info-item div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.rs-modern-public .rs-sil {
    color: var(--rs-muted);
    font-size: 11px;
}

.rs-modern-public .rs-state-info-item strong {
    font-size: 13px;
    font-weight: 600;
}
