:root {
    --ink: #151515;
    --muted: #6d6d6d;
    --line: #e6e6e6;
    --accent: #d7242f;
    --deep: #11183b;
    --paper: #ffffff;
    --soft: #f4f4f4;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.45;
}

a {
    color: inherit;
    text-decoration: none;
}

.edit-news-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 8px;
    padding: 5px 9px;
    border-radius: 4px;
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.article > .edit-news-link,
.article > .article-edit-link {
    margin: 0 0 14px;
}

.admin-login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 4px;
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

img {
    max-width: 100%;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.topbar {
    display: flex;
    align-items: center;
    gap: 18px;
    width: min(1160px, calc(100% - 28px));
    margin: 0 auto;
    padding: 9px 0;
    color: #555;
    font-size: 13px;
    border-bottom: 1px solid #efefef;
}

.ticker-label {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker-text {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    min-width: 0;
}

.ticker-text span {
    display: inline-block;
    padding-left: 100%;
    animation: tickerMove 46s linear infinite;
}

@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.brand-row {
    width: min(1160px, calc(100% - 28px));
    margin: 0 auto;
    padding: 18px 0 16px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.brand {
    grid-column: 2;
    display: block;
    text-align: center;
}

.brand img {
    display: block;
    width: min(348px, 76vw);
    height: auto;
}

.search-form {
    justify-self: end;
    display: flex;
    width: min(280px, 100%);
    border: 1px solid #ddd;
    background: #fff;
}

.header-tools {
    display: grid;
    gap: 8px;
    justify-items: end;
}

.language-switcher {
    position: fixed;
    right: 18px;
    top: 124px;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.language-switcher select,
.goog-te-combo {
    max-width: 170px;
    border: 1px solid var(--line);
    padding: 6px;
    background: #fff;
}

.goog-te-gadget {
    font-size: 0 !important;
}

.goog-te-gadget span,
.goog-logo-link {
    display: none !important;
}

.goog-te-combo {
    margin: 0 !important;
}

.search-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 9px 10px;
    font-size: 13px;
}

.search-form button,
.button {
    border: 0;
    background: var(--accent);
    color: #fff;
    padding: 9px 13px;
    font-weight: 800;
    cursor: pointer;
}

.nav-wrap {
    background: #111;
}

.nav {
    width: min(1160px, calc(100% - 28px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    overflow: visible;
}

.nav a {
    flex: 0 0 auto;
    color: #fff;
    padding: 13px 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, .14);
    white-space: nowrap;
}

.nav a:hover {
    background: var(--accent);
}

.page {
    width: min(1160px, calc(100% - 28px));
    margin: 0 auto;
    padding: 24px 0 42px;
}

.breaking-strip {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 10px 12px;
}

.breaking-strip strong {
    color: #fff;
    background: var(--accent);
    padding: 6px 10px;
    font-size: 12px;
    text-transform: uppercase;
}

.breaking-strip span {
    color: #333;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.headline-ticker {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid var(--line);
    min-width: 0;
    overflow: hidden;
}

.headline-ticker > strong {
    align-self: stretch;
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: #fff;
    background: var(--accent);
    font-size: 13px;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    gap: 28px;
    overflow: hidden;
    white-space: nowrap;
    padding: 11px 14px;
}

.ticker-track-inner {
    display: flex;
    gap: 28px;
    animation: articleTicker 125s linear infinite;
}

.ticker-track a {
    position: relative;
    flex: 0 0 auto;
    color: #222;
    font-weight: 800;
    font-size: 14px;
}

@keyframes articleTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-track a::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    background: var(--accent);
    vertical-align: 1px;
}

.lower-live-news {
    margin-top: 22px;
}

.live-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.live-news-grid a {
    display: grid;
    gap: 5px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 13px 14px;
}

.live-news-grid strong {
    font-size: 15px;
    line-height: 1.28;
}

.top-ad-banner {
    margin: 0 0 22px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 10px;
}

.top-ad-banner img {
    display: block;
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}

.sidebar-banner {
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}

.sidebar-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.content-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 22px;
    align-items: start;
    margin-top: 0;
}

.main-column,
.sidebar-column {
    min-width: 0;
}

.sidebar-column {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 16px;
    align-self: start;
}

.with-sticky-sidebar .sidebar-column {
    max-height: calc(100vh - 32px);
    overflow-y: auto;
}

.youtube-showcase {
    margin-top: 30px;
    margin-bottom: 22px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 0;
}

.section-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    border-bottom: 3px solid var(--accent);
    padding: 12px 14px;
}

.section-head-row h2 {
    margin: 0;
    font-size: 20px;
    text-transform: uppercase;
}

.section-head-row a {
    flex: 0 0 auto;
    color: #fff;
    background: #e62117;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.featured-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f1f2f4;
    border-bottom: 1px solid var(--line);
}

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

.youtube-showcase > h3 {
    font-size: clamp(22px, 2.4vw, 31px);
    margin: 0;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}

.recent-videos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.recent-videos a {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 10px;
    align-items: center;
    height: 88px;
    min-width: 0;
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    overflow: hidden;
}

.recent-videos img {
    width: 100%;
    height: 64px;
    object-fit: cover;
    background: #ddd;
}

.recent-videos strong {
    font-size: 14px;
    line-height: 1.25;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.youtube-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 14px;
}

.youtube-actions a {
    color: #111;
    background: #f2f2f2;
    border: 1px solid var(--line);
    padding: 9px 16px;
    font-weight: 900;
}

.youtube-actions .subscribe-btn {
    color: #fff;
    background: #e62117;
    border-color: #e62117;
}

.widget-card {
    background: #fff;
    border: 1px solid var(--line);
    min-width: 0;
    overflow: hidden;
}

.widget-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    color: #fff;
    background: #111;
    border-bottom: 3px solid var(--accent);
}

