.article-page {
  max-width: 1200px;
  margin: 30px auto;
  display: flex;
  gap: 30px;
}

.article-main {
  flex: 3;
}

.article-sidebar {
  flex: 1;
}

.article-container {
  background: #fff;
  padding: 25px;
  border: 1px solid #ddd;
}

.article-category {
  background: #1e88e5;
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  text-transform: uppercase;
}

.article-title {
  font-size: 38px;
  margin: 20px 0;
  line-height: 1.4;
}

.article-meta {
  color: #777;
  margin-bottom: 20px;
}

.article-banner {
  margin: 25px 0;
}

.article-banner img {
  width: 100%;
  border-radius: 5px;
}

.article-content {
  line-height: 1.9;
  font-size: 17px;
  color: #444;
}

.article-actions {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.article-btn {
  text-decoration: none;
  padding: 10px 18px;
  background: #1e88e5;
  color: white;
  border-radius: 4px;
}

.edit-btn {
  background: #43a047;
}

.article-widget {
  background: white;
  border: 1px solid #ddd;
}

.article-widget h3 {
  margin: 0;
  padding: 12px;
  background: #111;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
}

.article-link {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.article-link:last-child {
  border-bottom: none;
}

.article-link a {
  text-decoration: none;
  color: #333;
}

.article-link a:hover {
  color: #1e88e5;
}

@media(max-width:768px) {
  .article-page {
    flex-direction: column;
  }

  .article-title {
    font-size: 28px;
  }
}