/* ===========================
   Article styles
   =========================== */

.breadcrumb {
  padding: 90px 24px 0;
  max-width: 860px;
  margin: 0 auto;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  font-size: 13px;
  color: var(--muted);
  align-items: center;
}
.breadcrumb__list a {
  color: var(--accent2);
  transition: opacity .2s;
}
.breadcrumb__list a:hover { opacity: 0.75; }
.breadcrumb__list li::after {
  content: '/';
  margin-left: 6px;
  opacity: 0.4;
}
.breadcrumb__list li:last-child::after { display: none; }
.breadcrumb__list li:last-child { color: var(--muted); }

.article-hero {
  padding: 32px 24px 48px;
  max-width: 860px;
  margin: 0 auto;
}
.article-hero__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent2);
  margin-bottom: 16px;
}
.article-hero__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 20px;
}
.article-hero__meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}
.article-hero__meta span { display: flex; align-items: center; gap: 5px; }
.article-hero__img {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,113,227,0.22), rgba(52,170,220,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  border: 1px solid var(--border);
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}
.article-body h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 600;
  margin: 28px 0 12px;
}
.article-body p {
  font-size: 16px;
  line-height: 1.78;
  color: rgba(245,245,247,0.88);
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245,245,247,0.88);
  margin-bottom: 8px;
}
.article-body strong { color: var(--text); font-weight: 600; }

.article-body .highlight-box {
  background: rgba(0,113,227,0.1);
  border: 1px solid rgba(0,113,227,0.25);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0;
}
.article-body .highlight-box p { margin: 0; color: var(--text); }

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
  border-radius: 12px;
  overflow: hidden;
}
.article-body th {
  background: rgba(0,113,227,0.15);
  color: var(--accent2);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.article-body td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: rgba(245,245,247,0.85);
}
.article-body tr:last-child td { border-bottom: none; }
.article-body tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.article-source {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 16px;
  font-size: 13px;
  color: var(--muted);
}
.article-source a {
  color: var(--accent2);
  transition: opacity .2s;
}
.article-source a:hover { opacity: 0.75; }

.article-cta {
  max-width: 860px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.article-cta__inner {
  background: linear-gradient(135deg, rgba(0,113,227,0.15), rgba(52,170,220,0.08));
  border: 1px solid rgba(0,113,227,0.25);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.article-cta__text h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.article-cta__text p { font-size: 15px; color: var(--muted); margin: 0; }

.article-nav {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.article-nav a {
  font-size: 14px;
  color: var(--accent2);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
}
.article-nav a:hover { opacity: 0.75; }

@media (max-width: 600px) {
  .article-hero__img { height: 200px; font-size: 52px; }
  .article-cta__inner { flex-direction: column; }
  .article-body table { font-size: 13px; }
  .article-body th, .article-body td { padding: 10px 12px; }
}