.widget-head span {
    color: #fff;
    background: var(--accent);
    padding: 4px 7px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.widget-head strong {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
}

.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f1f2f4;
}

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

.video-frame iframe {
    height: 100%;
}

.score-frame {
    height: 335px;
    background: #fff;
}

.cricket-score-wrap {
    height: 238px;
    overflow: hidden;
    background: #fff;
}

.cricket-frame {
    height: 238px;
    max-width: 100%;
}

.market-widget {
    min-height: 460px;
}

.sidebar-market-widget {
    min-height: 300px;
}

.market-middle {
    margin: 0 0 28px;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}

.widget-credit {
    margin: 0;
    padding: 7px 10px;
    color: var(--muted);
    font-size: 11px;
    text-align: right;
    border-top: 1px solid var(--line);
}

.floating-news-bot {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
}

.news-bot-toggle {
    position: relative;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 50%;
    color: #fff;
    background: radial-gradient(circle at 34% 28%, #ff7b82 0%, var(--accent) 48%, #990f18 100%);
    box-shadow: 0 0 0 0 rgba(215,36,47,.28), 0 0 20px rgba(215,36,47,.38), 0 12px 28px rgba(0,0,0,.28);
    padding: 0;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    animation: aiGlowPulse 2.4s ease-in-out infinite;
}

.news-bot-toggle::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(215,36,47,.28);
}

.news-bot-toggle::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 84px;
    left: -34px;
    top: -10px;
    background: rgba(255,255,255,.28);
    transform: rotate(24deg);
    animation: aiButtonShine 4.2s ease-in-out infinite;
}

.news-bot-toggle span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(17,17,17,.18);
}

@keyframes aiButtonShine {
    0%, 58%, 100% {
        left: -34px;
    }
    72% {
        left: 78px;
    }
}

@keyframes aiGlowPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 0 0 0 rgba(215,36,47,.24), 0 0 18px rgba(215,36,47,.36), 0 12px 28px rgba(0,0,0,.28);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 0 0 10px rgba(215,36,47,.10), 0 0 30px rgba(215,36,47,.58), 0 15px 32px rgba(0,0,0,.32);
    }
}

