:root {
    color-scheme: dark;
    --ink: #0a0c10;
    --ink2: #111318;
    --ink3: #181c24;
    --ink4: #1f2530;
    --border: #262d38;
    --border2: #2e3848;
    --red: #e8192c;
    --red2: #ff3347;
    --red-dim: rgba(232, 25, 44, .15);
    --snow: #f1f3f6;
    --grey1: #c8d0da;
    --grey2: #8895a7;
    --grey3: #4a5568;
    --fh: "Barlow Condensed", sans-serif;
    --fb: "Lora", serif;
    --fu: "Nunito Sans", sans-serif;
    --r: 8px;
    --r2: 4px;
    --glow: 0 0 0 1px rgba(232, 25, 44, .4), 0 8px 32px rgba(232, 25, 44, .15);
}

body.cm-light,
body.light {
    color-scheme: light;
    --ink: #ffffff;
    --ink2: #f8f9fb;
    --ink3: #f0f2f5;
    --ink4: #e4e8ee;
    --border: #d5dae3;
    --border2: #bdc5d0;
    --red-dim: rgba(232, 25, 44, .1);
    --snow: #0a0c10;
    --grey1: #1f2530;
    --grey2: #3d4a5c;
    --grey3: #7a8799;
    --glow: 0 0 0 1px rgba(232, 25, 44, .3), 0 8px 32px rgba(232, 25, 44, .12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
[hidden] { display: none !important; }
body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--snow);
    font-family: var(--fu);
    font-size: 14px;
    line-height: 1.6;
    transition: background .35s, color .35s;
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
body.cm-light::after,
body.light::after { opacity: .15; }
* { transition: background-color .3s, border-color .3s, color .2s, box-shadow .3s; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button { cursor: pointer; }
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--ink2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

.cm-wrap,
.shell {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#cm-topbar {
    padding: 7px 0;
    background: var(--ink3);
    border-bottom: 1px solid var(--border);
}
.cm-topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--grey3);
    font-size: 11.5px;
    flex-wrap: wrap;
}
.cm-topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.cm-topbar-left span {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.cm-topbar-left i {
    color: var(--red);
    font-size: 10px;
}
.cm-topbar-right,
.cm-footer-social,
.cm-mobile-nav-footer {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cm-topbar-right a,
.cm-footer-social a,
.cm-mobile-nav-footer a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border2);
    border-radius: 50%;
    color: var(--grey2);
    font-size: 12px;
    touch-action: manipulation;
}
.cm-topbar-right a:hover,
.cm-footer-social a:hover,
.cm-mobile-nav-footer a:hover {
    border-color: var(--red);
    background: var(--red-dim);
    color: var(--red);
}

#cm-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--ink);
    border-bottom: 1px solid var(--border);
}
.cm-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}
.cm-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.cm-logo img {
    width: auto;
    height: 50px;
    object-fit: contain;
}
.cm-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex: 1;
}
.cm-nav a {
    position: relative;
    padding: 8px 12px;
    color: var(--grey2);
    font-family: var(--fu);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.cm-nav a::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: -1px;
    left: 12px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform .25s;
}
.cm-nav a:hover { color: var(--snow); }
.cm-nav a:hover::after { transform: scaleX(1); }
.cm-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.cm-header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 7px 14px;
    background: var(--ink3);
    border: 1px solid var(--border2);
    border-radius: 30px;
}
.cm-header-search:focus-within { border-color: var(--red); }
.cm-header-search input {
    width: 140px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--snow);
    font-size: 12px;
}
.cm-header-search input::placeholder { color: var(--grey3); }
.cm-header-search i { color: var(--grey3); font-size: 12px; }
#cm-theme-toggle {
    position: relative;
    width: 40px;
    height: 24px;
    flex-shrink: 0;
    padding: 0;
    border: 1.5px solid var(--border2);
    border-radius: 12px;
    outline: none;
    background: var(--ink3);
}
#cm-theme-toggle::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--grey3);
    transition: transform .3s, background .3s;
}
body.cm-light #cm-theme-toggle,
body.light #cm-theme-toggle {
    background: #e0e9ff;
    border-color: #aab8cc;
}
body.cm-light #cm-theme-toggle::before,
body.light #cm-theme-toggle::before {
    transform: translateX(16px);
    background: var(--red);
}
#cm-theme-toggle .tm-icon {
    position: absolute;
    top: 50%;
    font-size: 9px;
    line-height: 1;
    pointer-events: none;
    transform: translateY(-50%);
    transition: opacity .25s;
}
#cm-theme-toggle .tm-moon { left: 5px; opacity: 1; }
#cm-theme-toggle .tm-sun { right: 5px; opacity: 0; color: #f59e0b; }
body.cm-light #cm-theme-toggle .tm-moon,
body.light #cm-theme-toggle .tm-moon { opacity: 0; }
body.cm-light #cm-theme-toggle .tm-sun,
body.light #cm-theme-toggle .tm-sun { opacity: 1; }
.cm-nav-toggle {
    display: none;
    padding: 6px;
    border: 0;
    background: transparent;
    color: var(--snow);
    font-size: 22px;
    line-height: 1;
    touch-action: manipulation;
}

