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

.site-search-strip {
    background: transparent;
    border: 0;
    margin: 10px 0 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;
}

.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);
    font-weight: 900;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-wrap: pretty;
    word-spacing: 0.03em;
}

.rs-modern-public .post-item h3 {
    font-size: 17px;
    line-height: 1.35;
    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: 21px;
    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: 212px !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);
    padding: 8px !important;
}

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

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

.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-size: 11px;
    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 {
    display: grid;
    gap: 10px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.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-shorts-tile-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rs-short-tile {
    background: transparent;
    border: 0;
    display: block;
    padding: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    width: 100%;
}

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

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

.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-home-video-section-wide .rs-video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.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-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: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 980px;
    width: 100%;
}

.rs-shorts-nav {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 0;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 18px;
    height: 38px;
    justify-content: center;
    width: 38px;
}

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

.rs-shorts-player-wrap {
    max-width: 420px;
    width: 100%;
}

.rs-shorts-player {
    aspect-ratio: 9 / 16;
    background: #000;
}

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

.rs-shorts-meta {
    color: #fff;
    padding-top: 10px;
}

.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-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: left !important;
    white-space: normal !important;
    word-break: normal;
    word-spacing: normal !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;
    max-width: 100%;
    overflow-wrap: break-word;
    text-align: left !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%;
}

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

    .site-search-strip .container {
        justify-content: space-between;
    }

    .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: 152px !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-video-grid {
        grid-template-columns: 1fr;
    }

    .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-tile-grid {
        gap: 8px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .rs-shorts-modal {
        padding: 10px 8px 12px;
    }

    .rs-shorts-modal-body {
        gap: 8px;
    }

    .rs-shorts-player-wrap {
        max-width: 360px;
    }

    .rs-shorts-nav {
        font-size: 17px;
        height: 34px;
        width: 34px;
    }

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

@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-home-video-section-wide .rs-video-grid {
        grid-template-columns: 1fr;
    }

    .rs-sidebar-shorts-grid {
        gap: 6px;
    }

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

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

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

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