.article-section {
  padding: 60px 16px;
  background: #f6f7fb;
  font-family: Arial, sans-serif;
}

.article-container {
  max-width: 900px;
  margin: 0 auto;
}

.article-content {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.article-category {
  display: inline-block;
  padding: 8px 14px;
  background: #111827;
  color: #ffffff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.article-header h1 {
  font-size: 34px;
  line-height: 1.25;
  color: #111827;
  margin: 0 0 12px;
}

.article-meta {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
}

.article-image {
  margin: 24px 0;
  border-radius: 16px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.article-content h2 {
  font-size: 24px;
  color: #111827;
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}

.article-content ul {
  padding-left: 22px;
  margin-bottom: 20px;
}

.article-content li {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 8px;
}

.article-note {
  margin: 28px 0;
  padding: 18px;
  background: #fff7ed;
  border-left: 5px solid #f97316;
  border-radius: 12px;
  color: #7c2d12;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .article-section {
    padding: 36px 14px;
  }

  .article-content {
    padding: 22px;
    border-radius: 14px;
  }

  .article-header h1 {
    font-size: 26px;
  }

  .article-content h2 {
    font-size: 21px;
  }
}