/* =========================================
   Purak News Professional Theme
========================================= */

:root {
    --primary: #d71920;
    --primary-dark: #af1016;
    --dark: #111318;
    --dark-light: #1c2028;
    --text: #252830;
    --muted: #737782;
    --light: #f4f5f7;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 14px 40px rgba(17, 24, 39, 0.08);
    --small-shadow: 0 7px 22px rgba(17, 24, 39, 0.07);
    --radius: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f7f7f8;
    color: var(--text);
    font-family: Arial, "Noto Sans Devanagari", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: var(--primary);
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.custom-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 35px;
    padding-right: 35px;
}

/* =========================================
   Top Bar
========================================= */

.top-info-bar {
    background: var(--dark);
    color: #d6d7db;
    font-size: 12px;
}

.top-info-content {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-links a {
    color: #d6d7db;
}

.top-links a:hover {
    color: var(--white);
}

/* =========================================
   Header
========================================= */

.site-header {
    background: var(--white);
    position: relative;
    z-index: 1000;
}

.header-content {
    min-height: 116px;
    display: grid;
    grid-template-columns: 240px minmax(300px, 1fr) 290px;
    align-items: center;
    gap: 35px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    max-width: 220px;
}

.site-logo img {
    max-width: 205px;
    max-height: 90px;
    object-fit: contain;
}

.logo-fallback {
    display: none;
    font-size: 35px;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--primary);
}

.header-ad {
    height: 76px;
    border: 1px solid var(--border);
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #a0a3aa;
    text-transform: uppercase;
}

.header-ad span {
    font-size: 10px;
    letter-spacing: 1.6px;
}

.header-ad strong {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 600;
}

.desktop-search {
    display: flex;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 7px;
    overflow: hidden;
    background: var(--white);
}

.desktop-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.1);
}

.desktop-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 15px;
    color: var(--text);
    font-size: 14px;
}

.desktop-search button {
    width: 48px;
    border: 0;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
}

.desktop-search button:hover {
    background: var(--primary-dark);
}

/* =========================================
   Navigation
========================================= */

.main-navigation {
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(215, 25, 32, 0.2);
}

.navigation-inner {
    display: flex;
    align-items: center;
}

.navigation-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}

.navigation-menu::-webkit-scrollbar {
    display: none;
}

.navigation-menu li {
    flex-shrink: 0;
}

.navigation-menu a {
    min-height: 54px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.navigation-menu a:hover,
.navigation-menu a.active {
    background: rgba(0, 0, 0, 0.12);
    color: var(--white);
    border-bottom-color: var(--white);
}

.mobile-search,
.mobile-menu-button {
    display: none;
}

/* =========================================
   Breaking News
========================================= */

.breaking-news-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.breaking-news-wrapper {
    min-height: 48px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.breaking-label {
    flex-shrink: 0;
    min-width: 155px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--dark);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(215, 25, 32, 0.18);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    50% {
        box-shadow: 0 0 0 8px rgba(215, 25, 32, 0);
    }
}

.breaking-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.breaking-track {
    display: flex;
    align-items: center;
    gap: 45px;
    padding-left: 25px;
    white-space: nowrap;
    animation: breakingScroll 35s linear infinite;
}

.breaking-track:hover {
    animation-play-state: paused;
}

.breaking-track a {
    color: #44474f;
    font-size: 13px;
    font-weight: 600;
}

.breaking-track a::before {
    content: "•";
    margin-right: 12px;
    color: var(--primary);
}

@keyframes breakingScroll {
    from {
        transform: translateX(40%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* =========================================
   Main Page
========================================= */

.main-page {
    padding: 30px 0 60px;
}

.responsive-ad {
    min-height: 105px;
    margin-bottom: 32px;
    border: 1px dashed #ced1d7;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #a1a4ab;
}

.responsive-ad span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.responsive-ad strong {
    margin-top: 3px;
    font-size: 13px;
}

/* =========================================
   Section Headings
========================================= */

.section-title-row,
.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.section-title-row {
    margin-bottom: 20px;
}

.section-heading {
    padding-bottom: 16px;
    border-bottom: 2px solid var(--dark);
    margin-bottom: 5px;
}

.section-kicker {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.section-title-row h1,
.section-heading h2 {
    margin: 2px 0 0;
    color: var(--dark);
    font-size: 26px;
    line-height: 1.25;
    font-weight: 900;
}

.view-all-link,
.section-heading > a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.view-all-link span,
.section-heading > a span {
    margin-left: 6px;
    color: var(--primary);
}

/* =========================================
   Featured Section
========================================= */

.featured-section {
    margin-bottom: 38px;
}

.featured-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(350px, 1fr);
    gap: 20px;
}

.hero-story {
    min-height: 510px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--dark);
    box-shadow: var(--shadow);
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-story:hover .hero-image img {
    transform: scale(1.045);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05) 25%,
            rgba(0, 0, 0, 0.92) 100%
        );
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 35px;
}

.hero-content h2 {
    max-width: 850px;
    margin: 13px 0;
    color: var(--white);
    font-size: clamp(27px, 3vw, 43px);
    line-height: 1.25;
    font-weight: 900;
}

.hero-content h2 a {
    color: var(--white);
}

.news-category {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-category:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 17px;
    color: var(--muted);
    font-size: 12px;
}

.light-meta {
    color: #dedfe2;
}

.featured-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.featured-small-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--small-shadow);
}

