.article-page {
  background: #ffffff;
}

.article-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  border-bottom: 1px solid var(--border);
}
.article-header-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.article-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.8px;
  line-height: 1.18;
  margin-bottom: 16px;
}
.article-header-meta {
  font-size: 12px;
  color: var(--text-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.article-header-meta span { display: flex; align-items: center; gap: 5px; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 64px;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}
.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.3px;
  margin: 40px 0 14px;
}
.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 28px 0 10px;
}
.article-body p    { margin-bottom: 18px; }
.article-body ul,
.article-body ol   { margin: 0 0 18px 24px; }
.article-body li   { margin-bottom: 6px; }
.article-body a    { color: var(--accent); text-decoration: underline; }
.article-body strong { color: #111; font-weight: 700; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 10px 18px;
  margin: 24px 0;
  background: var(--accent-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-body);
}

.article-email-cta {
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.article-email-box {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-email-box h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}
.article-email-box p { font-size: 14px; color: var(--text-muted); }
.article-email-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.article-email-form input {
  flex: 1;
  min-width: 200px;
  font-size: 14px;
  padding: 11px 14px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}
.article-email-form input:focus { border-color: var(--accent); }

@media (max-width: 600px) {
  .article-header h1 { font-size: 26px; }
}

a.affiliate-btn {
  display: inline-block;
  background: #e8622a;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 8px;
  text-decoration: none !important;
  letter-spacing: 0.02em;
  margin: 12px 0 20px;
  transition: background 0.2s;
}
a.affiliate-btn:hover {
  background: #c4521f;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 13px;
}
.article-body th {
  background: #f7f7f5;
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 2px solid #eeecea;
  color: #111;
}
.article-body td {
  padding: 10px 14px;
  border-bottom: 1px solid #eeecea;
  color: #444;
  vertical-align: middle;
}
.article-body td a {
  color: #e8622a;
  font-weight: 600;
  text-decoration: none;
}
.article-body td a:hover {
  text-decoration: underline;
}