.news-bot-panel {
    position: absolute;
    right: 0;
    bottom: 82px;
    width: min(340px, calc(100vw - 28px));
    max-height: min(560px, calc(100vh - 96px));
    display: none;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.floating-news-bot.is-open .news-bot-panel {
    display: block;
}

.news-bot-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    background: #111;
    border-bottom: 3px solid var(--accent);
    padding: 12px 14px;
}

.news-bot-panel-head strong {
    font-size: 14px;
    text-transform: uppercase;
}

.news-bot-close {
    width: 28px;
    height: 28px;
    border: 0;
    color: #fff;
    background: var(--accent);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.news-bot-body {
    padding: 13px 14px 14px;
}

.news-bot-body p {
    margin: 0 0 10px;
    color: #555;
    font-size: 13px;
}

.news-bot-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    margin-bottom: 12px;
}

.news-bot-form input {
    min-width: 0;
    border: 1px solid var(--line);
    padding: 9px 10px;
    font-size: 13px;
}

.news-bot-form button {
    border: 0;
    background: var(--accent);
    color: #fff;
    padding: 9px 11px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.news-bot-results {
    display: grid;
    gap: 8px;
    max-height: 330px;
    overflow-y: auto;
}

.news-bot-answer {
    display: grid;
    gap: 5px;
    padding: 11px 12px;
    color: #fff;
    background: #111;
    border-left: 4px solid var(--accent);
}

.news-bot-answer strong {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}

.news-bot-answer span {
    color: #f2f2f2;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    text-transform: none;
}

.news-bot-results a,
.news-bot-empty {
    display: block;
    padding: 10px;
    background: #f7f7f7;
    border: 1px solid var(--line);
}

.news-bot-results strong {
    display: -webkit-box;
    overflow: hidden;
    color: #161616;
    font-size: 13px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-bot-results span {
    display: block;
    color: var(--accent);
    margin-top: 5px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-bot-results small {
    display: -webkit-box;
    overflow: hidden;
    color: #555;
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-bot-empty {
    color: var(--muted);
    font-size: 13px;
}

.weather-widget {
    min-height: 148px;
}

.weather-live {
    position: relative;
    display: grid;
    gap: 6px;
    padding: 16px 14px;
    min-height: 108px;
    background: #fff;
    overflow: hidden;
}

.weather-live::before {
    content: "";
    position: absolute;
    right: 18px;
    top: 18px;
    width: 92px;
    height: 92px;
    opacity: .16;
    pointer-events: none;
}

.weather-live::after {
    content: "";
    position: absolute;
    right: 36px;
    top: 44px;
    width: 78px;
    height: 34px;
    border-radius: 999px;
    background: #92a4b8;
    opacity: .14;
    box-shadow: -28px 7px 0 8px #92a4b8, 24px 8px 0 4px #92a4b8;
    pointer-events: none;
}

.weather-live strong {
    position: relative;
    z-index: 1;
    color: #111;
    font-size: 20px;
    line-height: 1.15;
}

.weather-live span {
    position: relative;
    z-index: 1;
    color: #444;
    font-size: 13px;
}

.weather-live small {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.weather-sun::before,
.weather-cloud-sun::before {
    border-radius: 50%;
    background: #ffbd2e;
    box-shadow: 0 0 28px #ffbd2e;
}

.weather-cloud::before {
    border-radius: 50%;
    background: #9fb0c2;
    box-shadow: -30px 20px 0 -12px #9fb0c2, 22px 20px 0 -10px #9fb0c2;
}

.weather-rain::before,
.weather-storm::before {
    border-radius: 50%;
    background: #8aa6c4;
    box-shadow: -30px 20px 0 -12px #8aa6c4, 22px 20px 0 -10px #8aa6c4;
}

.weather-rain::after {
    opacity: .18;
    box-shadow: -28px 7px 0 8px #92a4b8, 24px 8px 0 4px #92a4b8, -20px 52px 0 -12px #1d8ed1, 3px 59px 0 -12px #1d8ed1, 27px 52px 0 -12px #1d8ed1;
}

.weather-storm::after {
    opacity: .18;
    box-shadow: -28px 7px 0 8px #92a4b8, 24px 8px 0 4px #92a4b8, 6px 54px 0 -9px #ffbd2e;
}

.horoscope-widget {
    background: #fff;
}

.horoscope-slider {
    height: 236px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.horoscope-track {
    display: grid;
    animation: horoscopeScroll 34s linear infinite;
}

.horoscope-slider:hover .horoscope-track {
    animation-play-state: paused;
}

.horoscope-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    text-align: left;
    cursor: pointer;
    min-height: 76px;
    padding: 13px 14px;
}

.horoscope-item:hover {
    background: #fbfbfb;
}

.horoscope-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.horoscope-copy {
    display: block;
    min-width: 0;
}

.horoscope-item strong {
    display: block;
    color: var(--accent);
    margin-bottom: 4px;
    font-size: 14px;
    text-transform: uppercase;
}

.horoscope-item span {
    display: -webkit-box;
    color: #333;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.horoscope-full {
    display: grid;
    gap: 5px;
    padding: 12px 14px;
    background: #fff7f8;
    border-top: 1px solid var(--line);
}

.horoscope-full strong {
    color: var(--accent);
    font-size: 13px;
    text-transform: uppercase;
}

.horoscope-full span {
    color: #333;
    font-size: 13px;
    line-height: 1.45;
}

@keyframes horoscopeScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-912px);
    }
}

.ad-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 12px;
}

.ad-card h3 {
    margin: 0 0 10px;
    font-size: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 8px;
}

.ad-card img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.square-ad-card img {
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    background: #fff;
}

.inline-ad-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    justify-content: start;
    margin: 0 0 28px;
}

