/* tcgpredictions — article (deep-dive) styles
   Layered on top of site.css + wow-v2/v3.
   Used by /article/<slug>.html pages. */

.art-wrap { max-width: 760px; margin: 0 auto; padding: 0 18px 80px }
.art-eyebrow { color: var(--violet); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; margin: 24px 0 8px }
.art-h1 {
  font-size: clamp(28px, 4.6vw, 40px); line-height: 1.18; font-weight: 800;
  letter-spacing: -.02em; margin: 8px 0 14px;
  background: linear-gradient(180deg, #fff, #67e8f9 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.art-meta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  color: var(--muted); font-size: 13px; margin-bottom: 22px;
  border-bottom: 1px solid var(--line); padding-bottom: 16px;
}
.art-tag { display: inline-block; padding: 3px 10px; border-radius: 99px;
  background: rgba(167,139,250,.10); border: 1px solid rgba(167,139,250,.3);
  color: #c4b5fd; font-size: 11px; letter-spacing: .04em;
}
.art-tldr {
  background: rgba(34,211,238,.06); border: 1px solid rgba(34,211,238,.25);
  border-radius: 12px; padding: 16px 20px; margin: 22px 0; color: var(--text-2);
  font-size: 15.5px; line-height: 1.65;
}
.art-tldr strong { color: #67e8f9 }

.art-body { color: var(--text-2); font-size: 16px; line-height: 1.75 }
.art-body h2 {
  color: #f0f6ff; font-size: 22px; font-weight: 700; letter-spacing: -.01em;
  margin: 36px 0 12px; padding-top: 6px;
  border-top: 1px solid var(--line);
}
.art-body h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 28px }
.art-body p { margin: 0 0 16px }
.art-body ul, .art-body ol { padding-left: 22px; margin: 0 0 16px }
.art-body li { margin-bottom: 8px }
.art-body a { color: var(--cyan); text-decoration: none; border-bottom: 1px solid rgba(103,232,249,.3) }
.art-body a:hover { color: #fff; border-bottom-color: #fff }
.art-body strong { color: #f0f6ff }
.art-body blockquote {
  margin: 18px 0; padding: 4px 18px; border-left: 3px solid var(--violet);
  color: var(--text-2); font-style: italic;
}
.art-body code {
  background: rgba(255,255,255,.06); padding: 2px 6px; border-radius: 4px;
  font: .9em 'JetBrains Mono', Consolas, monospace; color: #67e8f9;
}

.art-sources { margin-top: 36px; padding: 18px 20px;
  background: rgba(167,139,250,.05); border: 1px solid rgba(167,139,250,.2);
  border-radius: 12px;
}
.art-sources h2 { color: #c4b5fd; font-size: 16px; margin: 0 0 10px;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
  border: 0; padding: 0;
}
.art-sources ol { padding-left: 20px; margin: 0; color: var(--text-2); font-size: 14px }
.art-sources li { margin-bottom: 6px; word-break: break-word }
.art-sources a { color: #67e8f9 }

.art-foot { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; gap: 14px; justify-content: space-between; flex-wrap: wrap;
  color: var(--muted); font-size: 13px;
}
.art-foot a { color: var(--cyan) }

/* Recent deep-dives list (used on cyber.html / military.html) */
.deepdives { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px; margin-top: 6px;
}
.deepdive-card {
  display: block; padding: 16px 18px;
  background: linear-gradient(180deg, rgba(20,26,62,.45), rgba(15,20,50,.6));
  border: 1px solid var(--line); border-radius: 12px;
  transition: border-color .15s, transform .15s;
  text-decoration: none;
}
.deepdive-card:hover { border-color: rgba(103,232,249,.5); transform: translateY(-2px) }
.deepdive-card .dd-tags { font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 6px;
}
.deepdive-card .dd-title { color: var(--text); font-size: 15px; font-weight: 600;
  line-height: 1.35; margin: 0 0 8px;
}
.deepdive-card .dd-sum { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0 0 8px }
.deepdive-card .dd-date { color: var(--muted); font-size: 11px; font-family: 'JetBrains Mono', Consolas, monospace }
