.article-page.container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.article-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.article-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.article-category {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.article-content time {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.article-image {
  text-align: center;
  margin: 2rem 0;
}

.article-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 0.75rem;
}

.article-text {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1rem;
}

.article-text h2,
.article-text h3,
.article-text h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-text p {
  margin-bottom: 1.5rem;
}

.article-text a {
  color: var(--red);
  text-decoration: underline;
}

.article-text ul,
.article-text ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

@media (max-width: 600px) {
  .article-content {
    padding: 1.5rem;
  }
  .article-content h1 {
    font-size: 2rem;
  }
}