.after-youtube-row {
    margin-top: 0;
}

.associate-ad {
    align-self: start;
}

.hero-mosaic {
    display: grid;
    grid-template-columns: minmax(220px, .72fr) minmax(0, 1.32fr) minmax(220px, .72fr);
    gap: 2px;
    margin-bottom: 24px;
    background: #fff;
}

.hero-stack {
    display: grid;
    gap: 2px;
}

.mosaic-card {
    position: relative;
    display: block;
    height: 238px;
    min-height: 238px;
    overflow: hidden;
    color: #fff;
    background: #111;
}

.mosaic-card.lead {
    height: 478px;
    min-height: 478px;
}

.mosaic-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #ddd;
    transition: transform .25s ease;
}

.mosaic-card:hover img {
    transform: scale(1.04);
}

.mosaic-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08) 15%, rgba(0,0,0,.82) 100%);
}

.mosaic-body {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    gap: 5px;
}

.mosaic-body strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.16;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.mosaic-card.lead .mosaic-body strong {
    font-size: clamp(18px, 1.8vw, 24px);
}

.mosaic-body .meta {
    color: rgba(255,255,255,.86);
    font-size: 10px;
    margin: 0;
}

.mosaic-body .pill {
    padding: 3px 10px;
    font-size: 10px;
    align-self: start;
    justify-self: start;
    width: fit-content;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .75fr);
    gap: 22px;
    align-items: start;
}

.premium-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
}

.hero-side {
    display: grid;
    gap: 12px;
}

.hero-side a {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    align-items: center;
    height: 100px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 10px;
    overflow: hidden;
}

.hero-side img {
    width: 112px;
    height: 78px;
    object-fit: cover;
    background: #e8e8e8;
}

.hero-side strong {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.25;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.lead-story,
.panel,
.post-card,
.article,
.category-block {
    background: var(--paper);
    border: 1px solid var(--line);
}

.post-card,
.mosaic-card,
.lead-story,
.panel,
.widget-card,
.category-list a,
.hero-side a,
.live-news-grid a,
.article,
.category-block,
.top-ad-banner,
.sidebar-banner,
.youtube-showcase,
.market-middle,
.ad-card,
.headline-ticker,
.breaking-strip {
    border-radius: 14px;
}

.lead-story {
    overflow: hidden;
}

.lead-story {
    position: relative;
}

.lead-story img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #ddd;
}