#cm-ticker-tape {
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink2);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
#cm-ticker-tape .tradingview-widget-container,
#cm-ticker-tape iframe { height: 40px !important; }
#cm-ticker-tape .tradingview-widget-container { width: 100%; }
.market-tape-track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    min-width: max-content;
    padding-left: 18px;
    animation: marketTape 68s linear infinite;
}
#cm-ticker-tape:hover .market-tape-track { animation-play-state: paused; }
.market-tape-item {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: var(--grey1);
    font-size: 12px;
    letter-spacing: .2px;
}
.market-tape-item strong {
    color: var(--snow);
    font-weight: 900;
    text-transform: uppercase;
}
.market-tape-price {
    color: var(--grey1);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.market-tape-change {
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}
.market-tape-loading {
    width: 100%;
    color: var(--grey2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    text-align: center;
    text-transform: uppercase;
}
@keyframes marketTape {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

#cm-mobile-search-bar {
    display: none;
    padding: 10px 16px;
    background: var(--ink2);
    border-bottom: 1px solid var(--border);
}
.cm-mobile-search-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 9px 14px;
    background: var(--ink3);
    border: 1px solid var(--border2);
    border-radius: 30px;
}
.cm-mobile-search-inner:focus-within { border-color: var(--red); }
.cm-mobile-search-inner input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--snow);
    font-size: 13px;
}
.cm-mobile-search-inner input::placeholder { color: var(--grey3); }
.cm-mobile-search-inner i { color: var(--grey3); font-size: 13px; }

#cm-breaking {
    overflow: hidden;
    padding: 9px 0;
    background: linear-gradient(90deg, var(--ink3) 0%, var(--ink2) 100%);
    border-bottom: 2px solid var(--border);
}
.cm-break-row {
    display: flex;
    align-items: center;
    gap: 0;
}
.cm-break-pill {
    flex-shrink: 0;
    margin-right: 16px;
    padding: 5px 14px;
    border-radius: var(--r2);
    background: var(--red);
    color: #fff;
    font-family: var(--fh);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
}
.cm-break-scroll {
    flex: 1;
    overflow: hidden;
}
.cm-break-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: scrollTicker 22s linear infinite;
    transition: transform .4s !important;
}
.cm-break-track:hover { animation-play-state: paused; }
.cm-break-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--grey1);
    font-size: 12.5px;
}
.cm-break-item:hover { color: var(--red2); }
.cm-break-item::before {
    content: "◈";
    flex-shrink: 0;
    color: var(--red);
    font-size: 8px;
}
@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

#cm-main { padding: 24px 0 60px; }
.cm-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 310px;
    gap: 22px;
    align-items: start;
}
#cm-left-sidebar,
#cm-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#cm-left-sidebar,
#cm-sidebar { position: sticky; top: 92px; }
#cm-news-col { min-width: 0; }

