/* =====================
   ARTICLE / BLOG POST
   ===================== */

.article-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px 60px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.article-main { flex: 1; min-width: 0; }
.article-sidebar { width: 280px; flex-shrink: 0; display: flex; flex-direction: column; gap: 16px; }

/* Hero */
.article-hero {
  background: linear-gradient(160deg, #111 0%, #1a1a1a 50%, #1e1800 100%);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 40px 36px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.article-tag {
  display: inline-block;
  background: rgba(240,165,0,0.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.article-hero h1 { font-size: 48px; color: #fff; line-height: 1.1; margin-bottom: 14px; }
.article-hero .article-subtitle { font-size: 16px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.article-meta { display: flex; gap: 20px; font-size: 12px; color: #555; flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: 5px; }

/* Body */
.article-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px;
  margin-bottom: 18px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
}
.article-body h2 {
  font-size: 28px;
  color: var(--gold);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 20px; color: #fff; margin: 24px 0 10px; }
.article-body p { margin-bottom: 16px; }
.article-body p:last-child { margin-bottom: 0; }
.article-body strong { color: #fff; }
.article-body a { color: var(--gold); }
.article-body a:hover { color: #fff; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 16px; }
.article-body li { margin-bottom: 8px; }

/* Callout boxes */
.callout {
  border-radius: 8px;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.7;
}
.callout-gold { background: rgba(240,165,0,0.07); border-left: 3px solid var(--gold); }
.callout-gold strong { color: var(--gold); }
.callout-dark { background: #111; border: 1px solid var(--border-gold); }
.callout-dark strong { color: var(--gold); }

/* Stat cards */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0; }
.stat-card {
  background: #111;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
}
.stat-card .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-card .stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* Ranking list */
.rank-item {
  background: #111;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 14px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.rank-item:hover { border-color: var(--border-gold); }
.rank-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  min-width: 40px;
  text-align: center;
}
.rank-content h3 { font-size: 18px; color: #fff; margin-bottom: 6px; }
.rank-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.rank-verdict {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(240,165,0,0.1);
  color: var(--gold);
  border-radius: 10px;
  padding: 2px 10px;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-gold); }
.faq-item summary {
  padding: 16px 18px;
  cursor: pointer;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--gold); }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer { padding: 16px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.8; background: var(--bg-card); }

/* Related posts */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 16px; }
.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.related-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.related-card-img { width: 100%; height: 100px; background: linear-gradient(135deg, #2a2a2a, #1a1400); }
.related-card-body { padding: 12px 14px; }
.related-card-body span { font-size: 10px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.5px; }
.related-card-body h4 { font-size: 14px; color: #fff; margin: 4px 0 0; line-height: 1.3; }

@media (max-width: 900px) {
  .article-layout { flex-direction: column; }
  .article-sidebar { width: 100%; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .article-hero h1 { font-size: 34px; }
  .article-body { padding: 24px 20px; }
}
