@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');

.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 72px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.78;
  color: #1e1b4b;
}

.article-content h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 28px;
  line-height: 1.3;
  color: #1e1b4b;
  margin: 44px 0 16px;
  font-weight: 700;
}

.article-content h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
  color: #1e1b4b;
  margin: 32px 0 12px;
  font-weight: 700;
}

.article-content h4 {
  font-size: 18px;
  color: #1e1b4b;
  margin: 24px 0 10px;
  font-weight: 700;
}

.article-content p {
  margin: 0 0 20px;
  color: #374151;
}

.article-content strong {
  color: #1e1b4b;
  font-weight: 700;
}

.article-content em {
  font-style: italic;
}

.article-content a {
  color: #7c3aed;
  text-decoration: underline;
  text-decoration-color: rgba(124,58,237,0.3);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.article-content a:hover {
  color: #6d28d9;
  text-decoration-color: #6d28d9;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 26px 0;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  display: block;
}

.article-content ul,
.article-content ol {
  margin: 0 0 22px 24px;
  color: #374151;
}

.article-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.article-content li::marker {
  color: #7c3aed;
}

.article-content blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  border-left: 4px solid #7c3aed;
  background: #f5f3ff;
  color: #1e1b4b;
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.article-content blockquote p:last-child {
  margin-bottom: 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  font-size: 15px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.article-content th,
.article-content td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.article-content th {
  background: #ede9fe;
  font-weight: 700;
  color: #1e1b4b;
}

.article-content tr:last-child td {
  border-bottom: none;
}

.article-content details {
  margin: 20px 0;
  padding: 14px 18px;
  background: #f5f3ff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.article-content summary {
  cursor: pointer;
  font-weight: 600;
  color: #7c3aed;
}

.article-content hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 36px 0;
}

.article-content > *:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .article-content {
    padding: 28px 18px 56px;
    font-size: 16px;
    line-height: 1.72;
  }
  .article-content h2 { font-size: 24px; margin-top: 32px; }
  .article-content h3 { font-size: 20px; margin-top: 24px; }
  .article-content blockquote { padding: 14px 18px; }
}
