/*
Theme Name: NeonBlade GTA6
Theme URI: https://yoursite.com
Author: GTA6 Wire
Description: Dark neon gaming theme for GTA 6 Wire - built for high-engagement gaming audiences. Features neon pink/cyan accents on deep dark backgrounds, sticky header, category filtering, and responsive card layout.
Version: 1.0
Requires at least: 5.8
Tested up to: 6.5
License: GNU General Public License v2 or later
Tags: gaming, dark, neon, gta6, custom-menu, featured-images, categories
Text Domain: neonblade
*/

/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0f;
  --surface:   #12121a;
  --card:      #1a1a26;
  --card-hov:  #1f1f30;
  --accent:    #ff3c6e;
  --accent2:   #00e5ff;
  --gold:      #ffb800;
  --text:      #f0f0f8;
  --muted:     #888899;
  --border:    #2a2a3e;
  --radius:    8px;
  --font:      'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── TOPBAR ───────────────────────────────────────────── */
#topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.site-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent);
}
.site-logo span { color: var(--accent2); }

/* PRIMARY NAV */
#primary-navigation ul {
  display: flex;
  gap: 0;
}
#primary-navigation ul li a {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 0 16px;
  height: 56px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item a {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
/* Dropdown */
#primary-navigation ul li { position: relative; }
#primary-navigation ul li ul {
  display: none;
  position: absolute;
  top: 56px;
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  min-width: 220px;
  flex-direction: column;
  z-index: 1000;
}
#primary-navigation ul li:hover > ul { display: flex; }
#primary-navigation ul li ul li a {
  height: auto;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: .5px;
}
#primary-navigation ul li ul li a:hover { color: var(--accent2); background: var(--card); }

.header-search input {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  padding: 7px 14px;
  font-size: 13px;
  width: 180px;
  outline: none;
}
.header-search input:focus { border-color: var(--accent); }

/* MOBILE TOGGLE */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 18px;
}

/* ── BREAKING BAR ─────────────────────────────────────── */
.breaking-bar {
  background: var(--accent);
  color: #fff;
  padding: 8px 24px;
  font-size: 12px;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breaking-bar strong {
  background: #fff;
  color: var(--accent);
  font-size: 10px;
  padding: 2px 8px;
  letter-spacing: 1px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ── FEATURED POST SLIDER (sits between the article list and the footer) ── */
.hero-slider-wrap {
  max-width: 1200px;
  margin: 8px auto 40px;
  padding: 0 24px;
  box-sizing: border-box;
}
.hero-slider {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.hero-slider-track { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 40px 44px;
  background: linear-gradient(0deg, rgba(0,0,0,.92) 10%, rgba(0,0,0,.55) 55%, transparent 100%);
}
.hero-slide-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  border: 1px solid;
  margin-bottom: 12px;
}
.hero-slide-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  max-width: 720px;
  margin-bottom: 12px;
}
.hero-slide-cta { font-size: 13px; font-weight: 700; color: var(--accent2); letter-spacing: .3px; }
.hero-slider-dots {
  position: absolute;
  right: 24px;
  bottom: 20px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .2s;
}
.hero-slider-dot.is-active { background: var(--accent); width: 22px; border-radius: 4px; }
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.hero-slider-arrow:hover { background: rgba(0,0,0,.75); }
.hero-slider-prev { left: 16px; }
.hero-slider-next { right: 16px; }

@media (max-width: 700px) {
  .hero-slider { height: 320px; }
  .hero-slide-title { font-size: 20px; }
  .hero-slide-overlay { padding: 20px 20px 28px; }
  .hero-slider-arrow { display: none; }
}

/* ── HERO SECTION ─────────────────────────────────────── */
.hero-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px 40px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,60,110,.12);
  border: 1px solid rgba(255,60,110,.3);
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  letter-spacing: .5px;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: .85; }
.btn-outline {
  background: transparent;
  color: var(--accent2);
  border: 1px solid var(--accent2);
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  letter-spacing: .5px;
  transition: all .2s;
}
.btn-outline:hover { background: rgba(0,229,255,.1); }

