@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Baloo+Da+2:wght@500;600;700;800&display=swap');

:root {
    --brand: #d42628;
    --brand-dark: #a81314;
    --brand-green: #007c59;
    --brand-green-dark: #005c43;
    --text: #1a1a1a;
    --muted: #666;
    --border: #e5e5e5;
    --bg: #f7f7f7;
    --font-heading: 'Baloo Da 2', 'Hind Siliguri', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Hind Siliguri', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

h1, h2, h3, .section-title, .mixed-col-title, .footer-logo,
.hero-main h2, .feature-title, .news-card h3, .headline-list-item h4,
.spotlight-banner-text h2, .countdown-widget strong {
    font-family: var(--font-heading);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* ---------- Market/stock ticker (topmost bar) ---------- */
.market-ticker { background: #0d1b2a; overflow: hidden; padding: 6px 0; }
.market-ticker-track { display: flex; white-space: nowrap; animation: ticker 40s linear infinite; width: max-content; }
.market-ticker-item { display: inline-flex; align-items: center; gap: 6px; padding: 0 20px; font-size: 12.5px; color: #cfd8e3; border-right: 1px solid #2a3b4d; }
.market-ticker-item strong { color: #fff; }
.market-ticker-item .up { color: #3ddc97; }
.market-ticker-item .down { color: #e74c3c; }


.topbar {
    background: #1a1a1a;
    color: #ccc;
    font-size: 13px;
    padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar a { color: #ccc; }
.topbar a:hover { color: #fff; }
.topbar-promos { display: flex; gap: 18px; overflow-x: auto; scrollbar-width: none; min-width: 0; flex: 1 1 auto; }
.topbar-promos::-webkit-scrollbar { display: none; }
.topbar-promo-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; flex-shrink: 0; }
.topbar-promo-item img { width: 28px; height: 28px; object-fit: cover; border-radius: 3px; flex-shrink: 0; }
.topbar-promo-item span { font-size: 12.5px; max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar-right { flex-shrink: 0; display: flex; align-items: center; gap: 16px; }
.topbar-date { flex-shrink: 0; font-size: 12.5px; color: #999; }

/* ---------- Nav with utility icons ---------- */
.main-nav .container { display: flex; justify-content: space-between; align-items: center; }
.main-nav .nav-links { display: flex; overflow-x: auto; scrollbar-width: none; }
.main-nav .nav-links::-webkit-scrollbar { display: none; }
.nav-utils { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.nav-utils a, .nav-utils button {
    color: #fff; background: none; border: none; cursor: pointer;
    padding: 10px 10px; font-size: 13px; display: flex; align-items: center; gap: 4px;
    font-family: inherit;
}
.nav-utils a:hover, .nav-utils button:hover { background: var(--brand-dark); }
.hamburger-btn { display: none; flex-direction: column; gap: 4px; padding: 10px 12px !important; }
.hamburger-btn span.bar { display: block; width: 20px; height: 2px; background: #fff; }
.mobile-menu-panel { display: none; }
.mobile-menu-panel.active {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--brand-dark); z-index: 99; max-height: 70vh; overflow-y: auto;
}
.mobile-menu-panel a { display: block; color: #fff; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.15); }

/* ---------- Spotlight banner (special coverage) ---------- */
.spotlight-banner {
    background: linear-gradient(120deg, #7a0d1f, var(--brand) 60%, #e0304f);
    border-radius: 6px;
    padding: 22px 26px;
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.spotlight-banner-text h2 { color: #fff; font-size: 24px; font-weight: 700; }
.spotlight-banner-text p { color: rgba(255,255,255,.85); font-size: 13.5px; margin-top: 4px; }
.spotlight-banner-btn {
    background: #fff; color: var(--brand); font-weight: 700; font-size: 13px;
    padding: 9px 18px; border-radius: 20px; white-space: nowrap;
}
.spotlight-banner-btn:hover { background: #f2f2f2; }

/* ---------- Spotlight zone (tinted grid box) ---------- */
.spotlight-zone {
    background: #eef7f5;
    border: 1px solid #d7ece7;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 30px;
}
.spotlight-zone-item { display: flex; gap: 10px; padding: 8px; }
.spotlight-zone-item img { width: 90px; height: 65px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.spotlight-zone-item h4 { font-size: 14px; font-weight: 600; line-height: 1.4; }
.spotlight-zone-item .meta { font-size: 11.5px; color: #888; margin-top: 4px; }

/* ---------- Headline-only list (no image, text only) ---------- */
.headline-list-item { padding: 11px 0; border-bottom: 1px solid var(--border); }
.headline-list-item h4 { font-size: 14.5px; font-weight: 600; line-height: 1.45; }
.headline-list-item h4:hover { color: var(--brand); }
.headline-list-item .meta { font-size: 11.5px; color: #999; margin-top: 5px; }

/* ---------- Opinion box (colored left border) ---------- */
.opinion-box { border-left: 4px solid var(--brand-green); padding-left: 14px; }
.opinion-box .opinion-label { color: var(--brand-green); font-weight: 700; font-size: 13px; margin-bottom: 4px; display: block; font-family: var(--font-heading); }
.opinion-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.opinion-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 50%; flex-shrink: 0; }
.opinion-item h4 { font-size: 14px; font-weight: 600; line-height: 1.4; }

/* ---------- Video badge ---------- */
.video-thumb { position: relative; }
.video-thumb::after {
    content: '▶';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 44px; height: 44px; background: rgba(0,0,0,.55); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 16px; padding-left: 3px;
}

/* ---------- Mixed content row (3-col editorial layout) ---------- */
.mixed-row { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 24px; margin-bottom: 30px; }
.mixed-col-title { font-size: 15px; font-weight: 700; color: var(--brand); margin-bottom: 10px; }
.mixed-col img.feature-img { width: 100%; height: 230px; object-fit: cover; border-radius: 4px; margin-bottom: 10px; }
.mixed-col .feature-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }



/* ---------- Header ---------- */
.site-header { padding: 16px 0; border-bottom: 1px solid var(--border); position: relative; }
.site-header::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand) 50%, var(--brand-green) 50%, var(--brand-green) 100%);
}
.site-header .container { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.site-logo-link { display: inline-block; }
.site-logo-img { height: 64px; width: auto; display: block; }
.site-tagline { font-size: 13px; color: var(--muted); }

/* ---------- Nav ---------- */
.main-nav {
    background: var(--brand);
    position: sticky;
    top: 0;
    z-index: 100;
}
.main-nav a {
    color: #fff;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    display: block;
}
.main-nav a:hover, .main-nav a.active { background: var(--brand-dark); }

/* ---------- Breaking news ticker ---------- */
.ticker-wrap {
    background: #fff3f3;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ticker-label {
    background: var(--brand);
    color: #fff;
    padding: 8px 14px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-items { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-items a { padding: 8px 30px 8px 0; font-size: 14px; color: #333; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Layout ---------- */
.main-content { padding: 24px 0 40px; }
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand);
    border-bottom: 3px solid var(--brand);
    padding-bottom: 8px;
    margin-bottom: 16px;
    display: inline-block;
}

/* ---------- Featured / Hero ---------- */
.hero-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; margin-bottom: 30px; }
.hero-main { position: relative; border-radius: 4px; overflow: hidden; }
.hero-main img { width: 100%; height: 420px; object-fit: cover; }
.hero-main .overlay {
    position: absolute; left: 0; right: 0; bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.85));
    padding: 20px; color: #fff;
}
.hero-main h2 { font-size: 26px; font-weight: 700; line-height: 1.3; }
.hero-main .meta { font-size: 13px; opacity: .85; margin-top: 8px; }
.hero-side { display: flex; flex-direction: column; gap: 14px; }
.hero-side-item { display: flex; gap: 12px; }
.hero-side-item img { width: 110px; height: 80px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.hero-side-item h3 { font-size: 15px; font-weight: 600; line-height: 1.4; }

/* ---------- News card ---------- */
.news-card { border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.news-card img { width: 100%; height: 170px; object-fit: cover; border-radius: 4px; margin-bottom: 10px; }
.news-card .category-tag {
    display: inline-block; background: var(--brand); color: #fff;
    font-size: 11px; padding: 2px 8px; border-radius: 2px; margin-bottom: 6px;
}
.news-card h3 { font-size: 16px; font-weight: 600; line-height: 1.4; margin-bottom: 6px; }
.news-card h3 a:hover { color: var(--brand); }
.news-card .excerpt { font-size: 13.5px; color: var(--muted); margin-bottom: 6px; }
.news-card .meta { font-size: 12px; color: #999; }

/* list style (compact) */
.news-list-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.news-list-item img { width: 100px; height: 75px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.news-list-item h3 { font-size: 15px; font-weight: 600; line-height: 1.4; }
.news-list-item .meta { font-size: 12px; color: #999; margin-top: 4px; }

/* ---------- Sidebar ---------- */
.layout-with-sidebar { display: grid; grid-template-columns: 2.2fr 1fr; gap: 30px; }
.sidebar-box { margin-bottom: 30px; }
.popular-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.popular-num { font-size: 22px; font-weight: 700; color: var(--brand); min-width: 30px; }
.popular-item h4 { font-size: 14px; font-weight: 600; line-height: 1.4; }

/* ---------- Article page ---------- */
.article-header { max-width: 800px; margin: 0 auto 20px; }
.article-header .category-tag {
    display: inline-block; background: var(--brand); color: #fff;
    font-size: 12px; padding: 3px 10px; border-radius: 2px; margin-bottom: 12px;
}
.article-header h1 { font-size: 30px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.article-header .excerpt { font-size: 16px; color: var(--muted); margin-bottom: 12px; }
.article-meta { font-size: 13px; color: #999; display: flex; gap: 14px; flex-wrap: wrap; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 10px 0; }
.article-image { max-width: 800px; margin: 0 auto 20px; }
.article-image img { width: 100%; border-radius: 4px; }
.article-body { max-width: 800px; margin: 0 auto; font-size: 17px; line-height: 1.9; }
.article-body p { margin-bottom: 16px; }

/* ---------- Footer ---------- */
.site-footer {
    background: #1a1a1a; color: #bbb; padding: 36px 0 20px; margin-top: 40px; font-size: 14px;
    border-top: 3px solid; border-image: linear-gradient(90deg, var(--brand) 50%, var(--brand-green) 50%) 1;
}
.footer-columns { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 12px; }
.footer-logo { color: var(--brand); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: #999; margin-bottom: 12px; }
.footer-contact-line { font-size: 13px; color: #bbb; margin-bottom: 6px; }
.footer-nav { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a { color: #bbb; font-size: 13.5px; }
.footer-nav a:hover { color: #fff; }
.footer-social { display: flex; flex-direction: column; gap: 9px; }
.footer-social a { color: #bbb; font-size: 13.5px; }
.footer-social a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid #333; padding-top: 14px; margin-top: 6px; font-size: 13px; color: #888; }
@media (max-width: 700px) { .footer-columns { grid-template-columns: 1fr 1fr; } }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 6px; justify-content: center; margin: 30px 0; flex-wrap: wrap; }
.page-btn { padding: 8px 14px; border: 1px solid var(--border); border-radius: 4px; font-size: 14px; }
.page-btn:hover { background: var(--bg); }
.page-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }

.infinite-sentinel { text-align: center; padding: 24px 0; color: #999; font-size: 13.5px; min-height: 20px; }


.search-form { display: flex; }
.search-form input { flex: 1; padding: 8px 12px; border: 1px solid var(--border); border-radius: 4px 0 0 4px; font-family: inherit; }
.search-form button { background: var(--brand); color: #fff; border: none; padding: 0 16px; border-radius: 0 4px 4px 0; cursor: pointer; }

/* ---------- Photo gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { position: relative; display: block; border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 8px;
    background: linear-gradient(transparent, rgba(0,0,0,.75)); color: #fff;
    font-size: 12px; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}


/* ---------- Eye-catchy animated demo/dummy ad banners ---------- */
.demo-ad {
    border-radius: 8px; overflow: hidden; position: relative;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto; font-family: 'Hind Siliguri', sans-serif; color: #fff; text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.18); padding: 6px 14px;
}
.demo-ad-bg1 { background: linear-gradient(270deg, #ff5f6d, #ffc371, #ff5f6d); background-size: 600% 600%; animation: demoGradientShift 5s ease infinite; }
.demo-ad-bg2 { background: linear-gradient(270deg, #7f00ff, #e100ff, #7f00ff); background-size: 600% 600%; animation: demoGradientShift 5s ease infinite; }
.demo-ad-bg3 { background: linear-gradient(270deg, #11998e, #38ef7d, #11998e); background-size: 600% 600%; animation: demoGradientShift 5s ease infinite; }
.demo-ad-bg4 { background: linear-gradient(270deg, #f7971e, #ffd200, #f7971e); background-size: 600% 600%; animation: demoGradientShift 5s ease infinite; }
.demo-ad-bg5 { background: linear-gradient(270deg, #ee0979, #ff6a00, #ee0979); background-size: 600% 600%; animation: demoGradientShift 5s ease infinite; }
@keyframes demoGradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.demo-ad-shine { position: relative; }
.demo-ad-shine::after {
    content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
    animation: demoShineSweep 2.4s ease-in-out infinite;
}
@keyframes demoShineSweep { 0% { left: -75%; } 100% { left: 125%; } }

.demo-ad-content { position: relative; z-index: 2; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.demo-ad-icon { display: inline-block; animation: demoBounce 1s ease-in-out infinite; font-size: 1.15em; }
@keyframes demoBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.demo-ad-badge { display: inline-block; font-weight: 700; animation: demoPulse 1.3s ease-in-out infinite; }
@keyframes demoPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.demo-ad-cta {
    background: #fff; padding: 3px 14px; border-radius: 20px; font-weight: 700; font-size: 12px;
    display: inline-block; animation: demoPulse 1.5s ease-in-out infinite;
}

/* ---------- Share buttons ---------- */
.share-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.share-label { font-size: 13px; color: #666; font-weight: 600; margin-right: 4px; }
.share-btn {
    width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 14px; border: none; cursor: pointer; text-decoration: none;
    transition: transform .15s ease;
}
.share-btn:hover { transform: scale(1.08); }
.share-fb { background: #1877f2; }
.share-wa { background: #25d366; }
.share-tw { background: #000; }
.share-li { background: #0a66c2; }
.share-copy { background: #666; }
.share-photocard { background: var(--brand); width: auto; padding: 0 14px; border-radius: 20px; font-size: 13px; font-weight: 600; gap: 6px; }

/* ---------- Photo card studio modal ---------- */
.photocard-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 500; align-items: center; justify-content: center; padding: 16px; }
.photocard-modal.active { display: flex; }
.photocard-modal-inner { background: #fff; border-radius: 8px; padding: 20px; max-width: 460px; width: 100%; max-height: 92vh; overflow-y: auto; position: relative; text-align: center; }
.photocard-modal-inner h3 { font-size: 16px; margin-bottom: 14px; }
.photocard-close { position: absolute; top: 10px; right: 12px; background: none; border: none; font-size: 18px; cursor: pointer; color: #666; z-index: 2; }
.photocard-canvas-wrap { position: relative; background: #f4f4f4; border-radius: 6px; overflow: hidden; }
.photocard-canvas-wrap canvas { width: 100%; height: auto; display: block; }
.photocard-loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #666; font-size: 13px; background: rgba(255,255,255,.85); }
.photocard-actions { margin-top: 14px; display: flex; gap: 10px; justify-content: center; }
.btn-download-card { background: var(--brand); color: #fff; border: none; padding: 10px 22px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; }
.btn-pc-reset { background: #666; color: #fff; border: none; padding: 10px 18px; border-radius: 20px; font-size: 13px; cursor: pointer; }
.photocard-note { font-size: 12.5px; color: #b91c1c; margin-top: 10px; }

.photocard-studio { max-width: 900px; }
.photocard-studio-layout { display: grid; grid-template-columns: 1fr; gap: 20px; text-align: left; }
.pc-field { margin-bottom: 14px; }
.pc-field label { display: block; font-size: 12.5px; font-weight: 600; color: #444; margin-bottom: 6px; }
.pc-color-label { font-weight: 400; color: #999; margin-left: 6px; font-size: 11px; }
.pc-row { display: flex; gap: 8px; align-items: center; }
.pc-row input[type=text] { flex: 1; padding: 8px 10px; border: 1px solid var(--border); border-radius: 4px; font-family: inherit; font-size: 13px; }
.pc-row input[type=color] { width: 40px; height: 36px; border: 1px solid var(--border); border-radius: 4px; padding: 2px; cursor: pointer; }
.pc-row input[type=file] { flex: 1; font-size: 12px; }
.btn-pc-clear { background: #eee; border: 1px solid var(--border); border-radius: 4px; padding: 8px 12px; font-size: 12px; cursor: pointer; }
.pc-field input[type=range] { width: 100%; }
.pc-field select { width: 100%; padding: 8px; border: 1px solid var(--border); border-radius: 4px; font-family: inherit; font-size: 13px; }
.pc-row-between { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
.pc-row-between > div { flex: 1; }
.pc-toggle-wrap { text-align: center; }
.pc-switch { position: relative; display: inline-block; width: 42px; height: 22px; }
.pc-switch input { opacity: 0; width: 0; height: 0; }
.pc-slider { position: absolute; cursor: pointer; inset: 0; background: #ccc; border-radius: 22px; transition: .2s; }
.pc-slider::before { content: ''; position: absolute; height: 16px; width: 16px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: .2s; }
.pc-switch input:checked + .pc-slider { background: #2ecc71; }
.pc-switch input:checked + .pc-slider::before { transform: translateX(20px); }

@media (min-width: 720px) {
    .photocard-studio-layout { grid-template-columns: 1fr 1fr; }
}

.ad-slot { text-align: center; margin: 16px 0; overflow: hidden; }
.ad-slot::before {
    content: 'বিজ্ঞাপন';
    display: block; font-size: 10px; color: #aaa; letter-spacing: 1px;
    margin-bottom: 4px; text-transform: uppercase;
}
.ad-slot-header { background: #fafafa; border-bottom: 1px solid var(--border); padding: 10px 0; margin: 0; }
.ad-slot-sidebar { margin-bottom: 24px; }
.ad-slot-in-article { max-width: 800px; margin: 24px auto; }
.ad-slot-infeed { grid-column: 1 / -1; }
.ad-slot-footer { background: #222; padding: 16px 0; margin: 0; }
.ad-slot-footer::before { color: #666; }

.countdown-widget {
    background: linear-gradient(120deg, #7a0d1f, var(--brand) 70%);
    color: #fff; border-radius: 6px; padding: 14px 16px; margin-bottom: 20px;
    font-size: 13.5px; display: flex; align-items: center; gap: 10px;
}
.countdown-icon { font-size: 20px; }
.countdown-widget strong { font-size: 18px; }


.widget-box { background: #fff; }
.poll-question { font-size: 14px; font-weight: 600; margin-bottom: 12px; line-height: 1.5; }
.poll-option-label { display: flex; align-items: center; gap: 8px; font-size: 13.5px; padding: 7px 0; cursor: pointer; }
.poll-result-row { margin-bottom: 10px; }
.poll-result-label { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 4px; }
.poll-bar { background: #eee; border-radius: 3px; height: 8px; overflow: hidden; }
.poll-bar-fill { background: var(--brand); height: 100%; }
.poll-total { font-size: 12px; color: #888; margin-top: 8px; text-align: right; }
.fb-widget-wrap { overflow: hidden; border-radius: 4px; }

.calendar-widget { font-size: 12px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.calendar-header span { font-weight: 700; color: var(--brand); font-size: 11px; padding-bottom: 6px; }
.calendar-grid span { padding: 6px 0; color: #444; }
.calendar-grid span.today { background: var(--brand); color: #fff; border-radius: 50%; font-weight: 700; }


.sticky-bottom-ad {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: #fff; border-top: 1px solid var(--border);
    box-shadow: 0 -2px 10px rgba(0,0,0,.1);
    padding: 8px 40px 8px 8px; text-align: center;
}
.sticky-bottom-ad-close {
    position: absolute; top: 4px; right: 6px;
    background: #333; color: #fff; border: none; border-radius: 50%;
    width: 22px; height: 22px; font-size: 12px; line-height: 1; cursor: pointer;
}
.sticky-bottom-ad-inner { max-width: 100%; overflow: hidden; }


.badge-live { background: #fff; color: var(--brand); font-size: 10px; padding: 1px 6px; border-radius: 2px; margin-right: 6px; font-weight: 700; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .layout-with-sidebar { grid-template-columns: 1fr; }
    .hero-grid { grid-template-columns: 1fr; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .mixed-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .site-logo-img { height: 44px; }
    .nav-utils span.nav-text { display: none; }
    .hamburger-btn { display: flex; }
    .nav-utils .nav-search-link, .nav-utils .nav-lang-link { display: none; }
}
@media (max-width: 560px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .hero-main img { height: 260px; }
    .article-header h1 { font-size: 22px; }
    .topbar .container { font-size: 11px; }
    .topbar-promos { display: none; }
    .topbar .container { justify-content: flex-end; }
    .spotlight-zone { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .main-content { padding: 12px 0 30px; }
    .ad-slot { margin: 10px 0; }
    .ad-slot-header { padding: 8px 0; }
}