.cm-widget {
    overflow: hidden;
    background: var(--ink2);
    border: 1px solid var(--border);
    border-radius: var(--r);
}
body.cm-light .cm-widget,
body.light .cm-widget { box-shadow: 0 2px 12px rgba(0, 0, 0, .06); }
.cm-widget-hd {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    background: var(--ink3);
    border-bottom: 1px solid var(--border);
}
.cm-widget-hd i { color: var(--red); font-size: 13px; }
.cm-widget-hd h3 {
    color: var(--snow);
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.cm-widget-body { padding: 16px; }

#cm-image-banner {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--r);
}
.ad-card {
    display: block;
    overflow: hidden;
    background: transparent;
}
.ad-card img {
    width: 100%;
    height: auto;
}
.html-ad { padding: 16px; }
.ad-placeholder {
    min-height: 210px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    border: 1px dashed var(--border2);
    color: var(--grey1);
    text-align: center;
}
.ad-placeholder span { color: var(--grey2); }
.ad-placeholder.wide { min-height: 120px; }
.ad-placeholder.mobile { min-height: 50px; }
.wide-ad {
    grid-column: 1 / -1;
    margin: 0 0 18px;
}
.feed-ad { min-height: 188px; }
.cm-grid-row-ad {
    grid-column: 1 / -1;
    min-width: 0;
}
.row-ad {
    width: 100%;
    min-height: 170px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: var(--ink2);
}
.row-ad img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
}
.row-ad.html-ad { padding: 0; }
.row-ad .ad-placeholder {
    min-height: 170px;
    border-radius: var(--r);
}
.mobile-sticky-ad { display: none; }

.cm-trend-list { list-style: none; }
.cm-trend-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
}
.cm-trend-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.cm-trend-n {
    flex-shrink: 0;
    width: 28px;
    color: var(--border2);
    font-family: var(--fh);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    text-align: right;
}
.cm-trend-item:first-child .cm-trend-n { color: var(--red); }
.cm-trend-ttl {
    display: block;
    color: var(--grey1);
    font-family: var(--fh);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .2px;
}
.cm-trend-item a:hover .cm-trend-ttl { color: var(--snow); }
.cm-trend-meta {
    display: block;
    margin-top: 3px;
    color: var(--grey3);
    font-size: 10px;
}

.cm-tab-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-bottom: 18px;
    padding: 0 0 14px;
    border-bottom: 2px solid var(--border);
}
.cm-tab-btn {
    padding: 7px 12px;
    border: 1px solid transparent;
    border-radius: var(--r2);
    background: transparent;
    color: var(--grey3);
    font-family: var(--fu);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    white-space: nowrap;
    touch-action: manipulation;
}
.cm-tab-btn:hover {
    color: var(--grey1);
    background: var(--ink3);
    border-color: var(--border);
}
.cm-tab-btn.active {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
}
.cm-tab-panel {
    display: none;
    animation: fadeUp .3s ease;
}
.cm-tab-panel.active { display: block; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.cm-hero-slot { margin-bottom: 20px; }
.cm-hero-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: transform .3s, box-shadow .3s;
}
.cm-hero-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow);
}
.cm-hero-img {
    position: relative;
    min-height: 240px;
    background-color: var(--ink4);
    background-position: center;
    background-size: cover;
}
.cm-hero-img.cm-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ink3), var(--ink4));
}
.cm-hero-img.cm-no-img span {
    color: var(--border2);
    font-family: var(--fh);
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}
.cm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(10, 12, 16, .7) 100%);
    pointer-events: none;
}
.cm-hero-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 24px;
    background: var(--ink2);
}
.cm-source-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 3px 10px;
    border-radius: 3px;
    background: var(--red);
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.cm-hero-title {
    margin-bottom: 10px;
    color: var(--snow);
    font-family: var(--fh);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .3px;
}
.cm-hero-desc {
    margin-bottom: 14px;
    color: var(--grey2);
    font-family: var(--fb);
    font-size: 13px;
    font-style: italic;
    line-height: 1.65;
}
.cm-card-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--grey3);
    font-size: 11px;
}
.cm-card-meta i {
    color: var(--red);
    font-size: 10px;
}