/* Hero Countdown */
.hero-side {}
.countdown-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-bottom: 16px;
}
.cd-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.cd-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.cd-unit { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 12px 6px; }
.cd-num { font-size: 28px; font-weight: 800; color: var(--accent2); line-height: 1; }
.cd-unit-label { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ── CATEGORY NAV ─────────────────────────────────────── */
.cat-nav-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.cat-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.cat-nav-inner::-webkit-scrollbar { height: 3px; }
.cat-nav-inner::-webkit-scrollbar-thumb { background: var(--border); }
.cat-link {
  color: var(--muted);
  font-size: 12px;
  padding: 12px 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  font-weight: 600;
  letter-spacing: .3px;
}
.cat-link:hover,
.cat-link.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ── MAIN CONTENT AREA ────────────────────────────────── */
.site-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* ── SECTION TITLE ────────────────────────────────────── */
.section-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── POST CARDS ───────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: background .15s, border-color .2s;
}
.post-card:hover { background: var(--card-hov); border-color: var(--accent); }
.post-card-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.post-card-thumb-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, var(--border), var(--surface));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--border);
}
.post-card-body { padding: 16px; }
.post-cat-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
  background: rgba(255,60,110,.12);
  color: var(--accent);
}
.post-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-meta { font-size: 11px; color: var(--muted); display: flex; gap: 10px; }

/* Post List (below cards) */
.post-list-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s;
}
.post-list-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.post-list-item:last-child { border-radius: 0 0 var(--radius) var(--radius); border-bottom: none; }
.post-list-item:hover { background: var(--card-hov); }
.pli-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.pli-cat { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); font-weight: 700; display: block; margin-bottom: 2px; }
.pli-title { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }
.pli-arrow { color: var(--muted); font-size: 16px; margin-left: auto; }

/* ── SIDEBAR ──────────────────────────────────────────── */
.sidebar {
  position: sticky;
  top: 64px;
  align-self: start;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.sidebar-widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.widget-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
/* Launch date widget */
.launch-date-display {
  background: var(--bg);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  margin-bottom: 14px;
}
.launch-date-main { font-size: 22px; font-weight: 800; color: var(--accent2); }
.launch-date-sub { font-size: 11px; color: var(--muted); margin-top: 3px; }
.launch-stat { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 12px; }
.launch-stat:last-child { border-bottom: none; }
.launch-stat-label { color: var(--muted); }
.launch-stat-val { font-weight: 700; color: var(--text); }

/* Category list widget */
.cat-widget-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: color .15s;
}
.cat-widget-item:last-child { border-bottom: none; }
.cat-widget-item:hover .cat-widget-name { color: var(--accent2); }
.cat-widget-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.cat-widget-name {
  flex: 1;
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.cat-widget-count { font-size: 11px; color: var(--muted); background: var(--bg); padding: 1px 8px; border-radius: 10px; flex-shrink: 0; }

/* Recent posts widget */
.recent-post-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.recent-post-item:last-child { border-bottom: none; }
.recent-post-item img { width: 60px; height: 45px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.recent-post-item > div { min-width: 0; }
.recent-post-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recent-post-cat { font-size: 10px; color: var(--accent); margin-bottom: 3px; }

/* Default WordPress widgets (Search, Recent Comments, Archives, Categories, etc.
   added via Appearance > Widgets) — keep them on-theme and prevent long text
   from stretching the sidebar or overflowing its box. */
.sidebar-widget ul { list-style: none; margin: 0; padding: 0; }
.sidebar-widget ul ul { margin-left: 14px; margin-top: 6px; }
.sidebar-widget li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.sidebar-widget li:last-child { border-bottom: none; }
.sidebar-widget li a {
  color: var(--text);
}
.sidebar-widget li a:hover { color: var(--accent2); }
.sidebar-widget .wp-block-search__input,
.sidebar-widget input[type="search"],
.sidebar-widget input[type="text"] {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: 9px 12px;
  font-size: 13px;
  box-sizing: border-box;
}
.sidebar-widget .wp-block-search__button,
.sidebar-widget input[type="submit"] {
  margin-top: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}
.sidebar-widget select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: 8px 10px;
  font-size: 13px;
  box-sizing: border-box;
}
.sidebar-widget p { font-size: 13px; line-height: 1.6; color: var(--muted); overflow-wrap: break-word; }

/* ── SINGLE POST ──────────────────────────────────────── */
.single-post-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.post-header { margin-bottom: 28px; }
.post-header-cat {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.post-header-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 14px;
}
.post-header-meta { font-size: 12px; color: var(--muted); display: flex; gap: 16px; }
.post-featured-image { width: 100%; border-radius: var(--radius); margin-bottom: 28px; }
.post-content { font-size: 16px; line-height: 1.75; color: var(--text); }
.post-content h2 { font-size: 22px; font-weight: 700; margin: 28px 0 12px; color: var(--accent2); }
.post-content h3 { font-size: 18px; font-weight: 700; margin: 22px 0 10px; }
.post-content p { margin-bottom: 16px; }
.post-content ul, .post-content ol { margin: 0 0 16px 24px; }
.post-content li { margin-bottom: 6px; }
.post-content strong { color: var(--accent); }
.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted);
  font-style: italic;
}

