/* ═══════ NEWS LISTING & ARTICLE PAGES ═══════ */
/* Appended to ufc-template/assets/css/news.css */

/* ── NEWS HERO ── */
.nws-hero{
  position:relative;overflow:hidden;padding:44px 0 0;
  background:#050505;border-bottom:2px solid var(--red);
}
.nws-hero__bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%,rgba(212,32,32,.06),transparent 65%),
    radial-gradient(ellipse 80% 80% at 50% 50%,transparent 40%,rgba(0,0,0,.5) 100%),
    linear-gradient(180deg,#080404 0%,#0a0505 40%,#060303 100%);
}
.nws-hero__wrap{position:relative;z-index:1}
.nws-hero__header{text-align:center;margin-bottom:32px}
.nws-hero__title{
  font-family:var(--font-head);font-size:42px;font-weight:700;
  text-transform:uppercase;letter-spacing:3px;color:#fff;
  display:inline-flex;align-items:center;gap:12px;line-height:1;
}
.nws-hero__title svg{color:var(--red)}
.nws-hero__desc{font-size:14px;color:rgba(255,255,255,.4);max-width:520px;margin:14px auto 0;line-height:1.7}

.nws-hero__grid{
  display:grid;grid-template-columns:1.5fr 1fr;grid-template-rows:1fr 1fr;gap:8px;
  min-height:380px;
}
.nws-hero__card{
  position:relative;overflow:hidden;border-radius:var(--radius);
  display:flex;flex-direction:column;
  border:1px solid rgba(255,255,255,.06);
  transition:all .4s var(--ease);
}
.nws-hero__card--main{grid-row:1/-1}
.nws-hero__card-img{position:absolute;inset:0}
.nws-hero__card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.nws-hero__card:hover .nws-hero__card-img img{transform:scale(1.04)}
.nws-hero__ph{
  position:absolute;inset:0;
  background:linear-gradient(160deg,#0a0a0a,#111,#090909);
}
.nws-hero__ph::before{
  content:'';position:absolute;inset:0;
  background:
    repeating-linear-gradient(45deg,transparent,transparent 40px,rgba(255,255,255,.006) 40px,rgba(255,255,255,.006) 80px),
    radial-gradient(ellipse 50% 50% at 50% 60%,rgba(212,32,32,.05),transparent 60%);
}
.nws-hero__card-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.92) 0%,rgba(0,0,0,.3) 50%,rgba(0,0,0,.08) 100%);
  transition:background .4s;
}
.nws-hero__card:hover .nws-hero__card-overlay{
  background:linear-gradient(to top,rgba(0,0,0,.95) 0%,rgba(0,0,0,.35) 50%,rgba(0,0,0,.1) 100%);
}
.nws-hero__card-body{
  position:relative;z-index:2;margin-top:auto;padding:24px 22px;
  display:flex;flex-direction:column;align-items:flex-start;
}
.nws-hero__card--main .nws-hero__card-body{padding:36px 32px}
.nws-hero__card-title{
  font-family:var(--font-head);font-size:13px;font-weight:700;
  text-transform:uppercase;line-height:1.25;color:#fff;
  margin-top:6px;transition:color .3s;letter-spacing:.3px;
}
.nws-hero__card--main .nws-hero__card-title{font-size:24px;letter-spacing:.5px;line-height:1.15}
.nws-hero__card:hover .nws-hero__card-title{color:var(--red-h)}
.nws-hero__card-excerpt{
  font-size:13px;color:rgba(255,255,255,.42);line-height:1.65;margin-top:8px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.nws-hero__card-meta{
  display:flex;gap:8px;font-size:11px;color:rgba(255,255,255,.3);margin-top:10px;
  align-items:center;
}
.nws-hero__card-author{color:rgba(255,255,255,.5);font-weight:600}

.nws-hero__card:hover{
  border-color:rgba(212,32,32,.25);
  box-shadow:0 12px 40px rgba(0,0,0,.5),0 0 24px rgba(212,32,32,.06);
}

/* ── TABS ── */
.nws-tabs{
  background:var(--panel);border-bottom:1px solid var(--border);
  position:sticky;top:62px;z-index:100;
}
.nws-tabs__inner{
  display:flex;gap:0;overflow-x:auto;-webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.nws-tabs__inner::-webkit-scrollbar{display:none}
.nws-tabs__item{
  font-family:var(--font-head);font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:2px;
  padding:14px 20px;white-space:nowrap;
  color:var(--dim);border-bottom:2px solid transparent;
  transition:all .25s var(--ease);flex-shrink:0;
}
.nws-tabs__item:hover{color:var(--white)}
.nws-tabs__item.active{color:var(--red);border-bottom-color:var(--red)}

/* ── FILTERS ── */
.nws-filters{
  background:var(--surface);border-bottom:1px solid var(--border);
  padding:10px 0;
}
.nws-filters__inner{display:flex;justify-content:space-between;align-items:center;gap:12px}
.nws-filters__left{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.nws-filters__right{display:flex;gap:8px;align-items:center}
.nws-filter__select{
  font-family:var(--font-body);font-size:12px;font-weight:600;
  background:var(--panel);border:1px solid var(--border);
  color:var(--white);padding:8px 28px 8px 12px;border-radius:4px;
  cursor:pointer;outline:none;
  appearance:none;-webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23888' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 10px center;
  transition:all .2s;
}
.nws-filter__select:hover{border-color:rgba(212,32,32,.3)}
.nws-filter__select:focus{border-color:var(--red);box-shadow:0 0 0 2px rgba(212,32,32,.1)}

.nws-filters__reset{
  font-family:var(--font-head);font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:1.5px;
  color:var(--red);background:none;border:none;cursor:pointer;
  display:inline-flex;align-items:center;gap:4px;padding:6px 10px;
  transition:opacity .2s;
}
.nws-filters__reset:hover{opacity:.7}

.nws-view-toggle{display:flex;border:1px solid var(--border);border-radius:4px;overflow:hidden}
.nws-view-btn{
  width:34px;height:34px;display:flex;align-items:center;justify-content:center;
  background:var(--panel);border:none;color:var(--dim);cursor:pointer;
  transition:all .2s;
}
.nws-view-btn:first-child{border-right:1px solid var(--border)}
.nws-view-btn.active{background:rgba(212,32,32,.1);color:var(--red)}
.nws-view-btn:hover:not(.active){color:var(--white)}

/* ── MAIN LAYOUT ── */
.nws-main{padding:32px 0 48px}
.nws-main__layout{display:grid;grid-template-columns:1fr 320px;gap:28px}

/* ── FEED GRID ── */
.nws-feed__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.nws-feed__grid.list-view{grid-template-columns:1fr}

/* ── NEWS CARD ── */
.nws-card{
  background:var(--panel);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;
  transition:all .4s var(--ease);position:relative;
}
.nws-card::before{
  content:'';position:absolute;bottom:0;left:0;right:0;height:0;
  background:linear-gradient(to top,rgba(212,32,32,.06),transparent);
  transition:height .4s var(--ease);z-index:1;pointer-events:none;border-radius:var(--radius);
}
.nws-card:hover{
  border-color:rgba(212,32,32,.25);transform:translateY(-3px);
  box-shadow:0 10px 36px rgba(0,0,0,.35),0 0 20px rgba(212,32,32,.05);
}
.nws-card:hover::before{height:100%}
.nws-card__img{height:150px;position:relative;background:var(--surface);overflow:hidden}
.nws-card__thumb{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s var(--ease)}
.nws-card:hover .nws-card__thumb{transform:scale(1.05)}
.nws-card__ph{
  position:absolute;inset:0;
  background:linear-gradient(145deg,#080808,#0f0f0f,#0c0c0c,#090909);
}
.nws-card__ph-inner{
  position:absolute;inset:0;
  background:
    repeating-linear-gradient(45deg,transparent,transparent 30px,rgba(255,255,255,.008) 30px,rgba(255,255,255,.008) 60px),
    radial-gradient(circle at 30% 70%,rgba(212,32,32,.035),transparent 50%);
}
.nws-card__body{padding:16px 18px;display:flex;flex-direction:column;align-items:flex-start;flex:1;position:relative;z-index:2}
.nws-card__title{
  font-family:var(--font-head);font-size:13px;font-weight:700;
  text-transform:uppercase;line-height:1.3;margin-top:4px;
  transition:color .3s;letter-spacing:.3px;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
.nws-card:hover .nws-card__title{color:var(--red)}
.nws-card__excerpt{font-size:12px;color:var(--dim);line-height:1.6;margin-top:6px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.nws-card__meta{
  display:flex;gap:10px;font-size:10px;color:var(--dim);
  margin-top:auto;padding-top:10px;letter-spacing:.3px;
}
.nws-card__author{font-weight:600;color:rgba(255,255,255,.45)}
.nws-card__views{color:rgba(212,32,32,.45);font-weight:600}

/* List view card */
.list-view .nws-card{flex-direction:row}
.list-view .nws-card__img{width:200px;height:auto;min-height:120px;flex-shrink:0}
.list-view .nws-card__body{padding:18px 22px}
.list-view .nws-card__title{font-size:14px;-webkit-line-clamp:2}
.list-view .nws-card__excerpt{-webkit-line-clamp:2}

/* ── SIDEBAR WIDGETS ── */
.nws-sidebar{display:flex;flex-direction:column;gap:16px}
.nws-widget{
  background:var(--panel);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
}
.nws-widget__head{
  display:flex;align-items:center;gap:10px;
  padding:14px 18px;
  background:linear-gradient(135deg,rgba(212,32,32,.06),rgba(212,32,32,.02));
  border-bottom:1px solid rgba(212,32,32,.1);
}
.nws-widget__dot{
  width:7px;height:7px;border-radius:50%;background:var(--red);
  animation:pulse-dot 2s ease infinite;box-shadow:0 0 8px rgba(212,32,32,.4);
}
.nws-widget__label{
  font-family:var(--font-head);font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:3px;color:var(--red);
}
.nws-widget__head svg{color:var(--red);flex-shrink:0}
.nws-widget__row{
  display:flex;gap:12px;align-items:flex-start;
  padding:12px 18px;border-bottom:1px solid var(--border);
  transition:all .3s var(--ease);position:relative;
}
.nws-widget__row::before{
  content:'';position:absolute;left:0;top:0;bottom:0;width:0;
  background:var(--red);transition:width .3s var(--ease);
}
.nws-widget__row:last-child{border-bottom:none}
.nws-widget__row:hover{background:rgba(212,32,32,.03)}
.nws-widget__row:hover::before{width:2px}
.nws-widget__num{
  font-family:var(--font-head);font-size:22px;font-weight:700;
  color:var(--red);opacity:.15;line-height:1;min-width:22px;
  transition:all .35s var(--ease);
}
.nws-widget__row:hover .nws-widget__num{opacity:.5;transform:scale(1.1)}
.nws-widget__row-body{display:flex;flex-direction:column;gap:3px;min-width:0;flex:1}
.nws-widget__row-title{
  font-family:var(--font-head);font-size:11px;font-weight:700;
  text-transform:uppercase;line-height:1.35;letter-spacing:.3px;
  transition:color .25s;
}
.nws-widget__row:hover .nws-widget__row-title{color:var(--red)}
.nws-widget__row-time{font-size:10px;color:var(--dim)}

/* Events widget */
.nws-widget__event{
  display:flex;gap:14px;padding:12px 18px;
  border-bottom:1px solid var(--border);transition:all .3s var(--ease);
}
.nws-widget__event:last-child{border-bottom:none}
.nws-widget__event:hover{background:rgba(212,32,32,.03)}
.nws-widget__event-date{
  font-family:var(--font-head);font-size:12px;font-weight:700;
  color:var(--red);white-space:nowrap;min-width:44px;
}
.nws-widget__event-name{
  font-family:var(--font-head);font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:.3px;display:block;
  transition:color .25s;
}
.nws-widget__event:hover .nws-widget__event-name{color:var(--red)}
.nws-widget__event-venue{font-size:10px;color:var(--dim);display:block;margin-top:2px}

/* CTA widget */
.nws-widget--cta{border-color:rgba(212,32,32,.15)}
.nws-widget__cta-inner{
  padding:22px 18px;position:relative;
  background:linear-gradient(135deg,rgba(212,32,32,.06),transparent 60%);
}
.nws-widget__cta-tag{
  font-family:var(--font-head);font-size:8px;font-weight:700;
  text-transform:uppercase;letter-spacing:4px;color:var(--red);display:block;margin-bottom:6px;
}
.nws-widget__cta-title{
  font-family:var(--font-head);font-size:16px;font-weight:700;
  text-transform:uppercase;letter-spacing:1px;color:var(--white);margin-bottom:6px;
}
.nws-widget__cta-desc{font-size:12px;color:var(--dim);line-height:1.6;margin-bottom:14px}
.nws-widget__cta-form{display:flex;flex-direction:column;gap:8px}
.nws-widget__cta-input{
  width:100%;padding:10px 14px;background:var(--surface);
  border:1px solid var(--border);border-radius:4px;
  color:var(--white);font-size:13px;font-family:var(--font-body);outline:none;
  transition:border-color .2s,box-shadow .2s;
}
.nws-widget__cta-input:focus{border-color:rgba(212,32,32,.4);box-shadow:0 0 0 2px rgba(212,32,32,.08)}
.nws-widget__cta-input::placeholder{color:var(--dim)}
.nws-widget__cta-btn{
  width:100%;padding:10px 16px;background:var(--red);color:#fff;border:none;
  border-radius:4px;font-family:var(--font-head);font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:2px;cursor:pointer;
  transition:all .3s var(--ease);
}
.nws-widget__cta-btn:hover{background:var(--red-h);transform:translateY(-1px);box-shadow:0 4px 16px rgba(212,32,32,.25)}

/* ── PAGINATION ── */
.nws-pagination{margin-top:32px;display:flex;justify-content:center;gap:4px}
.nws-pagination .nav-links{display:flex;gap:4px;align-items:center}
.nws-pagination .page-numbers,
.nws-pag__item{
  font-family:var(--font-head);font-size:12px;font-weight:700;
  min-width:38px;height:38px;display:inline-flex;align-items:center;justify-content:center;
  border-radius:4px;border:1px solid var(--border);background:var(--panel);
  color:var(--dim);cursor:pointer;transition:all .25s var(--ease);
}
.nws-pagination .page-numbers:hover,
.nws-pag__item:hover{border-color:rgba(212,32,32,.3);color:var(--white)}
.nws-pagination .page-numbers.current,
.nws-pag__item.active{background:var(--red);border-color:var(--red);color:#fff}
.nws-pagination .page-numbers.prev,
.nws-pagination .page-numbers.next,
.nws-pag__next{
  padding:0 16px;gap:6px;display:inline-flex;align-items:center;
  letter-spacing:1.5px;text-transform:uppercase;
}
.nws-pag__dots{border:none;background:none;cursor:default}

/* ── SEO BLOCK ── */
.nws-seo{padding:32px 0 48px;border-top:1px solid var(--border)}
.nws-seo__inner{max-width:720px}
.nws-seo__title{
  font-family:var(--font-head);font-size:16px;font-weight:700;
  text-transform:uppercase;letter-spacing:1px;color:var(--white);margin-bottom:10px;
}
.nws-seo__text p{font-size:13px;color:var(--dim);line-height:1.75}
.nws-seo__links{display:flex;gap:8px;flex-wrap:wrap;margin-top:16px}
.nws-seo__links a{
  font-family:var(--font-head);font-size:9px;font-weight:700;
  text-transform:uppercase;letter-spacing:1.5px;
  padding:6px 14px;border-radius:4px;
  border:1px solid var(--border);color:var(--dim);
  transition:all .25s;
}
.nws-seo__links a:hover{border-color:rgba(212,32,32,.3);color:var(--red)}


/* ═══════ ARTICLE PAGE ═══════ */

/* Reading progress */
.article__progress{
  position:fixed;top:0;left:0;right:0;height:3px;z-index:1001;
  background:transparent;
}
.article__progress-bar{
  height:100%;width:0;background:var(--red);
  box-shadow:0 0 8px rgba(212,32,32,.4);transition:width .1s linear;
}

/* ── Unified article top area ── */
.article__top{
  background:#050505;border-bottom:2px solid var(--red);
  position:relative;overflow:hidden;
  padding:32px 0 40px;
}
.article__top::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%,rgba(212,32,32,.04),transparent 60%),
    linear-gradient(180deg,#060404,#0a0606);
  pointer-events:none;
}

/* ── Main 2-column grid — starts from very top ── */
.article__grid{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 360px;gap:40px;
  align-items:start;
}
.article__main-col{min-width:0}

/* Breadcrumbs */
.article__crumbs{
  display:flex;align-items:center;gap:8px;margin-bottom:18px;
  font-size:11px;color:var(--dim);
}
.article__crumbs a{color:var(--dim);transition:color .2s}
.article__crumbs a:hover{color:var(--red)}
.article__crumbs svg{color:var(--muted);flex-shrink:0}

.article__badges{display:flex;gap:8px;margin-bottom:12px}
.article__badge--breaking{background:#ff3030;animation:pulse-dot 2s ease infinite}

.article__title{
  font-family:var(--font-head);font-size:34px;font-weight:700;
  text-transform:uppercase;line-height:1.1;letter-spacing:.5px;
  color:#fff;margin-bottom:12px;
}
.article__lead{
  font-size:15px;color:rgba(255,255,255,.5);line-height:1.7;
  margin-bottom:18px;
}

/* Meta */
.article__meta{
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:14px 0;margin-bottom:20px;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.article__meta-left{display:flex;align-items:center;gap:12px}
.article__author-block{display:flex;align-items:center;gap:10px}
.article__avatar{width:36px;height:36px;border-radius:50%;border:2px solid rgba(212,32,32,.2)}
.article__author-name{
  font-family:var(--font-head);font-size:12px;font-weight:700;
  color:rgba(255,255,255,.7);display:block;letter-spacing:.3px;
}
.article__date-row{display:flex;gap:10px;font-size:11px;color:var(--dim);margin-top:2px}
.article__updated{color:rgba(212,32,32,.5);font-weight:600}
.article__read-time{color:var(--dim)}

/* Share */
.article__share{display:flex;gap:6px}
.article__share-btn{
  width:34px;height:34px;border-radius:6px;
  border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.4);display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:all .25s var(--ease);font-size:0;
}
.article__share-btn:hover{
  border-color:rgba(212,32,32,.3);color:var(--red);
  background:rgba(212,32,32,.08);transform:translateY(-1px);
}
.article__share-copy.copied{border-color:var(--red);color:var(--red);background:rgba(212,32,32,.12)}

/* Share toast */
.share-toast{
  position:fixed;bottom:32px;left:50%;transform:translateX(-50%) translateY(20px);
  background:rgba(20,20,20,.95);border:1px solid rgba(212,32,32,.25);
  color:#fff;font-family:var(--font-head);font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:1.5px;
  padding:12px 24px;border-radius:8px;
  display:flex;align-items:center;gap:8px;
  opacity:0;pointer-events:none;z-index:9999;
  transition:all .35s var(--ease);
  box-shadow:0 8px 32px rgba(0,0,0,.5),0 0 16px rgba(212,32,32,.1);
}
.share-toast svg{color:var(--red)}
.share-toast.visible{opacity:1;transform:translateX(-50%) translateY(0);pointer-events:auto}

/* Hero image inside main column */
.article__figure{
  border-radius:var(--radius);overflow:hidden;margin-bottom:28px;
}
.article__img{width:100%;height:auto;display:block;aspect-ratio:16/9;object-fit:cover}
.article__caption{
  font-size:11px;color:var(--dim);padding:10px 0;
  border-bottom:1px solid var(--border);font-style:italic;
}

/* Sidebar */
.article__sidebar{
  position:sticky;top:80px;display:flex;flex-direction:column;gap:14px;align-self:start;
  padding-top:6px;
}
.article__sidebar-label{
  font-family:var(--font-head);font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:3px;color:var(--red);
  display:flex;align-items:center;gap:8px;margin-bottom:4px;
}
.article__sidebar-dot{
  width:7px;height:7px;border-radius:50%;background:var(--red);
  box-shadow:0 0 8px rgba(212,32,32,.4);
  animation:pulse-dot 2s ease infinite;
}

/* ── Aside cards — vertical premium ── */
.aside-card{
  display:flex;flex-direction:column;
  background:var(--panel);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
  transition:all .35s var(--ease);position:relative;
}
.aside-card::before{
  content:'';position:absolute;bottom:0;left:0;right:0;height:0;
  background:linear-gradient(to top,rgba(212,32,32,.05),transparent);
  transition:height .35s var(--ease);z-index:1;pointer-events:none;
  border-radius:var(--radius);
}
.aside-card:hover{
  border-color:rgba(212,32,32,.2);transform:translateY(-3px);
  box-shadow:0 10px 32px rgba(0,0,0,.35),0 0 18px rgba(212,32,32,.05);
}
.aside-card:hover::before{height:100%}

.aside-card__img{
  height:160px;position:relative;
  background:var(--surface);overflow:hidden;
}
.aside-card__thumb{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .45s var(--ease);
}
.aside-card:hover .aside-card__thumb{transform:scale(1.05)}
.aside-card__ph{position:absolute;inset:0;background:linear-gradient(145deg,#080808,#111,#0c0c0c)}
.aside-card__ph-inner{
  position:absolute;inset:0;
  background:
    repeating-linear-gradient(45deg,transparent,transparent 25px,rgba(255,255,255,.008) 25px,rgba(255,255,255,.008) 50px),
    radial-gradient(circle at 40% 60%,rgba(212,32,32,.04),transparent 50%);
}

.aside-card__body{
  padding:14px 16px;display:flex;flex-direction:column;
  align-items:flex-start;flex:1;min-width:0;
  position:relative;z-index:2;
}
.aside-card__title{
  font-family:var(--font-head);font-size:13px;font-weight:700;
  text-transform:uppercase;line-height:1.3;letter-spacing:.3px;
  margin-top:5px;transition:color .3s;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.aside-card:hover .aside-card__title{color:var(--red)}
.aside-card__meta{
  display:flex;gap:10px;font-size:10px;color:var(--dim);
  margin-top:auto;padding-top:8px;letter-spacing:.3px;
}

/* Summary box */
.article__summary{
  background:rgba(212,32,32,.04);border:1px solid rgba(212,32,32,.12);
  border-radius:var(--radius);padding:20px 22px;margin-bottom:32px;
  border-left:3px solid var(--red);
}
.article__summary-head{
  font-family:var(--font-head);font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:2px;color:var(--red);
  display:flex;align-items:center;gap:8px;margin-bottom:10px;
}
.article__summary-head svg{color:var(--red)}
.article__summary-body{font-size:14px;color:rgba(255,255,255,.65);line-height:1.75}
.article__summary-body p{margin:0}

/* ── Article body — editorial typography ── */
.article__body{
  font-size:17px;line-height:1.9;color:rgba(255,255,255,.75);
}
.article__body > *:first-child{margin-top:0}

/* Headings */
.article__body h2{
  font-family:var(--font-head);font-size:24px;font-weight:700;
  text-transform:uppercase;letter-spacing:.5px;color:var(--white);
  margin:44px 0 16px;line-height:1.2;
  padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.06);
}
.article__body h3{
  font-family:var(--font-head);font-size:18px;font-weight:700;
  text-transform:uppercase;color:var(--white);
  margin:32px 0 12px;line-height:1.25;
}
.article__body h4{
  font-family:var(--font-head);font-size:15px;font-weight:700;
  text-transform:uppercase;color:rgba(255,255,255,.85);
  margin:24px 0 10px;letter-spacing:.5px;
}

/* Paragraphs */
.article__body p{margin-bottom:20px}
.article__body p + p{margin-top:0}

/* Links */
.article__body a{color:var(--red);text-decoration:underline;text-underline-offset:3px;transition:color .2s}
.article__body a:hover{color:var(--red-h)}

/* Strong & Em */
.article__body strong{color:rgba(255,255,255,.9);font-weight:700}
.article__body em{color:rgba(255,255,255,.7)}

/* ── Lists — premium custom markers ── */
.article__body ul{
  list-style:none;margin:0 0 28px 0;padding:18px 22px;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.05);
  border-left:3px solid rgba(212,32,32,.3);
  border-radius:0 var(--radius) var(--radius) 0;
}
.article__body ul li{
  position:relative;padding-left:20px;margin-bottom:10px;
  color:rgba(255,255,255,.72);line-height:1.8;font-size:15px;
}
.article__body ul li:last-child{margin-bottom:0}
.article__body ul li::before{
  content:'';position:absolute;left:0;top:12px;
  width:6px;height:6px;border-radius:50%;
  background:var(--red);opacity:.6;
}
.article__body ul ul{
  margin:10px 0 6px 0;background:transparent;border:none;padding:0 0 0 12px;
  border-left:2px solid rgba(212,32,32,.1);
}
.article__body ul ul li::before{
  background:rgba(212,32,32,.3);width:4px;height:4px;top:13px;
}

.article__body ol{
  list-style:none;margin:0 0 28px 0;padding:0;counter-reset:ol-counter;
}
.article__body ol li{
  position:relative;padding-left:40px;margin-bottom:0;
  color:rgba(255,255,255,.72);line-height:1.8;font-size:15px;
  counter-increment:ol-counter;
  padding-top:14px;padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.04);
}
.article__body ol li:first-child{padding-top:0}
.article__body ol li:last-child{border-bottom:none;padding-bottom:0}
.article__body ol li::before{
  content:counter(ol-counter, decimal-leading-zero);
  position:absolute;left:0;top:14px;
  font-family:var(--font-head);font-size:16px;font-weight:700;
  color:var(--red);opacity:.35;min-width:28px;
  letter-spacing:-.5px;
}
.article__body ol li:first-child::before{top:0}

/* ── Blockquote ── */
.article__body blockquote{
  margin:32px 0;padding:28px 32px 28px 36px;
  background:linear-gradient(135deg,rgba(212,32,32,.05),rgba(212,32,32,.02));
  border-left:3px solid var(--red);
  border-radius:0 var(--radius) var(--radius) 0;
  font-size:18px;font-style:italic;color:rgba(255,255,255,.6);
  line-height:1.7;position:relative;
  box-shadow:inset 0 0 40px rgba(212,32,32,.02);
}
.article__body blockquote::before{
  content:'\201C';position:absolute;top:12px;left:14px;
  font-family:var(--font-head);font-size:52px;font-weight:700;
  color:var(--red);opacity:.12;line-height:1;
}
.article__body blockquote p{margin-bottom:8px}
.article__body blockquote p:last-child{margin-bottom:0}
.article__body blockquote cite{
  display:block;font-style:normal;font-size:12px;color:var(--red);
  margin-top:12px;font-weight:600;
}

/* ── Tables — premium editorial ── */
.article__body .table-wrap,
.article__body .wp-block-table{
  overflow-x:auto;-webkit-overflow-scrolling:touch;
  margin:32px 0;border-radius:var(--radius);
}
.article__body .table-wrap table,
.article__body .wp-block-table table{margin:0;box-shadow:none;border-radius:0}

.article__body table{
  width:100%;border-collapse:separate;border-spacing:0;
  margin:32px 0;font-size:14px;
  background:#0a0a0a;
  border:1px solid rgba(212,32,32,.18);
  border-radius:var(--radius);overflow:hidden;
  box-shadow:0 4px 24px rgba(0,0,0,.5);
}
.article__body thead{
  background:var(--red);
}
.article__body thead th{
  font-family:var(--font-head);font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:2.5px;color:#fff;
  padding:14px 18px;text-align:left;
  border-bottom:2px solid rgba(0,0,0,.2);
}
.article__body thead th:not(:last-child){
  border-right:1px solid rgba(255,255,255,.15);
}
.article__body tbody td{
  padding:13px 18px;color:rgba(255,255,255,.7);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:background .2s,color .2s;font-size:14px;
}
.article__body tbody td:not(:last-child){
  border-right:1px solid rgba(255,255,255,.04);
}
.article__body tbody tr:last-child td{border-bottom:none}
.article__body tbody tr:nth-child(even) td{background:rgba(255,255,255,.025)}
.article__body tbody tr:hover td{
  background:rgba(212,32,32,.08);color:#fff;
}
.article__body tbody td:first-child{
  font-weight:600;color:#fff;
}

/* ── Figures & images ── */
.article__body figure{margin:32px 0}
.article__body figure img{border-radius:var(--radius)}
.article__body figcaption{
  font-size:12px;color:var(--dim);margin-top:8px;
  font-style:italic;padding-bottom:4px;
  border-bottom:1px solid rgba(255,255,255,.04);
}
.article__body img{
  max-width:100%;height:auto;display:block;
  border-radius:var(--radius);margin:28px 0;
}
.article__body img + p{margin-top:24px}

/* Embed responsive */
.article__body iframe,
.article__body .wp-block-embed{max-width:100%;border-radius:var(--radius)}

/* Tags */
.article__tags{
  display:flex;flex-wrap:wrap;gap:6px;align-items:center;
  padding-top:24px;margin-top:32px;border-top:1px solid var(--border);
}
.article__tags-label{
  font-family:var(--font-head);font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:2px;color:var(--dim);margin-right:4px;
}
.article__tag{
  font-family:var(--font-head);font-size:9px;font-weight:700;
  text-transform:uppercase;letter-spacing:1.5px;
  padding:5px 12px;border-radius:4px;
  border:1px solid var(--border);color:var(--dim);transition:all .25s;
}
.article__tag:hover{border-color:rgba(212,32,32,.3);color:var(--red)}

/* Share bottom */
.article__share-bottom{
  display:flex;align-items:center;gap:14px;margin-top:24px;
  padding:18px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);
}
.article__share-bottom-label{
  font-family:var(--font-head);font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:2px;color:var(--dim);
}

/* Try our games */
.article-games{
  margin-top:36px;
  padding:24px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--panel);
}
.article-games__head{margin-bottom:16px}
.article-games__title{
  font-family:var(--font-head);
  font-size:20px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--white);
}
.article-games__grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.article-games__card{
  border:1px solid var(--border);
  border-radius:10px;
  background:var(--surface);
  min-height:170px;
  padding:18px 14px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.article-games__card-title{
  font-family:var(--font-head);
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--white);
  margin-bottom:6px;
}
.article-games__card-desc{
  font-size:12px;
  color:var(--dim);
  margin-bottom:14px;
}
.article-games__play-btn{
  min-width:124px;
  padding:11px 20px;
  border:none;
  border-radius:6px;
  background:var(--red);
  color:#fff;
  font-family:var(--font-head);
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:2px;
  cursor:pointer;
  transition:all .25s var(--ease);
}
.article-games__play-btn:hover{
  background:var(--red-h);
  transform:translateY(-1px);
}

.article-games-modal{
  position:fixed;
  inset:0;
  z-index:1100;
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.article-games-modal.is-open{display:block}
.article-games-modal.is-open{
  display:flex;
}
.article-games-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
}
.article-games-modal__dialog{
  position:relative;
  z-index:1;
  width:min(96vw,980px);
  background:var(--panel);
  border:1px solid rgba(212,32,32,.25);
  border-radius:12px;
  padding:14px;
  max-height:calc(100vh - 32px);
}
.article-games-modal__close{
  position:absolute;
  top:8px;
  right:10px;
  width:34px;
  height:34px;
  border:none;
  border-radius:6px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
.article-games-modal__title{
  font-family:var(--font-head);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin:0 36px 10px 2px;
  color:var(--white);
}
.article-games-modal__frame-wrap{
  width:100%;
  aspect-ratio:16/9;
  border-radius:10px;
  overflow:hidden;
  background:#090909;
}
.article-games-modal__frame-wrap iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* ═══ CONTINUE READING BLOCK ═══ */
.cont-read{margin-top:40px;padding-top:36px;border-top:1px solid var(--border)}
.cont-read__head{display:flex;align-items:center;gap:12px;margin-bottom:24px;flex-wrap:wrap}
.cont-read__icon{
  width:36px;height:36px;display:flex;align-items:center;justify-content:center;
  background:rgba(212,32,32,.08);border:1px solid rgba(212,32,32,.15);border-radius:8px;
  color:var(--red);flex-shrink:0;
}
.cont-read__title{
  font-family:var(--font-head);font-size:18px;font-weight:700;
  text-transform:uppercase;letter-spacing:1.5px;color:var(--white);line-height:1;
}
.cont-read__sub{
  font-size:12px;color:var(--dim);margin-left:auto;
  font-family:var(--font-body);
}
.cont-read__grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.cont-read__card{
  display:flex;flex-direction:column;overflow:hidden;
  background:var(--panel);border:1px solid var(--border);border-radius:var(--radius);
  transition:all .35s var(--ease);
}
.cont-read__card:hover{
  border-color:rgba(212,32,32,.25);
  box-shadow:0 12px 36px rgba(0,0,0,.3),0 0 20px rgba(212,32,32,.05);
  transform:translateY(-3px);
}
.cont-read__card-img{
  position:relative;height:180px;overflow:hidden;flex-shrink:0;
}
.cont-read__thumb{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.cont-read__card:hover .cont-read__thumb{transform:scale(1.04)}
.cont-read__ph{
  position:absolute;inset:0;
  background:linear-gradient(145deg,#0c0c0c,#161616,#0e0e0e);
}
.cont-read__ph-inner{
  position:absolute;inset:0;
  background:
    repeating-linear-gradient(45deg,transparent,transparent 40px,rgba(255,255,255,.006) 40px,rgba(255,255,255,.006) 80px),
    radial-gradient(ellipse 50% 50% at 50% 60%,rgba(212,32,32,.04),transparent 60%);
}
.cont-read__card-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.5) 0%,transparent 60%);
}
.cont-read__card-body{
  padding:18px 20px 20px;display:flex;flex-direction:column;gap:8px;flex:1;
}
.cont-read__card-title{
  font-family:var(--font-head);font-size:15px;font-weight:700;
  text-transform:uppercase;letter-spacing:.3px;line-height:1.25;
  color:var(--white);transition:color .25s;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.cont-read__card:hover .cont-read__card-title{color:var(--red)}
.cont-read__card-excerpt{
  font-size:13px;color:var(--dim);line-height:1.6;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.cont-read__card-meta{
  display:flex;gap:8px;font-size:11px;color:var(--dim);align-items:center;margin-top:auto;
}
.cont-read__card-author{color:var(--gray);font-weight:600}

/* ═══ PREMIUM DISCUSSION MODULE ═══ */
.discuss{
  margin-top:48px;padding:32px 28px;
  background:var(--panel);border:1px solid var(--border);border-radius:10px;
  position:relative;overflow:hidden;
}
.discuss::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--red),rgba(212,32,32,.3),transparent);
}

/* Header */
.discuss__header{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:24px;padding-bottom:20px;border-bottom:1px solid var(--border);
}
.discuss__header-left{display:flex;align-items:center;gap:14px}
.discuss__icon{
  width:44px;height:44px;display:flex;align-items:center;justify-content:center;
  background:rgba(212,32,32,.08);border:1px solid rgba(212,32,32,.15);border-radius:10px;
  color:var(--red);flex-shrink:0;
}
.discuss__title{
  font-family:var(--font-head);font-size:20px;font-weight:700;
  text-transform:uppercase;letter-spacing:1.5px;color:var(--white);line-height:1;
}
.discuss__subtitle{font-size:12px;color:var(--dim);margin-top:4px;line-height:1.4}
.discuss__count{
  display:flex;align-items:center;gap:8px;
  padding:8px 16px;background:var(--surface);border:1px solid var(--border);border-radius:8px;
}
.discuss__count-num{
  font-family:var(--font-head);font-size:20px;font-weight:700;color:var(--red);line-height:1;
}
.discuss__count-label{font-size:11px;color:var(--dim);text-transform:uppercase;letter-spacing:1px}

/* Reactions */
.discuss__reactions{
  display:flex;gap:8px;flex-wrap:wrap;margin-bottom:24px;
}
.discuss__reaction{
  display:flex;align-items:center;gap:6px;
  padding:8px 14px;background:var(--surface);border:1px solid var(--border);
  border-radius:20px;cursor:pointer;transition:all .25s var(--ease);
  font-family:var(--font-body);
}
.discuss__reaction:hover{
  border-color:rgba(212,32,32,.3);background:rgba(212,32,32,.06);
  transform:translateY(-1px);
}
.discuss__reaction.active{
  border-color:rgba(212,32,32,.4);background:rgba(212,32,32,.1);
}
.discuss__reaction-emoji{font-size:16px;line-height:1}
.discuss__reaction-label{font-size:11px;color:var(--gray);font-weight:500}
.discuss__reaction-count{
  font-family:var(--font-head);font-size:11px;font-weight:700;color:var(--dim);
  min-width:14px;text-align:center;
}

/* Composer */
.discuss__composer{margin-bottom:28px}
.discuss__user-bar{
  display:flex;align-items:center;gap:10px;
  padding:10px 16px;margin-bottom:14px;
  background:var(--surface);border:1px solid var(--border);border-radius:8px;
  font-size:12px;color:var(--dim);
}
.discuss__user-avatar{width:28px;height:28px;border-radius:50%;border:2px solid rgba(212,32,32,.2)}
.discuss__user-name{flex:1}
.discuss__user-name strong{color:var(--white);font-weight:600}
.discuss__user-action{
  font-family:var(--font-head);font-size:9px;font-weight:700;
  text-transform:uppercase;letter-spacing:1.5px;color:var(--red);
  opacity:.7;transition:opacity .2s;
}
.discuss__user-action:hover{opacity:1}

.discuss__form{display:flex;flex-direction:column;gap:12px}
.discuss__field{margin-bottom:0}
.discuss__field--half{display:inline-block;width:calc(50% - 6px);vertical-align:top}
.discuss__field--half + .discuss__field--half{margin-left:10px}
.discuss__label{
  display:block;font-family:var(--font-head);font-size:9px;font-weight:700;
  text-transform:uppercase;letter-spacing:2px;color:var(--dim);margin-bottom:6px;
}
.discuss__input,.discuss__textarea{
  width:100%;padding:14px 18px;
  background:var(--surface);border:1px solid var(--border);
  border-radius:8px;color:var(--white);font-size:14px;
  font-family:var(--font-body);outline:none;
  transition:border-color .25s,box-shadow .25s,background .25s;
  box-sizing:border-box;
}
.discuss__input:focus,.discuss__textarea:focus{
  border-color:rgba(212,32,32,.4);
  box-shadow:0 0 0 3px rgba(212,32,32,.06);
  background:rgba(212,32,32,.02);
}
.discuss__textarea{
  resize:vertical;min-height:100px;line-height:1.7;
}
.discuss__textarea::placeholder{color:var(--dim);font-style:italic}
.discuss__submit{
  align-self:flex-start;
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-head);font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:2px;
  padding:14px 32px;background:var(--red);color:#fff;border:none;
  border-radius:8px;cursor:pointer;transition:all .3s var(--ease);
}
.discuss__submit:hover{
  background:var(--red-h);transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(212,32,32,.3);
}
.discuss__submit svg{opacity:.8}

/* Sort bar */
.discuss__sort-bar{
  display:flex;align-items:center;gap:8px;
  padding:12px 0;margin-bottom:20px;border-bottom:1px solid var(--border);
}
.discuss__sort-label{
  font-family:var(--font-head);font-size:9px;font-weight:700;
  text-transform:uppercase;letter-spacing:2px;color:var(--dim);margin-right:6px;
}
.discuss__sort-btn{
  font-family:var(--font-head);font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:1.5px;
  padding:6px 14px;border-radius:4px;
  background:transparent;border:1px solid var(--border);color:var(--dim);
  cursor:pointer;transition:all .2s;
}
.discuss__sort-btn:hover{border-color:rgba(212,32,32,.2);color:var(--gray)}
.discuss__sort-btn--active{
  background:rgba(212,32,32,.08);border-color:rgba(212,32,32,.25);color:var(--red);
}

/* Comment list */
.discuss__list{list-style:none;padding:0;margin:0}
.discuss__item{margin-bottom:4px}
.discuss__item-inner{
  display:flex;gap:14px;padding:18px 20px;
  background:var(--surface);border:1px solid var(--border);
  border-radius:10px;transition:all .3s;
}
.discuss__item-inner:hover{border-color:rgba(212,32,32,.12)}
.discuss__item-avatar{flex-shrink:0}
.discuss__avatar-img{
  width:36px;height:36px;border-radius:50%;
  border:2px solid rgba(212,32,32,.15);
}
.discuss__item-content{flex:1;min-width:0}
.discuss__item-head{display:flex;align-items:center;gap:10px;margin-bottom:6px;flex-wrap:wrap}
.discuss__item-author{
  font-family:var(--font-head);font-size:12px;font-weight:700;
  text-transform:uppercase;letter-spacing:.5px;color:var(--white);
}
.discuss__item-date{font-size:11px;color:var(--dim)}
.discuss__item-text{font-size:14px;color:rgba(255,255,255,.65);line-height:1.75}
.discuss__item-text p{margin:0 0 8px}
.discuss__item-text p:last-child{margin:0}
.discuss__item-actions{margin-top:10px;display:flex;gap:14px}
.discuss__reply-link a,
.discuss__item-actions a{
  font-family:var(--font-head);font-size:9px;font-weight:700;
  text-transform:uppercase;letter-spacing:1.5px;color:var(--red);
  opacity:.6;transition:opacity .2s;
}
.discuss__reply-link a:hover,
.discuss__item-actions a:hover{opacity:1}

/* Nested replies */
.discuss__list .children{
  list-style:none;padding:0;margin:12px 0 0 24px;
  border-left:2px solid rgba(212,32,32,.1);padding-left:16px;
}
.discuss__list .children .discuss__item-inner{
  background:rgba(212,32,32,.02);
}

/* Empty state */
.discuss__empty{
  text-align:center;padding:48px 20px;
}
.discuss__empty-icon{
  color:var(--red);opacity:.15;margin-bottom:16px;
}
.discuss__empty-title{
  font-family:var(--font-head);font-size:18px;font-weight:700;
  text-transform:uppercase;letter-spacing:1.5px;color:var(--white);margin-bottom:8px;
}
.discuss__empty-desc{
  font-size:13px;color:var(--dim);line-height:1.7;max-width:380px;margin:0 auto;
}

/* Comments navigation */
.comment-navigation{
  display:flex;justify-content:space-between;margin-top:20px;padding-top:16px;
  border-top:1px solid var(--border);
}
.comment-navigation a{
  font-family:var(--font-head);font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:1.5px;color:var(--red);
  transition:opacity .2s;
}
.comment-navigation a:hover{opacity:.7}

/* ═══ LIGHT THEME — Continue Reading ═══ */
body.light-theme .cont-read{border-color:#e0e0e0}
body.light-theme .cont-read__title{color:#111}
body.light-theme .cont-read__card{background:#fff;border-color:#e0e0e0;box-shadow:0 1px 4px rgba(0,0,0,.04)}
body.light-theme .cont-read__card:hover{box-shadow:0 12px 36px rgba(0,0,0,.1);border-color:rgba(212,32,32,.2)}
body.light-theme .cont-read__ph{background:linear-gradient(145deg,#e8e7e5,#ddd,#e4e3e1)}
body.light-theme .cont-read__card-title{color:#222}
body.light-theme .cont-read__card:hover .cont-read__card-title{color:var(--red)}
body.light-theme .cont-read__card-excerpt{color:#888}

/* ═══ LIGHT THEME — Discussion Module ═══ */
body.light-theme .discuss{background:#fff;border-color:#e0e0e0;box-shadow:0 1px 6px rgba(0,0,0,.04)}
body.light-theme .discuss::before{background:linear-gradient(90deg,var(--red),rgba(212,32,32,.2),transparent)}
body.light-theme .discuss__header{border-bottom-color:#e0e0e0}
body.light-theme .discuss__title{color:#111}
body.light-theme .discuss__icon{background:rgba(212,32,32,.06);border-color:rgba(212,32,32,.1)}
body.light-theme .discuss__count{background:#f8f7f5;border-color:#e0e0e0}
body.light-theme .discuss__reaction{background:#f8f7f5;border-color:#e0e0e0}
body.light-theme .discuss__reaction:hover{background:rgba(212,32,32,.04);border-color:rgba(212,32,32,.2)}
body.light-theme .discuss__reaction.active{background:rgba(212,32,32,.06);border-color:rgba(212,32,32,.3)}
body.light-theme .discuss__reaction-label{color:#666}
body.light-theme .discuss__user-bar{background:#f8f7f5;border-color:#e0e0e0}
body.light-theme .discuss__user-name strong{color:#222}
body.light-theme .discuss__input,
body.light-theme .discuss__textarea{background:#f8f7f5;border-color:#ddd;color:#111}
body.light-theme .discuss__input:focus,
body.light-theme .discuss__textarea:focus{border-color:rgba(212,32,32,.4);background:#fff}
body.light-theme .discuss__textarea::placeholder{color:#aaa}
body.light-theme .discuss__sort-bar{border-bottom-color:#e0e0e0}
body.light-theme .discuss__sort-btn{border-color:#e0e0e0;color:#999}
body.light-theme .discuss__sort-btn:hover{border-color:rgba(212,32,32,.2);color:#666}
body.light-theme .discuss__sort-btn--active{background:rgba(212,32,32,.05);border-color:rgba(212,32,32,.2);color:var(--red)}
body.light-theme .discuss__item-inner{background:#f8f7f5;border-color:#e0e0e0}
body.light-theme .discuss__item-inner:hover{border-color:rgba(212,32,32,.12)}
body.light-theme .discuss__item-author{color:#222}
body.light-theme .discuss__item-text{color:#555}
body.light-theme .discuss__list .children{border-left-color:rgba(212,32,32,.15)}
body.light-theme .discuss__list .children .discuss__item-inner{background:rgba(212,32,32,.02)}
body.light-theme .discuss__empty-title{color:#111}
body.light-theme .comment-navigation{border-top-color:#e0e0e0}

/* More from category */
.article__more{padding:36px 0 48px;border-top:1px solid var(--border)}
.article__more-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}

/* ═══ LIGHT THEME — Article page extras ═══ */
body.light-theme .article__top{background:#f4f3f1}
body.light-theme .article__top::before{background:linear-gradient(180deg,#eae9e7,#f4f3f1)}
body.light-theme .article__title{color:#111}
body.light-theme .article__lead{color:#666}
body.light-theme .article__crumbs{color:#999}
body.light-theme .article__crumbs a{color:#999}
body.light-theme .article__crumbs a:hover{color:var(--red)}
body.light-theme .article__meta{border-color:#e0e0e0}
body.light-theme .article__author-name{color:#333}
body.light-theme .article__date-row{color:#999}
body.light-theme .article__share-btn{background:rgba(0,0,0,.04);border-color:rgba(0,0,0,.1);color:#888}
body.light-theme .article__share-btn:hover{border-color:rgba(212,32,32,.3);color:var(--red);background:rgba(212,32,32,.06)}
body.light-theme .article__summary{background:rgba(212,32,32,.03);border-color:rgba(212,32,32,.1)}
body.light-theme .article__summary-body{color:#555}
body.light-theme .article__sidebar-label{color:var(--red)}
body.light-theme .aside-card{background:#fff;border-color:#e0e0e0;box-shadow:0 1px 4px rgba(0,0,0,.04)}
body.light-theme .aside-card:hover{box-shadow:0 10px 32px rgba(0,0,0,.1);border-color:rgba(212,32,32,.2)}
body.light-theme .aside-card__ph{background:linear-gradient(145deg,#e8e7e5,#ddd,#e4e3e1)}
body.light-theme .aside-card__title{color:#222}
body.light-theme .aside-card:hover .aside-card__title{color:var(--red)}

body.light-theme .article__body{color:#444}
body.light-theme .article__body strong{color:#222}
body.light-theme .article__body em{color:#555}
body.light-theme .article__body h2,
body.light-theme .article__body h3,
body.light-theme .article__body h4{color:#111}
body.light-theme .article__body h2{border-bottom-color:#e0e0e0}
body.light-theme .article__body blockquote{background:rgba(212,32,32,.03);color:#555}

/* Light lists */
body.light-theme .article__body ul{
  background:rgba(0,0,0,.015);border-color:rgba(0,0,0,.06);
  border-left-color:rgba(212,32,32,.25);
}
body.light-theme .article__body ul li{color:#555}
body.light-theme .article__body ul li::before{background:var(--red);opacity:.5}
body.light-theme .article__body ol li{color:#555;border-bottom-color:rgba(0,0,0,.06)}
body.light-theme .article__body ol li::before{opacity:.45}

/* Light tables */
body.light-theme .article__body table{
  background:#fff;border-color:rgba(212,32,32,.15);
  box-shadow:0 4px 20px rgba(0,0,0,.08);
}
body.light-theme .article__body thead{background:var(--red)}
body.light-theme .article__body thead th{
  color:#fff;border-bottom-color:rgba(0,0,0,.15);
  border-right-color:rgba(255,255,255,.2);
}
body.light-theme .article__body tbody td{
  color:#444;border-bottom-color:#f0eeee;border-right-color:#f5f4f3;
}
body.light-theme .article__body tbody tr:nth-child(even) td{background:#fafafa}
body.light-theme .article__body tbody tr:hover td{background:rgba(212,32,32,.05);color:#111}
body.light-theme .article__body tbody td:first-child{color:#111}

body.light-theme .article__body figcaption{color:#999;border-bottom-color:rgba(0,0,0,.06)}
body.light-theme .article__tags{border-color:#e0e0e0}
body.light-theme .article__tag{border-color:#ddd;color:#999}
body.light-theme .article__tag:hover{border-color:rgba(212,32,32,.3);color:var(--red)}
body.light-theme .article__share-bottom{border-color:#e0e0e0}
body.light-theme .article__more{border-color:#e0e0e0}
body.light-theme .article__more-grid .nws-card{background:#fff;border-color:#e0e0e0}
body.light-theme .share-toast{background:rgba(255,255,255,.97);color:#111;border-color:#e0e0e0;box-shadow:0 8px 32px rgba(0,0,0,.12)}
body.light-theme .article-games{background:#fff;border-color:#e0e0e0}
body.light-theme .article-games__title{color:#111}
body.light-theme .article-games__card{background:#f8f7f5;border-color:#e0e0e0}
body.light-theme .article-games__card-title{color:#222}
body.light-theme .article-games-modal__dialog{background:#fff;border-color:#e0e0e0}
body.light-theme .article-games-modal__close{background:rgba(0,0,0,.06);color:#111}
body.light-theme .article-games-modal__title{color:#111}

/* ═══ RESPONSIVE — Article page ═══ */
@media(max-width:1080px){
  .article__grid{grid-template-columns:1fr;gap:32px}
  .article__sidebar{
    position:static;
    display:grid;grid-template-columns:repeat(2,1fr);gap:14px;
  }
  .article__sidebar-label{grid-column:1/-1}
  .nws-widget--cta{grid-column:1/-1}
  .article__more-grid{grid-template-columns:repeat(2,1fr)}
  .cont-read__grid{grid-template-columns:1fr 1fr}

  /* News listing — tablet */
  .nws-hero__grid{grid-template-columns:1fr 1fr;grid-template-rows:auto auto}
  .nws-hero__card--main{grid-row:auto;grid-column:1/-1}
  .nws-hero__card--main .nws-hero__card-title{font-size:20px}
  .nws-hero__card--main .nws-hero__card-body{padding:24px 22px}
  .nws-main__layout{grid-template-columns:1fr;gap:24px}
  .nws-sidebar{
    display:grid;grid-template-columns:1fr 1fr;gap:14px;
  }
  .nws-sidebar .nws-widget--cta{grid-column:1/-1}
}

@media(max-width:900px){
  .article__title{font-size:28px}
  .nws-filters__inner{flex-direction:column;align-items:stretch;gap:10px}
  .nws-filters__left{flex-wrap:wrap}
  .nws-filters__right{justify-content:space-between}
}

@media(max-width:640px){
  /* ── News hero mobile ── */
  .nws-hero{padding:32px 0 0}
  .nws-hero__title{font-size:30px;letter-spacing:2px;gap:8px}
  .nws-hero__title svg{width:16px;height:16px}
  .nws-hero__desc{font-size:13px;margin-top:10px}
  .nws-hero__grid{
    grid-template-columns:1fr 1fr;grid-template-rows:auto auto;
    gap:6px;min-height:auto;
  }
  .nws-hero__card--main{grid-column:1/-1;min-height:260px}
  .nws-hero__card--main .nws-hero__card-title{font-size:18px}
  .nws-hero__card--main .nws-hero__card-body{padding:18px 16px}
  .nws-hero__card:not(.nws-hero__card--main){min-height:200px}
  .nws-hero__card-title{font-size:11px}
  .nws-hero__card-body{padding:14px 12px}
  .nws-hero__card-excerpt{display:none}
  .nws-hero__card-meta{font-size:10px;margin-top:6px}
  .badge--sm{font-size:7px;padding:3px 6px}

  /* ── Tabs mobile ── */
  .nws-tabs{top:52px}
  .nws-tabs__item{padding:12px 16px;font-size:10px;letter-spacing:1.5px}

  /* ── Filters mobile ── */
  .nws-filters{padding:8px 0}
  .nws-filters__inner{flex-direction:column;gap:8px}
  .nws-filters__left{gap:6px}
  .nws-filter__select{font-size:11px;padding:7px 24px 7px 10px}
  .nws-view-toggle{display:none}

  /* ── Feed grid mobile ── */
  .nws-feed__grid{grid-template-columns:1fr;gap:12px}
  .nws-main{padding:20px 0 32px}
  .nws-main__layout{gap:20px}

  /* ── Cards mobile ── */
  .nws-card{flex-direction:row}
  .nws-card__img{width:110px;height:auto;min-height:100px;flex-shrink:0}
  .nws-card__body{padding:12px 14px}
  .nws-card__title{font-size:12px;-webkit-line-clamp:3}
  .nws-card__excerpt{display:none}
  .nws-card__meta{font-size:9px;padding-top:8px}

  /* List view on mobile — same as card */
  .list-view .nws-card__img{width:110px;min-height:100px}
  .list-view .nws-card__body{padding:12px 14px}
  .list-view .nws-card__title{font-size:12px}

  /* ── Sidebar mobile ── */
  .nws-sidebar{grid-template-columns:1fr;gap:12px}

  /* ── Pagination mobile ── */
  .nws-pagination{margin-top:24px}
  .nws-pagination .page-numbers,
  .nws-pag__item{min-width:34px;height:34px;font-size:11px}
  .nws-pagination .page-numbers.prev,
  .nws-pagination .page-numbers.next,
  .nws-pag__next{padding:0 12px;font-size:10px}

  /* ── SEO block mobile ── */
  .nws-seo{padding:24px 0 32px}
  .nws-seo__title{font-size:14px}
  .nws-seo__text p{font-size:12px}
  .nws-seo__links{gap:6px}
  .nws-seo__links a{font-size:8px;padding:5px 10px}

  /* ── Article page mobile ── */
  .article__top{padding:20px 0 28px}
  .article__title{font-size:22px}
  .article__lead{font-size:14px}
  .article__meta{flex-direction:column;align-items:flex-start;gap:12px}
  .article__body{font-size:15px}
  .article__body h2{font-size:18px;margin:28px 0 12px}
  .article__body h3{font-size:16px}
  .article__body blockquote{padding:16px 18px;font-size:15px}
  .article__body blockquote::before{font-size:36px;top:4px;left:10px}
  .article__body table{font-size:13px}
  .article__body thead th{padding:10px 12px;font-size:9px}
  .article__body tbody td{padding:10px 12px}
  .article__body ul{padding:14px 16px}
  .article__body ol li{padding-left:32px}
  .article__summary{padding:16px 14px}
  .article__more-grid{grid-template-columns:1fr;gap:10px}
  .article__sidebar{grid-template-columns:1fr}
  .aside-card__img{height:140px}
  .share-toast{font-size:10px;padding:10px 18px;bottom:20px}
  .cont-read__grid{grid-template-columns:1fr}
  .article-games{padding:18px 14px}
  .article-games__grid{grid-template-columns:1fr}
  .article-games__card{min-height:150px}
  .article-games-modal__dialog{
    width:100%;
    max-height:calc(100vh - 32px);
  }
  .article-games-modal__frame-wrap{
    aspect-ratio:auto;
    height:calc(100vh - 140px);
    min-height:280px;
  }
  .cont-read__card-img{height:160px}
  .discuss{padding:24px 18px;border-radius:8px}
  .discuss__header{flex-direction:column;align-items:flex-start;gap:12px}
  .discuss__reactions{gap:6px}
  .discuss__reaction{padding:6px 10px}
  .discuss__reaction-label{display:none}
  .discuss__field--half{display:block;width:100%}
  .discuss__field--half + .discuss__field--half{margin-left:0}
  .discuss__item-inner{padding:14px 16px;gap:10px}
  .discuss__list .children{margin-left:12px;padding-left:10px}
}
@media(max-width:400px){
  .nws-hero__grid{grid-template-columns:1fr;grid-template-rows:auto}
  .nws-hero__card:not(.nws-hero__card--main){min-height:180px}
  .nws-hero__card--main{min-height:240px}
  .nws-card__img{width:95px;min-height:90px}
  .nws-card__title{font-size:11px}
  .article__title{font-size:20px}
  .discuss__title{font-size:16px}
}

/* ═══════ EMPTY STATE ═══════ */
.nws-empty{
  text-align:center;padding:80px 20px;
}
.nws-empty__icon{
  color:var(--red);opacity:.2;margin-bottom:20px;
}
.nws-empty__title{
  font-family:var(--font-head);font-size:24px;font-weight:700;
  text-transform:uppercase;letter-spacing:2px;color:var(--white);margin-bottom:10px;
}
.nws-empty__desc{
  font-size:14px;color:var(--dim);line-height:1.7;max-width:400px;margin:0 auto 24px;
}
.nws-empty__actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.nws-empty__btn{
  font-family:var(--font-head);font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:2px;
  padding:12px 28px;border-radius:4px;
  background:var(--red);color:#fff;border:none;cursor:pointer;
  transition:all .3s var(--ease);
}
.nws-empty__btn:hover{background:var(--red-h);transform:translateY(-2px);box-shadow:0 6px 20px rgba(212,32,32,.25)}
.nws-empty__btn--ghost{
  background:transparent;border:1px solid var(--border);color:var(--dim);
}
.nws-empty__btn--ghost:hover{border-color:rgba(212,32,32,.3);color:var(--red);background:transparent;box-shadow:none}

/* Light theme empty state */
body.light-theme .nws-empty__title{color:#111}
body.light-theme .nws-empty__icon{color:var(--red)}

/* ═══ LIGHT THEME — News Listing Page ═══ */
body.light-theme .nws-hero{background:#f4f3f1;border-bottom-color:var(--red)}
body.light-theme .nws-hero__bg{
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%,rgba(212,32,32,.04),transparent 65%),
    linear-gradient(180deg,#f4f3f1 0%,#eae9e7 100%);
}
body.light-theme .nws-hero__title{color:#111}
body.light-theme .nws-hero__desc{color:#666}
body.light-theme .nws-hero__card{border-color:rgba(0,0,0,.08)}
body.light-theme .nws-hero__card:hover{border-color:rgba(212,32,32,.25);box-shadow:0 12px 40px rgba(0,0,0,.1)}
body.light-theme .nws-hero__ph{background:linear-gradient(160deg,#e8e7e5,#ddd,#e4e3e1)}
body.light-theme .nws-hero__ph::before{background:radial-gradient(ellipse 50% 50% at 50% 60%,rgba(212,32,32,.03),transparent 60%)}

body.light-theme .nws-tabs{background:#fff;border-bottom-color:rgba(0,0,0,.08)}
body.light-theme .nws-tabs__item{color:#888}
body.light-theme .nws-tabs__item:hover{color:#111}
body.light-theme .nws-tabs__item.active{color:var(--red)}

body.light-theme .nws-filters{background:#fafafa;border-bottom-color:rgba(0,0,0,.08)}
body.light-theme .nws-filter__select{background:#fff;border-color:#ddd;color:#111}
body.light-theme .nws-filter__select:hover{border-color:rgba(212,32,32,.3)}
body.light-theme .nws-view-btn{background:#fff;border-color:#ddd;color:#888}
body.light-theme .nws-view-btn.active{background:rgba(212,32,32,.06);color:var(--red)}

body.light-theme .nws-card{background:#fff;border-color:#e0e0e0;box-shadow:0 1px 4px rgba(0,0,0,.04)}
body.light-theme .nws-card:hover{border-color:rgba(212,32,32,.2);box-shadow:0 10px 36px rgba(0,0,0,.08)}
body.light-theme .nws-card__title{color:#222}
body.light-theme .nws-card:hover .nws-card__title{color:var(--red)}
body.light-theme .nws-card__excerpt{color:#888}
body.light-theme .nws-card__meta{color:#aaa}
body.light-theme .nws-card__author{color:#555}
body.light-theme .nws-card__ph{background:linear-gradient(145deg,#e8e7e5,#ddd,#e4e3e1)}

body.light-theme .nws-widget{background:#fff;border-color:#e0e0e0}
body.light-theme .nws-widget__head{background:linear-gradient(135deg,rgba(212,32,32,.04),rgba(212,32,32,.02));border-bottom-color:rgba(212,32,32,.08)}
body.light-theme .nws-widget__row{border-bottom-color:#f0eeee}
body.light-theme .nws-widget__row:hover{background:rgba(212,32,32,.02)}
body.light-theme .nws-widget__row-title{color:#222}
body.light-theme .nws-widget__row:hover .nws-widget__row-title{color:var(--red)}
body.light-theme .nws-widget__event:hover{background:rgba(212,32,32,.02)}
body.light-theme .nws-widget__event-name{color:#222}
body.light-theme .nws-widget__event:hover .nws-widget__event-name{color:var(--red)}
body.light-theme .nws-widget--cta{border-color:rgba(212,32,32,.1)}
body.light-theme .nws-widget__cta-inner{background:linear-gradient(135deg,rgba(212,32,32,.03),transparent 60%)}
body.light-theme .nws-widget__cta-title{color:#111}
body.light-theme .nws-widget__cta-input{background:#f8f8f8;border-color:#ddd;color:#111}

body.light-theme .nws-pagination .page-numbers,
body.light-theme .nws-pag__item{background:#fff;border-color:#ddd;color:#888}
body.light-theme .nws-pagination .page-numbers:hover,
body.light-theme .nws-pag__item:hover{border-color:rgba(212,32,32,.3);color:#111}

body.light-theme .nws-seo{border-color:#e0e0e0}
body.light-theme .nws-seo__title{color:#111}
body.light-theme .nws-seo__text p{color:#666}
body.light-theme .nws-seo__links a{border-color:#ddd;color:#888}
body.light-theme .nws-seo__links a:hover{border-color:rgba(212,32,32,.3);color:var(--red)}