.cm-cards-grid,
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.cm-news-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--ink2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: all .25s;
}
.cm-news-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .5), 0 0 0 1px rgba(232, 25, 44, .2);
}
body.cm-light .cm-news-card,
body.light .cm-news-card { box-shadow: 0 2px 8px rgba(0, 0, 0, .06); }
body.cm-light .cm-news-card:hover,
body.light .cm-news-card:hover { box-shadow: 0 12px 36px rgba(0, 0, 0, .12), 0 0 0 1px rgba(232, 25, 44, .2); }
.cm-news-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--red2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}
.cm-news-card:hover::before { transform: scaleX(1); }
.cm-news-card-img-wrap {
    position: relative;
    height: 165px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--ink4);
}
.cm-news-card-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: transparent;
    font-size: 0;
    transition: transform .4s !important;
}
.cm-news-card:hover .cm-news-card-img { transform: scale(1.06); }
.cm-news-card-img-wrap-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ink3) 0%, var(--ink4) 100%);
    color: var(--border2);
    font-family: var(--fh);
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1px;
}
.cm-news-card-img-wrap.cm-img-fail .cm-news-card-img-wrap-fallback { display: flex; }
.cm-news-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 14px 16px 12px;
}
.cm-source-tag {
    display: block;
    margin-bottom: 7px;
    color: var(--red2);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.cm-news-card-title {
    margin-bottom: 7px;
    color: var(--snow);
    font-family: var(--fh);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .2px;
}
.cm-news-card:hover .cm-news-card-title { color: var(--red2); }
.cm-news-card-desc {
    flex: 1;
    display: -webkit-box;
    margin-bottom: 10px;
    overflow: hidden;
    color: var(--grey2);
    font-family: var(--fb);
    font-size: 12px;
    font-style: italic;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.cm-news-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 9px;
    border-top: 1px solid var(--border);
}
.cm-news-card-date {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--grey3);
    font-size: 10.5px;
}
.cm-news-card-date i {
    color: var(--border2);
    font-size: 9px;
}
.cm-read-more {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--red2);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-4px);
    transition: all .2s;
}
.cm-news-card:hover .cm-read-more {
    opacity: 1;
    transform: translateX(0);
}
.cm-read-more i { font-size: 8px; }

.cm-loadmore-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.cm-loadmore-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    padding: 13px 40px;
    border: 1px solid var(--border2);
    border-radius: 40px;
    background: transparent;
    color: var(--grey1);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    touch-action: manipulation;
}
.cm-loadmore-btn:disabled { opacity: .7; }