/* ── ARCHIVE / CATEGORY PAGE ──────────────────────────── */
.archive-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 36px 24px;
}
.archive-header-inner { max-width: 1200px; margin: 0 auto; }
.archive-cat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.archive-title { font-size: 28px; font-weight: 800; letter-spacing: -1px; }
.archive-count { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── PAGINATION ───────────────────────────────────────── */
.pagination {
  display: flex;
  gap: 6px;
  margin-top: 28px;
  justify-content: center;
}
.pagination a, .pagination span {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: all .15s;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 24px 20px;
  margin-top: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo { font-size: 22px; font-weight: 800; letter-spacing: 2px; color: var(--accent); margin-bottom: 10px; }
.footer-logo span { color: var(--accent2); }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.footer-col-title { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; font-weight: 700; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { font-size: 13px; color: var(--muted); transition: color .15s; }
.footer-links li a:hover { color: var(--accent2); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner, .site-container, .single-post-container { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 26px; }
  #primary-navigation { display: none; }
  #primary-navigation.open { display: block; position: absolute; top: 56px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); z-index: 998; }
  #primary-navigation.open ul { flex-direction: column; }
  #primary-navigation.open ul li a { height: 44px; border-bottom: 1px solid var(--border); }
  .menu-toggle { display: block; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-inner { padding: 0 16px; }
  .hero-section { padding: 32px 16px; }
  .site-container { padding: 20px 16px; }
}

/* ================= AD SLOTS ================= */
.ad-slot{display:flex;justify-content:center;align-items:center;margin:20px 0;overflow:hidden}
.ad-slot iframe{max-width:100%}
.ad-header-banner{background:var(--surface);border-bottom:1px solid var(--border);padding:12px 0;margin:0}
.ad-sticky{margin-bottom:20px}
.ad-native{margin:28px 0;padding:16px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.ad-desktop-only{display:flex;justify-content:center}
.ad-mobile-only{display:none}
@media(max-width:600px){
  .ad-desktop-only{display:none}
  .ad-mobile-only{display:flex;justify-content:center}
}

/* ================= SHOW MORE COLLAPSE ================= */
.js-collapsible > *:not(:first-child) { display: none; }
.js-collapsible.js-expanded > *:not(:first-child) { display: block; }
.js-collapsible.js-expanded > a.recent-post-item { display: flex; }
.js-show-more-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 9px;
  margin-top: 10px;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: 6px;
  color: var(--accent2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  cursor: pointer;
}
.js-show-more-btn:hover { border-color: var(--accent2); }
.ad-infeed{margin:14px 0;}