.story-body {
    padding: 18px 20px 20px;
}

.story-body h1 {
    font-size: clamp(25px, 3vw, 38px);
    letter-spacing: 0;
    line-height: 1.1;
    margin: 8px 0 10px;
}

.story-body p:last-child {
    margin-bottom: 0;
    color: #444;
}

.panel {
    padding: 0;
}

.panel h2,
.section-title,
.category-title {
    margin: 0;
    padding: 12px 14px;
    font-size: 18px;
    line-height: 1.2;
    border-bottom: 3px solid var(--accent);
    text-transform: uppercase;
}

.title-link {
    color: inherit;
    text-decoration: none;
}

.title-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.live-list {
    display: grid;
}

.live-list a {
    display: grid;
    gap: 4px;
    height: 78px;
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.live-list strong,
.live-list span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.live-list strong {
    -webkit-line-clamp: 2;
}

.live-list span {
    -webkit-line-clamp: 1;
}

.live-list a:hover,
.post-card:hover {
    background: #fbfbfb;
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin: 0 0 10px;
}

.meta {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.pill {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    justify-self: start;
    width: fit-content;
    max-width: 100%;
    color: #fff;
    background: var(--accent);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.section-title {
    margin-top: 28px;
    margin-bottom: 16px;
    background: #fff;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 20px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.post-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 382px;
    overflow: hidden;
}

.post-card img {
    display: block;
    width: 100%;
    height: 165px;
    object-fit: cover;
    background: #ddd;
}

.defence-grid {
    grid-auto-flow: dense;
}

.defence-grid .defence-lead {
    grid-column: span 2;
    height: 430px;
    min-height: 430px;
}

.defence-grid .defence-lead img {
    height: 225px;
}

.defence-grid .defence-lead h3 {
    font-size: 24px;
}

.post-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 13px 14px 16px;
    min-height: 0;
    overflow: hidden;
}

.post-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.post-card p {
    margin: 0;
    color: #555;
    font-size: 14px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.category-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.category-block {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.category-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.category-feature {
    display: block;
    overflow: hidden;
}

.category-feature img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #ddd;
    transition: transform .35s ease;
}

.category-feature:hover img {
    transform: scale(1.03);
}

.category-feature-body {
    display: block;
    padding: 12px 14px 14px;
}

.category-feature-body .meta {
    margin-bottom: 7px;
}

.category-feature h3 {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.category-list {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}

.category-list a {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
    min-height: 84px;
    padding: 10px 12px;
    border-top: 1px solid var(--line);
    overflow: hidden;
    align-items: start;
    transition: background .2s ease;
}

.category-list a:hover {
    background: var(--soft);
}

.category-list img {
    width: 78px;
    height: 56px;
    object-fit: cover;
    background: #ddd;
    border-radius: 8px;
}

.category-list h3 {
    font-size: 14px;
    line-height: 1.25;
    margin: 2px 0 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.category-row--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}

.category-block--wide {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.category-wide-feature {
    display: block;
    overflow: hidden;
}

.category-wide-feature img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #ddd;
    transition: transform .35s ease;
}

.category-wide-feature:hover img {
    transform: scale(1.03);
}

.category-wide-body {
    display: block;
    padding: 14px 16px 18px;
}

.category-wide-body .pill {
    margin-bottom: 10px;
}

.category-wide-body .meta {
    margin-bottom: 8px;
}

.category-wide-body h3 {
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 10px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.category-wide-excerpt {
    margin: 0 0 14px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.category-wide-small {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
}

.category-wide-small-item {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    min-height: 96px;
    padding: 12px;
    overflow: hidden;
    align-items: start;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .2s ease;
}

.category-wide-small-item:nth-child(2n) {
    border-right: 0;
}

.category-wide-small-item:nth-last-child(-n+2) {
    border-bottom: 0;
}

.category-wide-small-item:hover {
    background: var(--soft);
}

.category-wide-small-item img {
    width: 84px;
    height: 60px;
    object-fit: cover;
    background: #ddd;
    border-radius: 8px;
    transition: transform .3s ease;
}

.category-wide-small-item:hover img {
    transform: scale(1.05);
}

.category-wide-small-item .meta {
    margin-bottom: 4px;
}

.category-wide-small-item h3 {
    font-size: 15px;
    line-height: 1.25;
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.side-list a {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 100px;
    align-items: center;
}

.side-list img {
    width: 92px;
    height: 70px;
    object-fit: cover;
}

.side-list h3 {
    line-height: 1.22;
    -webkit-line-clamp: 3;
}

.side-news-new {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.side-news-new .side-featured {
    overflow: hidden;
}

.side-featured-link {
    display: block;
    overflow: hidden;
}

.side-featured-link img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #ddd;
    transition: transform .35s ease;
}

.side-featured-link:hover img {
    transform: scale(1.04);
}

.side-featured-body {
    display: block;
    padding: 12px 14px 16px;
    box-shadow: 0 6px 14px -8px rgba(0, 0, 0, .18);
}

.side-featured-body .pill {
    margin-bottom: 9px;
}

.side-featured-body .meta {
    margin-bottom: 8px;
}

.side-featured-body h3 {
    font-size: 17px;
    line-height: 1.3;
    margin: 0 0 8px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.side-excerpt {
    margin: 0 0 12px;
    color: #555;
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.read-more {
    display: inline-block;
    color: #fff;
    background: var(--accent);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 20px;
    transition: background .2s ease;
}

.side-featured-link:hover .read-more {
    background: #b01b25;
}

.article {
    max-width: 860px;
    padding: 22px;
}

.article img.featured {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    margin: 12px 0 18px;
}

.article-content {
    font-size: 18px;
    line-height: 1.78;
    color: #202020;
    overflow-wrap: anywhere;
}

.article-content p {
    margin: 0 0 20px;
}

.article-empty-note {
    color: #555;
    background: #fff7f8;
    border-left: 4px solid var(--accent);
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.5;
}

.article-content h2,
.article-content h3 {
    margin: 28px 0 12px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 20px;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content li > ul,
.article-content li > ol {
    margin: 8px 0;
}

.article-content blockquote {
    margin: 0 0 20px;
    padding: 2px 0 2px 18px;
    border-left: 4px solid #d6dbe3;
    color: #444;
}

.article-content .text-left {
    text-align: left;
}

.article-content .text-center {
    text-align: center;
}

.article-content .text-right {
    text-align: right;
}

.article-content .text-justify {
    text-align: justify;
}

.article-content img,
.article-content iframe {
    max-width: 100%;
}

.article-content figure.wp-image {
    position: relative;
    margin: 20px auto;
    width: fit-content;
    max-width: 100%;
}

.article-content figure.wp-image > img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.article-content figure.wp-image figcaption {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    text-align: center;
    padding: 9px 4px 2px;
}

.article-content .alignleft,
.article-content .alignright {
    width: 50%;
    max-width: 50%;
    margin-top: 4px;
    margin-bottom: 12px;
}

.article-content .alignleft {
    float: left;
    margin-right: 20px;
}

.article-content .alignright {
    float: right;
    margin-left: 20px;
}

.article-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.article-content .alignnone {
    margin-left: 0;
    margin-right: auto;
}

.article-content .alignwide {
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    margin-left: -20px;
}

.article-content .alignfull {
    width: calc(100% + 44px);
    max-width: calc(100% + 44px);
    margin-left: -22px;
    margin-right: -22px;
}

.article-content .align-left,
.article-content .align-center,
.article-content .align-right {
    display: block;
    width: auto;
    max-width: 100%;
}

.article-content .align-left {
    margin-right: auto;
}

.article-content .align-center {
    margin-left: auto;
    margin-right: auto;
}

.article-content .align-right {
    margin-left: auto;
}

.article-content .float-left {
    float: left;
    margin: 0.25rem 1rem 0.75rem 0;
}

.article-content .float-right {
    float: right;
    margin: 0.25rem 0 0.75rem 1rem;
}

.article-content figure.wp-image.align-left {
    margin-left: 0;
    margin-right: auto;
}

.article-content figure.wp-image.align-right {
    margin-left: auto;
    margin-right: 0;
}

.article-content figure.wp-image.align-center {
    margin-left: auto;
    margin-right: auto;
}

.article-content figure.wp-image.float-left {
    float: left;
    width: 50%;
    max-width: 50%;
    margin: 0.25rem 1rem 0.75rem 0;
}

.article-content figure.wp-image.float-right {
    float: right;
    width: 50%;
    max-width: 50%;
    margin: 0.25rem 0 0.75rem 1rem;
}

.article-content::after {
    content: "";
    display: block;
    clear: both;
}

.article-table-wrapper {
    margin: 22px 0;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.article-table-wrapper .article-table {
    border-collapse: collapse;
    width: 100%;
    font-size: 15px;
    line-height: 1.6;
}

.article-table-wrapper .article-table th,
.article-table-wrapper .article-table td {
    border: 1px solid #d6dbe3;
    padding: 8px 12px;
    text-align: left;
    vertical-align: top;
}

.article-table-wrapper .article-table th {
    background: #f1f3f7;
    font-weight: 700;
}

.article-table-wrapper .article-table caption {
    caption-side: top;
    font-weight: 700;
    text-align: left;
    padding: 0 0 8px;
}

.article-table-wrapper .article-table td[align=center],
.article-table-wrapper .article-table th[align=center] {
    text-align: center;
}

.article-table-wrapper .article-table td[align=right],
.article-table-wrapper .article-table th[align=right] {
    text-align: right;
}

.article-table-wrapper .article-table td[valign=middle],
.article-table-wrapper .article-table th[valign=middle] {
    vertical-align: middle;
}

.article-table-wrapper .article-table td[valign=bottom],
.article-table-wrapper .article-table th[valign=bottom] {
    vertical-align: bottom;
}

.article-table-wrapper.table-striped .article-table tbody tr:nth-child(even) td {
    background: #f7f8fa;
}

.article-table-wrapper.table-bordered .article-table th,
.article-table-wrapper.table-bordered .article-table td {
    border-width: 2px;
}

.article-table-wrapper.table-minimal .article-table th,
.article-table-wrapper.table-minimal .article-table td {
    border-left: 0;
    border-right: 0;
    background: transparent;
}

.article-table-wrapper.table-minimal .article-table thead th {
    border-top: 2px solid #1f2430;
    border-bottom: 1px solid #1f2430;
}

.article-table-wrapper.table-minimal .article-table tbody tr:last-child td {
    border-bottom: 2px solid #1f2430;
}

.article-table-wrapper.table-compact .article-table th,
.article-table-wrapper.table-compact .article-table td {
    padding: 5px 9px;
    font-size: 14px;
}

.share-box {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.share-box > strong {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
}

.share-buttons a,
.share-buttons button {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.share-facebook {
    background: #1877f2;
}

.share-x {
    background: #111;
}

.share-whatsapp {
    background: #25d366;
}

.share-telegram {
    background: #229ed9;
}

.share-email {
    background: #666;
}

.share-copy {
    background: var(--accent);
}

.recommend-section {
    margin-top: 26px;
}

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

.recommend-section .post-grid {
    grid-auto-rows: auto;
    align-items: start;
}

.recommend-section .post-card {
    height: auto;
    min-height: 0;
    overflow: visible;
}

.recommend-section .post-card-body {
    min-height: 0;
    overflow: visible;
}

.recommend-section .post-card h3,
.recommend-section .post-card p {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
}

.pager {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.site-footer {
    background: #111;
    color: #ddd;
    padding: 34px 0 0;
}

.footer-banner {
    width: min(1160px, calc(100% - 28px));
    margin: 0 auto 24px;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}

.footer-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-grid,
.footer-widgets,
.footer-bottom {
    width: min(1160px, calc(100% - 28px));
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 26px;
    padding-bottom: 28px;
}

.footer-grid img {
    width: 260px;
    max-width: 100%;
    background: #fff;
    padding: 8px;
}

.footer-grid h3 {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 8px;
}

.footer-grid a,
.footer-grid p {
    display: block;
    color: #cfcfcf;
    margin: 8px 0;
    font-size: 14px;
}

.footer-category-window {
    height: 172px;
    overflow: hidden;
}

.footer-category-track {
    display: grid;
    animation: footerCategorySlide 30s linear infinite;
}

.footer-category-window:hover .footer-category-track {
    animation-play-state: paused;
}

.footer-category-track a {
    min-height: 31px;
    margin: 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #242424;
}

@keyframes footerCategorySlide {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-341px);
    }
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding: 24px 0 28px;
    border-top: 1px solid #2b2b2b;
}

.footer-widgets h3 {
    color: #fff;
    margin: 0 0 12px;
    padding-bottom: 8px;
    font-size: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent);
}

.footer-widgets a {
    display: block;
    color: #d6d6d6;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.35;
    border-bottom: 1px solid #242424;
}

.footer-widgets a:hover,
.footer-grid a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.footer-widgets span {
    display: block;
    color: #929292;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    color: #aaa;
    border-top: 1px solid #2b2b2b;
    padding: 14px 0;
    font-size: 13px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.footer-nav a {
    color: #cfcfcf;
}

@media (max-width: 860px) {
    .brand-row {
        grid-template-columns: 1fr;
    }

    .brand {
        grid-column: auto;
    }

    .search-form {
        justify-self: stretch;
        width: 100%;
    }

    .header-tools {
        justify-items: stretch;
    }

    .language-switcher {
        top: auto;
        right: 12px;
        bottom: 12px;
    }

    .hero-grid,
    .hero-mosaic,
    .content-shell {
        grid-template-columns: 1fr;
    }

    .mosaic-card,
    .mosaic-card.lead {
        height: 280px;
        min-height: 280px;
    }

    .with-sticky-sidebar .sidebar-column,
    .sidebar-column {
        position: static;
        padding-top: 0;
        max-height: none;
        overflow: visible;
    }

    .post-grid {
        grid-template-columns: 1fr;
    }

    .post-card,
    .defence-grid .defence-lead {
        height: auto;
        min-height: 0;
    }

    .defence-grid .defence-lead {
        grid-column: auto;
    }

    .defence-grid .defence-lead img {
        height: 220px;
    }

    .recent-videos,
    .live-news-grid,
    .inline-ad-grid,
    .footer-widgets,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .headline-ticker {
        grid-template-columns: 1fr;
    }

    .headline-ticker > strong {
        padding: 9px 12px;
    }

    .recent-videos a {
        grid-template-columns: 96px 1fr;
        border-right: 0;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .category-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-row--split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    }

    .category-wide-small-item {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 8px;
        padding: 10px;
    }

    .category-wide-small-item img {
        width: 68px;
        height: 50px;
    }

    .category-wide-small-item h3 {
        font-size: 13px;
    }

    .category-wide-body h3 {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    .category-row {
        grid-template-columns: 1fr;
    }

    .category-row--split {
        grid-template-columns: 1fr;
    }

    .category-wide-small {
        grid-template-columns: 1fr;
    }

    .category-wide-small-item {
        border-right: 0;
    }

    .category-wide-small-item:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .category-wide-small-item:last-child {
        border-bottom: 0;
    }

    .category-list a {
        grid-template-columns: 84px minmax(0, 1fr);
    }

    .article-content .alignleft,
    .article-content .alignright,
    .article-content .float-left,
    .article-content .float-right {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 16px 0;
    }

    .article-content .align-left,
    .article-content .align-center,
    .article-content .align-right {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 16px 0;
    }

    .article-content img {
        max-width: 100%;
        height: auto;
    }

    .article-content .alignwide,
    .article-content .alignfull {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}