#cm-weather .cm-widget-body,
#cm-markets .cm-widget-body { padding: 0; }
.cm-w-search {
    display: flex;
    gap: 6px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
}
.cm-w-search input {
    flex: 1;
    min-width: 0;
    padding: 7px 10px;
    border: 1px solid var(--border2);
    border-radius: var(--r2);
    outline: none;
    background: var(--ink3);
    color: var(--snow);
    font-size: 12px;
}
.cm-w-search input:focus { border-color: var(--red); }
.cm-w-search input::placeholder { color: var(--grey3); }
.cm-w-search button {
    padding: 7px 12px;
    border: 0;
    border-radius: var(--r2);
    background: var(--red);
    color: #fff;
    font-size: 12px;
}
#cm-w-content,
.weather-content { padding: 18px 16px; }
#cm-w-loading,
#cm-w-error,
.weather-loading,
.weather-error {
    padding: 20px;
    color: var(--grey3);
    font-size: 12px;
    text-align: center;
}
#cm-w-error,
.weather-error { color: var(--red); }
.cm-w-top,
.weather-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
}
.cm-w-city,
.weather-city {
    color: var(--snow);
    font-family: var(--fh);
    font-size: 18px;
    letter-spacing: 1.5px;
}
.cm-w-cond,
.weather-cond {
    margin-top: 4px;
    color: var(--grey2);
    font-family: var(--fb);
    font-size: 12px;
    font-style: italic;
    text-transform: capitalize;
}
.cm-w-icon,
.weather-icon {
    font-size: 46px;
    line-height: 1;
    text-align: center;
}
.cm-w-temp,
.weather-temp {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    color: var(--snow);
    font-family: var(--fh);
    font-size: 54px;
    line-height: 1;
}
.cm-w-temp sup,
.weather-temp sup {
    margin-top: 8px;
    font-size: 20px;
}
.cm-w-stats,
.weather-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
}
.cm-w-stat,
.weather-stats div { text-align: center; }
.cm-w-stat .v,
.weather-stats strong {
    display: block;
    color: var(--snow);
    font-family: var(--fh);
    font-size: 18px;
    font-weight: 700;
}
.cm-w-stat .l,
.weather-stats span {
    display: block;
    margin-top: 2px;
    color: var(--grey3);
    font-size: 9.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cm-w-forecast,
.weather-forecast {
    display: flex;
    gap: 6px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.cm-w-day,
.weather-day {
    flex: 1;
    min-width: 42px;
    padding: 7px 4px;
    border: 1px solid var(--border);
    border-radius: var(--r2);
    background: var(--ink3);
    text-align: center;
}
.cm-w-day .dn,
.weather-day-name {
    color: var(--grey3);
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cm-w-day .di,
.weather-day-icon {
    margin: 3px 0;
    font-size: 18px;
}
.cm-w-day .dt,
.weather-day-temp {
    color: var(--snow);
    font-size: 12.5px;
    font-weight: 600;
}

.cm-mkt-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}
.cm-mkt-tab {
    flex: 1;
    padding: 9px 6px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--grey3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    touch-action: manipulation;
}
.cm-mkt-tab.active {
    background: var(--red-dim);
    color: var(--red);
    border-bottom-color: var(--red);
}
.cm-mkt-row,
.market-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 50px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
}
.cm-mkt-row:last-child,
.market-row:last-child { border-bottom: 0; }
.cm-mkt-row:hover,
.market-row:hover { background: var(--ink3); }
.cm-mkt-row { cursor: pointer; }
.cm-mkt-row.active {
    background: var(--red-dim);
    box-shadow: inset 3px 0 0 var(--red);
}
.cm-mkt-nm,
.market-name {
    color: var(--snow);
    font-size: 12.5px;
    font-weight: 600;
}
.cm-mkt-sub,
.market-symbol {
    margin-top: 1px;
    color: var(--grey3);
    font-size: 10px;
}
.cm-mkt-values,
.market-values {
    min-width: 118px;
    text-align: right;
}
.cm-mkt-pr,
.market-price {
    color: var(--snow);
    font-size: 12.5px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.cm-mkt-ch,
.market-change {
    margin-top: 3px;
    font-size: 10.5px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.market-up,
.up { color: #14b8a6; }
.market-down,
.down { color: var(--red2); }
.market-flat { color: var(--grey3); }
.cm-market-overview,
.market-overview {
    padding: 12px;
    border-top: 1px solid var(--border);
}
.cm-market-overview .tradingview-widget-container,
.market-overview .tradingview-widget-container,
.cm-market-overview iframe,
.market-overview iframe {
    width: 100% !important;
    height: 320px !important;
    min-height: 320px;
}

.section-heading {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--border);
}
.section-heading p,
.article-category {
    color: var(--red);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.section-heading h1,
.article-page h1 {
    margin: 6px 0;
    color: var(--snow);
    font-family: var(--fh);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
}
.section-heading span,
.page-intro,
.article-meta,
.muted {
    color: var(--grey2);
    line-height: 1.65;
}
.article-page {
    padding: 28px;
    background: var(--ink2);
    border: 1px solid var(--border);
    border-radius: var(--r);
}
.article-meta {
    display: flex;
    gap: 18px;
    margin: 18px 0;
    flex-wrap: wrap;
}
.article-image { margin: 24px 0; }
.article-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--r);
}
.article-image figcaption {
    margin-top: 8px;
    color: var(--grey3);
    font-size: 12px;
}
.article-body {
    color: #dce5f5;
    font-family: var(--fb);
    font-size: 18px;
    line-height: 1.78;
}
body.cm-light .article-body,
body.light .article-body { color: var(--grey1); }
.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body h2,
.article-body h3 { margin-bottom: 18px; }
.article-body a {
    color: var(--red2);
    text-decoration: underline;
}
.article-preserve {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}
body.cm-single-post {
    color-scheme: light;
    --ink: #ffffff;
    --ink2: #ffffff;
    --ink3: #ffffff;
    --ink4: #f5f5f5;
    --border: #ececec;
    --border2: #dedede;
    --snow: #313131;
    --grey1: #313131;
    --grey2: #666666;
    --grey3: #999999;
    background: #ffffff;
    color: #313131;
    font-family: "Open Sans", sans-serif;
}
body.cm-single-post::after { display: none; }
body.cm-single-post #cm-theme-toggle,
body.cm-single-post #cm-mobile-search-bar { display: none; }
body.cm-single-post #cm-main {
    padding: 0 0 50px;
    background: #ffffff;
}
body.cm-single-post .cm-wrap { max-width: 1170px; }
body.cm-single-post .cm-single-layout { display: block; }
body.cm-single-post #cm-news-col {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}
body.cm-single-post .article-page {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #313131;
    font-family: "Open Sans", sans-serif;
}
body.cm-single-post .header-standard {
    margin: 0 0 20px;
    padding: 0;
}
body.cm-single-post .penci-standard-cat { margin-bottom: 5px; }
body.cm-single-post .penci-cat-name {
    color: #f23154;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 13.2px;
    text-transform: uppercase;
}
body.cm-single-post .article-page h1,
body.cm-single-post .post-title.single-post-title.entry-title {
    margin: 0;
    color: #313131;
    font-family: "Open Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
}
body.cm-single-post .post-box-meta-single {
    display: flex;
    gap: 8px;
    margin: 6px 0 0;
    color: #313131;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    flex-wrap: wrap;
}
body.cm-single-post .post-box-meta-single .author-url { color: #313131; }
body.cm-single-post .article-image,
body.cm-single-post .post-image {
    margin: 0 0 26px;
}
body.cm-single-post .article-image a,
body.cm-single-post .post-image a { display: block; }
body.cm-single-post .article-image img,
body.cm-single-post .post-image img {
    width: 100%;
    max-height: none;
    background: #f5f5f5;
    border-radius: 0;
    object-fit: contain;
}
body.cm-single-post .article-body,
body.cm-single-post .post-entry,
body.cm-single-post .inner-post-entry {
    margin: 0 0 33px;
    color: #313131;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}
body.cm-single-post .article-body p,
body.cm-single-post .article-body ul,
body.cm-single-post .article-body ol,
body.cm-single-post .article-body blockquote,
body.cm-single-post .article-body h2,
body.cm-single-post .article-body h3 {
    margin: 0 0 17px;
}
body.cm-single-post .article-body p {
    line-height: 25.2px;
}
body.cm-single-post .article-body a {
    color: #f23154;
    text-decoration: none;
}
.cm-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
body.cm-single-post .cm-article-share {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -8px 0 28px;
    padding: 14px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}
body.cm-single-post .cm-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    color: #ffffff;
    background: #313131;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
body.cm-single-post .cm-share-btn:hover,
body.cm-single-post .cm-share-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.15);
    outline: 0;
}
body.cm-single-post .cm-share-copy { background: #555555; }
body.cm-single-post .cm-share-email { background: #ea4335; }
body.cm-single-post .cm-share-facebook { background: #1877f2; }
body.cm-single-post .cm-share-twitter { background: #111111; }
body.cm-single-post .cm-share-telegram { background: #229ed9; }
body.cm-single-post .cm-share-linkedin { background: #0a66c2; }
body.cm-single-post .cm-share-whatsapp { background: #25d366; }
body.cm-single-post .cm-share-reddit { background: #ff4500; }
body.cm-single-post .cm-share-btn.copied {
    background: #18a058;
}
body.cm-single-post .post-pagination {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 15px 0;
    color: #313131;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}
body.cm-single-post .post-pagination a {
    display: block;
    min-width: 0;
    color: #313131;
    font-weight: 600;
    line-height: 1.5;
}
body.cm-single-post .post-pagination span {
    display: block;
    margin-bottom: 4px;
    color: #777777;
    font-size: 11px;
    font-weight: 400;
    text-transform: none;
}
body.cm-single-post .next-post { text-align: right; }
body.cm-single-post .related {
    margin-top: 28px;
    color: #313131;
}
body.cm-single-post .related h2 {
    color: #313131;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    border-color: #ececec;
}
.static-page {
    max-width: 860px;
    margin: 0 auto;
}
.page-intro {
    margin: 16px 0 24px;
    font-size: 18px;
}
.related { margin-top: 24px; }
.related h2 {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    color: var(--snow);
    font-family: var(--fh);
    font-size: 24px;
    font-weight: 800;
}
.empty-state {
    padding: 34px;
    background: var(--ink2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    color: var(--grey2);
}

#cm-footer {
    padding: 48px 0 0;
    background: var(--ink2);
    border-top: 1px solid var(--border);
}
.cm-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.cm-footer-brand .cm-logo { margin-bottom: 14px; }
.cm-footer-brand .cm-logo img { height: 54px; }
.cm-footer-brand p {
    max-width: 280px;
    color: var(--grey2);
    font-family: var(--fb);
    font-size: 13px;
    font-style: italic;
    line-height: 1.7;
}
.cm-footer-social { margin-top: 18px; }
.cm-footer-social a {
    width: 34px;
    height: 34px;
    font-size: 13px;
}
.cm-footer-col h4 {
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    color: var(--snow);
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.cm-footer-col ul { list-style: none; }
.cm-footer-col li { margin-bottom: 9px; }
.cm-footer-col a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--grey2);
    font-size: 12.5px;
}
.cm-footer-col a::before {
    content: "›";
    color: var(--red);
    font-size: 14px;
}
.cm-footer-col a:hover { color: var(--red2); }
.cm-footer-col img {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
}
.cm-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    color: var(--grey3);
    font-size: 11.5px;
    flex-wrap: wrap;
}
.cm-footer-bottom a { color: var(--grey3); }
.cm-footer-bottom a:hover { color: var(--red2); }
.cm-footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cm-mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    background: var(--ink2);
}
.cm-mobile-nav-overlay.open { display: flex; }
.cm-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}
.cm-mobile-nav-close {
    padding: 4px;
    border: 0;
    background: transparent;
    color: var(--snow);
    font-size: 24px;
    touch-action: manipulation;
}
.cm-mobile-nav-links {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 8px 0;
}
.cm-mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    color: var(--grey1);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    touch-action: manipulation;
}
.cm-mobile-nav-links a:hover {
    background: var(--ink3);
    color: var(--red2);
}
.cm-mobile-nav-links .nav-icon {
    width: 20px;
    font-size: 16px;
    text-align: center;
}
.cm-mobile-nav-footer {
    flex-shrink: 0;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}
.cm-mobile-nav-footer a {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

@media (max-width: 1300px) {
    .cm-grid { grid-template-columns: 230px minmax(0, 1fr) 295px; gap: 18px; }
}
@media (max-width: 1100px) {
    .cm-grid { grid-template-columns: minmax(0, 1fr) 285px; gap: 18px; }
    #cm-left-sidebar { display: none; }
    .cm-cards-grid,
    .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
    .cm-grid { grid-template-columns: minmax(0, 1fr) 260px; gap: 16px; }
    .cm-hero-title { font-size: 22px; }
    .cm-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
    .cm-grid { grid-template-columns: 1fr; gap: 20px; }
    #cm-sidebar {
        order: 3;
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        width: 100%;
    }
    #cm-news-col { order: 1; }
    #cm-sidebar > .cm-widget { min-width: 0; }
    #cm-sidebar > #cm-weather,
    #cm-sidebar > #cm-markets { grid-column: 1 / -1; }
    .cm-hero-card { grid-template-columns: 1fr; min-height: auto; }
    .cm-hero-img { min-height: 220px; }
    .cm-hero-overlay { background: linear-gradient(to bottom, transparent 30%, rgba(10, 12, 16, .8) 100%); }
    .cm-hero-body { padding: 18px; }
    .cm-hero-title { font-size: 20px; }
    .cm-hero-desc { font-size: 12.5px; }
    .cm-nav,
    .cm-header-search { display: none; }
    .cm-nav-toggle,
    #cm-mobile-search-bar { display: block; }
    .cm-footer-grid .cm-footer-brand { grid-column: 1 / -1; }
    .cm-news-card,
    .cm-hero-card,
    .cm-trend-item a,
    .cm-tab-btn,
    .cm-loadmore-btn,
    .cm-mkt-tab { -webkit-tap-highlight-color: transparent; }
    .cm-tab-btn,
    .cm-loadmore-btn,
    .cm-mkt-tab { min-height: 40px; }
    .cm-w-search input,
    .cm-mobile-search-inner input { font-size: 16px; }
    .cm-w-search button {
        min-width: 40px;
        min-height: 40px;
    }
}
@media (max-width: 600px) {
    .cm-wrap,
    .shell { padding: 0 14px; }
    #cm-main { padding: 16px 0 40px; }
    .cm-topbar-left span:nth-child(3) { display: none; }
    #cm-topbar { padding: 6px 0; }
    .cm-logo img { height: 42px; }
    .cm-header-inner { gap: 12px; padding: 10px 0; }
    #cm-theme-toggle { width: 36px; height: 22px; }
    #cm-theme-toggle::before { width: 14px; height: 14px; }
    body.cm-light #cm-theme-toggle::before,
    body.light #cm-theme-toggle::before { transform: translateX(14px); }
    .cm-break-pill { padding: 4px 10px; font-size: 10px; }
    .cm-break-item { font-size: 11.5px; }
    .cm-tab-nav {
        flex-wrap: wrap;
        gap: 4px;
        overflow-x: auto;
        padding-bottom: 12px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .cm-tab-nav::-webkit-scrollbar { display: none; }
    .cm-tab-btn {
        flex-shrink: 0;
        padding: 6px 10px;
        font-size: 10.5px;
        letter-spacing: .3px;
    }
    .cm-hero-img { min-height: 185px; }
    .cm-hero-title { font-size: 18px; }
    .cm-hero-body { padding: 14px; }
    .cm-hero-desc { display: none; font-size: 12px; }
    .cm-cards-grid,
    .story-grid { grid-template-columns: 1fr; gap: 12px; }
    .cm-grid-row-ad { grid-column: auto; }
    .row-ad { min-height: 0; }
    .row-ad img {
        max-height: none;
        object-fit: contain;
    }
    #cm-sidebar { grid-template-columns: 1fr; }
    #cm-sidebar > #cm-weather,
    #cm-sidebar > #cm-markets { grid-column: auto; }
    .cm-loadmore-btn { padding: 11px 28px; font-size: 11.5px; }
    .cm-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .cm-footer-grid .cm-footer-brand { grid-column: auto; }
    .cm-footer-brand p { max-width: 100%; }
    .cm-footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    .cm-footer-bottom-links { justify-content: center; gap: 12px; }
    #cm-ticker-tape { display: none; }
    .article-page { padding: 18px; }
    body.cm-single-post .article-page { padding: 0 18px; }
    body.cm-single-post .article-page h1,
    body.cm-single-post .post-title.single-post-title.entry-title {
        font-size: 18px;
        line-height: 24.3px;
    }
    body.cm-single-post .post-pagination {
        display: block;
        padding: 15px 0;
    }
    body.cm-single-post .post-pagination a + a { margin-top: 14px; }
    body.cm-single-post .next-post { text-align: left; }
    .mobile-sticky-ad {
        position: fixed;
        right: 12px;
        bottom: 12px;
        left: 12px;
        z-index: 40;
        display: block;
        max-height: 70px;
        overflow: hidden;
    }
    .mobile-sticky-ad img {
        width: 100%;
        max-height: 70px;
        object-fit: cover;
    }
    #cm-footer { padding-bottom: 90px; }
}
@media (max-width: 400px) {
    .cm-wrap,
    .shell { padding: 0 12px; }
    .cm-logo img { height: 36px; }
    .cm-hero-title { font-size: 16px; }
    .cm-hero-img { min-height: 160px; }
    .cm-news-card-title { font-size: 15px; }
    .cm-news-card-img-wrap { height: 145px; }
    .cm-tab-btn { padding: 5px 9px; font-size: 10px; }
    .cm-topbar-left span:nth-child(2) { display: none; }
    .cm-break-item { font-size: 11px; }
    .cm-w-temp,
    .weather-temp { font-size: 44px; }
    .cm-w-icon,
    .weather-icon { font-size: 36px; }
    .cm-mkt-tab { padding: 8px 4px; font-size: 10px; }
    #cm-main { padding: 12px 0 32px; }
    .cm-footer-social a { width: 38px; height: 38px; }
}