.featured-small-image {
    height: 150px;
    display: block;
    overflow: hidden;
    background: #e8eaed;
}

.featured-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.featured-small-card:hover img {
    transform: scale(1.06);
}

.featured-small-content {
    padding: 15px;
}

.small-category {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.featured-small-content h3 {
    margin: 7px 0 8px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 800;
}

.featured-small-content h3 a {
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-small-content h3 a:hover {
    color: var(--primary);
}

.small-date {
    color: var(--muted);
    font-size: 11px;
}

/* =========================================
   Main Content
========================================= */

.main-content-row {
    align-items: flex-start;
}

.content-panel,
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--small-shadow);
}

.content-panel {
    padding: 26px;
}

.news-list-card {
    padding: 23px 0;
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 23px;
    border-bottom: 1px solid var(--border);
}

.news-list-card:last-child {
    border-bottom: 0;
}

.news-list-image {
    height: 190px;
    overflow: hidden;
    border-radius: 8px;
    background: #eaebed;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.news-list-card:hover .news-list-image img {
    transform: scale(1.055);
}

.news-list-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.news-list-content h3 {
    margin: 10px 0 11px;
    font-size: 21px;
    line-height: 1.42;
    font-weight: 850;
}

.news-list-content h3 a {
    color: var(--dark);
}

.news-list-content h3 a:hover {
    color: var(--primary);
}

.subcategory-name::before {
    content: "•";
    margin-right: 10px;
    color: var(--primary);
}

.read-more-link {
    margin-top: auto;
    padding-top: 15px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.read-more-link span {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.25s ease;
}

.read-more-link:hover span {
    transform: translateX(5px);
}

.no-news-message {
    padding: 70px 20px;
    text-align: center;
}

.no-news-message h3 {
    margin: 0 0 7px;
    font-size: 22px;
}

.no-news-message p {
    margin: 0;
    color: var(--muted);
}

/* =========================================
   Pagination
========================================= */

.pagination-wrapper {
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.pagination-arrow,
.page-numbers a,
.page-numbers span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-numbers a:hover,
.pagination-arrow:hover,
.page-numbers .current-page {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.pagination-arrow.disabled {
    color: #b4b6bc;
    cursor: not-allowed;
}

/* =========================================
   Sidebar
========================================= */

.sidebar-sticky {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    padding: 23px;
}

.sidebar-title {
    padding-bottom: 14px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--dark);
}

.sidebar-title > span {
    width: 5px;
    height: 24px;
    border-radius: 10px;
    background: var(--primary);
}

.sidebar-title h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 900;
}

.sidebar-news-item {
    position: relative;
    padding: 17px 0;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    border-bottom: 1px solid var(--border);
}

.sidebar-news-item:last-child {
    border-bottom: 0;
}

.sidebar-number {
    position: absolute;
    top: 21px;
    left: 5px;
    z-index: 2;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
}

.sidebar-news-image {
    height: 82px;
    border-radius: 7px;
    overflow: hidden;
    background: #eaebed;
}

.sidebar-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-category {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.sidebar-news-content h3 {
    margin: 4px 0 5px;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.sidebar-news-content h3 a {
    color: var(--dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-news-content h3 a:hover {
    color: var(--primary);
}

.sidebar-date {
    color: var(--muted);
    font-size: 10px;
}

.sidebar-ad {
    min-height: 270px;
    margin-top: 24px;
    border: 1px dashed #d4d6da;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--white);
    color: #9a9da4;
}

.sidebar-ad span {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sidebar-ad strong {
    margin: 5px 0;
    font-size: 18px;
}

.sidebar-ad small {
    font-size: 10px;
}

.newsletter-widget {
    margin-top: 24px;
    padding: 30px 25px;
    border-radius: var(--radius);
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.newsletter-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.newsletter-widget h3 {
    margin: 0 0 9px;
    font-size: 21px;
    font-weight: 900;
}

.newsletter-widget p {
    margin: 0 0 18px;
    color: #bcbfc5;
    font-size: 12px;
}

.newsletter-widget input {
    width: 100%;
    height: 44px;
    margin-bottom: 9px;
    padding: 0 13px;
    border: 0;
    border-radius: 5px;
    outline: 0;
    font-size: 13px;
}

.newsletter-widget button {
    width: 100%;
    height: 43px;
    border: 0;
    border-radius: 5px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.newsletter-widget button:hover {
    background: var(--primary-dark);
}

/* =========================================
   Footer
========================================= */

.site-footer {
    margin-top: 10px;
    background: var(--dark);
    color: #c5c7cc;
}

.footer-main {
    padding: 60px 0 45px;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
    gap: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--white);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-about p {
    max-width: 430px;
    margin: 0;
    font-size: 13px;
    line-height: 1.9;
}

.footer-column h3,
.footer-contact h3 {
    margin: 0 0 18px;
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
}

.footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-column li {
    margin-bottom: 9px;
}

.footer-column a,
.footer-contact p {
    color: #aeb1b7;
    font-size: 12px;
}

.footer-column a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact p {
    margin: 0 0 8px;
}

.footer-bottom {
    min-height: 70px;
    border-top: 1px solid #2b2e36;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #898d95;
    font-size: 11px;
}

/* =========================================
   Back To Top
========================================= */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 7px;
    background: var(--primary);
    color: var(--white);
    font-size: 19px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(215, 25, 32, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
}

/* =========================================
   Tablet Responsive
========================================= */

@media (max-width: 1199px) {

    .custom-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .header-content {
        grid-template-columns: 200px minmax(250px, 1fr) 250px;
        gap: 22px;
    }

    .featured-layout {
        grid-template-columns: 1.35fr 1fr;
    }

    .hero-story {
        min-height: 470px;
    }

    .featured-small-image {
        height: 135px;
    }

    .news-list-card {
        grid-template-columns: 245px minmax(0, 1fr);
    }

    .footer-main {
        gap: 30px;
    }
}

/* =========================================
   Mobile and Small Tablet
========================================= */

@media (max-width: 991px) {

    .top-info-bar {
        display: none;
    }

    .custom-container {
        padding-left: 17px;
        padding-right: 17px;
    }

    .header-content {
        min-height: 80px;
        display: flex;
        justify-content: space-between;
        gap: 15px;
    }

    .site-logo {
        max-width: 165px;
    }

    .site-logo img {
        max-width: 160px;
        max-height: 68px;
    }

    .header-ad,
    .desktop-search {
        display: none;
    }

    .mobile-menu-button {
        width: 43px;
        height: 43px;
        padding: 10px;
        border: 0;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        background: var(--primary);
        cursor: pointer;
    }

    .mobile-menu-button span {
        width: 21px;
        height: 2px;
        display: block;
        background: var(--white);
        transition: all 0.25s ease;
    }

    .mobile-menu-button.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-navigation {
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        transition: max-height 0.35s ease;
    }

    .main-navigation.menu-open {
        max-height: 650px;
    }

    .navigation-inner {
        padding: 8px 0 16px;
        display: block;
    }

    .navigation-menu {
        display: block;
        overflow: visible;
    }

    .navigation-menu a {
        min-height: 45px;
        padding: 0 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .mobile-search {
        margin-top: 14px;
        display: flex;
        height: 43px;
    }

    .mobile-search input {
        flex: 1;
        min-width: 0;
        border: 0;
        outline: 0;
        padding: 0 12px;
        border-radius: 5px 0 0 5px;
    }

    .mobile-search button {
        padding: 0 17px;
        border: 0;
        border-radius: 0 5px 5px 0;
        background: var(--dark);
        color: var(--white);
        font-weight: 700;
    }

    .breaking-label {
        min-width: 125px;
        padding: 0 12px;
        font-size: 10px;
    }

    .featured-layout {
        grid-template-columns: 1fr;
    }

    .hero-story {
        min-height: 480px;
    }

    .featured-small-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-small-image {
        height: 185px;
    }

    .sidebar-sticky {
        position: static;
        margin-top: 5px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .main-page {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .responsive-ad {
        min-height: 80px;
        margin-bottom: 24px;
    }

    .section-title-row h1,
    .section-heading h2 {
        font-size: 22px;
    }

    .hero-story {
        min-height: 410px;
    }

    .hero-content {
        padding: 23px;
    }

    .hero-content h2 {
        font-size: 27px;
    }

    .featured-small-grid {
        grid-template-columns: 1fr;
    }

    .featured-small-card {
        display: grid;
        grid-template-columns: 145px minmax(0, 1fr);
    }

    .featured-small-image {
        height: 100%;
        min-height: 145px;
    }

    .content-panel {
        padding: 18px;
    }

    .news-list-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .news-list-image {
        height: 230px;
    }

    .news-list-content h3 {
        font-size: 19px;
    }

    .pagination-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-numbers {
        order: -1;
        width: 100%;
        justify-content: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        padding: 20px 0;
        display: block;
        text-align: center;
    }

    .footer-bottom p + p {
        margin-top: 8px;
    }
}

/* =========================================
   Very Small Mobile
========================================= */

@media (max-width: 480px) {

    .custom-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-logo img {
        max-width: 145px;
    }

    .breaking-news-wrapper {
        min-height: 43px;
    }

    .breaking-label {
        min-width: 108px;
        padding: 0 8px;
        font-size: 9px;
    }

    .breaking-track {
        gap: 25px;
        padding-left: 15px;
    }

    .hero-story {
        min-height: 355px;
    }

    .hero-content {
        padding: 19px;
    }

    .hero-content h2 {
        margin: 10px 0;
        font-size: 22px;
    }

    .featured-small-card {
        grid-template-columns: 115px minmax(0, 1fr);
    }

    .featured-small-image {
        min-height: 135px;
    }

    .featured-small-content {
        padding: 12px;
    }

    .featured-small-content h3 {
        font-size: 13px;
    }

    .section-title-row,
    .section-heading {
        align-items: flex-start;
    }

    .section-heading > a,
    .view-all-link {
        font-size: 11px;
    }

    .news-list-image {
        height: 205px;
    }

    .news-list-content h3 {
        font-size: 18px;
    }

    .sidebar-widget {
        padding: 17px;
    }

    .sidebar-news-item {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .sidebar-news-image {
        height: 75px;
    }

    .page-numbers a,
    .page-numbers span {
        min-width: 34px;
        height: 34px;
        padding: 0 9px;
    }
}.article-page,.comments-panel,.poll-result-card{background:#fff;border-radius:12px;box-shadow:var(--small-shadow);padding:28px;margin-bottom:24px}.article-page h1{font-size:40px;line-height:1.3;margin:14px 0}.article-cover{width:100%;max-height:520px;object-fit:cover;border-radius:10px;margin:22px 0}.article-body{font-size:17px;line-height:1.9;color:#333}.article-body img{height:auto;border-radius:8px}.reaction-box{border-top:1px solid var(--border);margin-top:28px;padding-top:20px;display:flex;justify-content:space-between;align-items:center;gap:15px;flex-wrap:wrap}.reaction-btn{border:1px solid var(--border);background:#fff;border-radius:30px;padding:10px 18px;font-weight:700;margin-left:8px;cursor:pointer}.reaction-btn:hover{border-color:var(--primary);color:var(--primary)}.comment-form input,.comment-form textarea{width:100%;border:1px solid var(--border);border-radius:7px;padding:12px;margin-bottom:14px;outline:none}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.comment-form button,.poll-widget button{border:0;background:var(--primary);color:#fff;border-radius:6px;padding:11px 18px;font-weight:800}.comment-item{display:grid;grid-template-columns:46px 1fr;gap:14px;padding:20px 0;border-bottom:1px solid var(--border)}.comment-avatar{width:46px;height:46px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--primary);color:#fff;font-weight:900}.comment-item h4{margin:0;font-size:15px}.comment-item span,.empty-text{color:var(--muted);font-size:12px}.comment-item p{margin:8px 0 0}.form-alert{padding:12px;border-radius:6px;margin:14px 0}.form-alert.success{background:#eaf8ef;color:#18743b}.form-alert.error{background:#fff0f0;color:#a71919}.poll-widget{background:#fff;border-radius:12px;box-shadow:var(--small-shadow);padding:23px;margin-top:24px}.poll-widget h3{font-size:18px;margin:7px 0 16px}.poll-option{display:flex;gap:10px;align-items:flex-start;border:1px solid var(--border);padding:10px;border-radius:7px;margin-bottom:9px;cursor:pointer}.poll-widget form>a{display:block;text-align:center;margin-top:12px;color:var(--primary);font-weight:700}.poll-result-card{margin-top:20px}.poll-result-row{margin:15px 0}.poll-result-row>div:first-child{display:flex;justify-content:space-between}.poll-bar{height:10px;background:#eceef1;border-radius:20px;overflow:hidden}.poll-bar span{display:block;height:100%;background:var(--primary)}.listing-title{margin-bottom:20px}.page-card{background:#fff;border-radius:12px;box-shadow:var(--small-shadow);padding:30px}.page-card h1{font-size:32px;margin-bottom:20px}.contact-form input,.contact-form textarea{width:100%;border:1px solid var(--border);border-radius:7px;padding:12px;margin-bottom:14px}.contact-form button{background:var(--primary);color:#fff;border:0;border-radius:6px;padding:11px 18px;font-weight:800}@media(max-width:767px){.article-page h1{font-size:27px}.article-page,.comments-panel{padding:18px}.form-grid{grid-template-columns:1fr}.reaction-box{align-items:flex-start}.reaction-btn{margin:5px 5px 0 0}}

/* Advanced Professional Modules */
.dark-toggle{border:0;background:transparent;color:#fff;cursor:pointer}.site-header{position:sticky;top:0}.article-author{display:flex;align-items:center;gap:12px;margin:18px 0}.article-author img{width:48px;height:48px;border-radius:50%;object-fit:cover}.article-author span{display:block;color:var(--muted);font-size:11px}.article-tools{display:flex;flex-wrap:wrap;gap:8px;margin:18px 0}.article-tools button,.article-tools a{border:1px solid var(--border);background:#fff;padding:8px 12px;border-radius:6px;font-size:12px;cursor:pointer}.image-zoom-wrap{position:relative}.image-zoom-wrap>span{position:absolute;right:12px;bottom:12px;background:rgba(0,0,0,.7);color:#fff;padding:5px 9px;border-radius:4px;font-size:10px}.zoomable{cursor:zoom-in}.image-modal{position:fixed;inset:0;background:rgba(0,0,0,.92);z-index:99999;display:none;align-items:center;justify-content:center;padding:30px}.image-modal.open{display:flex}.image-modal img{max-width:95vw;max-height:90vh}.image-modal button{position:absolute;right:25px;top:18px;border:0;background:none;color:#fff;font-size:40px}.video-embed{position:relative;padding-top:56.25%;margin:25px 0;border-radius:12px;overflow:hidden}.video-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0}.post-gallery{margin-top:30px}.gallery-grid,.photo-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}.gallery-grid img,.photo-gallery-grid img{width:100%;height:190px;object-fit:cover;border-radius:8px}.gallery-grid figure{margin:0}.gallery-grid figcaption{font-size:12px;margin-top:6px}.related-section{margin-top:28px;background:#fff;padding:24px;border-radius:12px}.related-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.related-grid img{width:100%;height:170px;object-fit:cover;border-radius:8px}.related-grid h3{font-size:16px;margin:8px 0}.popular-widget{margin-top:24px}.popular-row{display:flex;gap:12px;padding:12px 0;border-bottom:1px solid var(--border)}.popular-row img{width:82px;height:65px;object-fit:cover;border-radius:6px}.popular-row strong{font-size:12px;line-height:1.4;display:block}.popular-row small{color:var(--muted)}.sticky-ad{position:sticky;top:105px}.channel-buttons{display:grid;gap:8px;margin-top:18px}.channel-buttons a{padding:11px;text-align:center;color:#fff;border-radius:7px;font-weight:700}.whatsapp-btn{background:#1fa855}.telegram-btn{background:#229ed9}.static-page{background:#fff;border-radius:12px;padding:30px;box-shadow:var(--small-shadow)}.static-page h1{font-weight:900}.lead-text{color:var(--muted);font-size:17px}.public-form{display:grid;gap:13px;margin-top:25px}.public-form input,.public-form textarea,.public-form select{width:100%;padding:12px;border:1px solid var(--border);border-radius:7px}.public-form textarea{min-height:140px}.public-form button{background:var(--primary);color:#fff;border:0;border-radius:7px;padding:12px;font-weight:800}.live-tv-box{text-align:center;padding:70px 20px;background:#111;color:#fff;border-radius:12px;margin-top:25px}.live-icon{width:70px;height:70px;border-radius:50%;background:var(--primary);display:grid;place-items:center;margin:auto;font-size:28px}.ad-plans{display:grid;grid-template-columns:repeat(3,1fr);gap:15px;margin-top:24px}.ad-plans article{border:1px solid var(--border);padding:18px;border-radius:9px}.photo-gallery-grid a{background:#fff;border:1px solid var(--border);padding:10px;border-radius:9px}.photo-gallery-grid h3{font-size:14px;margin:8px 0}.dark-mode{--white:#17191e;--light:#111318;--text:#e7e8eb;--dark:#f5f6f8;--muted:#a9adb6;--border:#333741;background:#101217;color:#e7e8eb}.dark-mode .site-header,.dark-mode .breaking-news-section,.dark-mode .content-panel,.dark-mode .sidebar-widget,.dark-mode .article-page,.dark-mode .comments-panel,.dark-mode .related-section,.dark-mode .static-page,.dark-mode .featured-small-card{background:#17191e}.dark-mode .article-tools button,.dark-mode .article-tools a{background:#22252c;color:#fff}.dark-mode img{filter:brightness(.92)}
@media(max-width:767px){.gallery-grid,.photo-gallery-grid,.related-grid,.ad-plans{grid-template-columns:1fr}.article-tools{overflow-x:auto;flex-wrap:nowrap}.article-tools>*{white-space:nowrap}.site-header{position:relative}}
@media print{.site-header,.breaking-news-section,.sidebar-sticky,.site-footer,.article-tools,.reaction-box,.comments-panel,.related-section,.back-to-top{display:none!important}.col-lg-8{width:100%!important}.article-page{box-shadow:none!important}.article-body{font-size:15px!important}}


/* =========================================
   Admin Login Shortcut
========================================= */
.admin-login-shortcut {
    position: fixed;
    right: 22px;
    top: 150px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 15px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(215, 25, 32, 0.28);
    text-decoration: none;
}

.admin-login-shortcut:hover,
.admin-login-shortcut:focus {
    background: var(--primary-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.admin-login-icon {
    line-height: 1;
}

@media (max-width: 767px) {
    .admin-login-shortcut {
        top: auto;
        right: 14px;
        bottom: 76px;
        width: 46px;
        height: 46px;
        min-height: 46px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .admin-login-text {
        display: none;
    }
}

@media print {
    .admin-login-shortcut {
        display: none !important;
    }
}
