 .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Styles */
.news-header {
  position: static;
  text-align: center;
  padding: 30px 0;
  margin-top: 130px;
  margin-bottom: 10px;
}

.news-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.article-meta {
  color: #7f8c8d;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
}

/* Main Content Layout */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  margin-bottom: 40px;
}

/* Article Styles */
.main-article {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.article-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://cdn.learningspoons.com/static/img/content/vochuer/img_graph.png?v=6ee8a0c80074");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin: 25px 0;
  position: relative;
}

.image-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 0.9rem;
  opacity: 0.85;
}

.article-content h2 {
  font-family: "Playfair Display", serif;
  color: #2c3e50;
  margin: 30px 0 15px;
  font-size: 1.8rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
}

.article-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.article-content blockquote {
  border-left: 4px solid #3498db;
  padding: 20px 30px;
  margin: 30px 0;
  background: #f8f9fa;
  font-style: italic;
  color: #555;
  border-radius: 0 8px 8px 0;
}

.article-content ul {
  padding-left: 25px;
  margin-bottom: 25px;
}

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

/* Aside Styles */
.related-content {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  align-self: start;
}

.related-content h3 {
  font-family: "Playfair Display", serif;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #3498db;
  font-size: 1.5rem;
}

.related-article {
  padding: 15px 0;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  gap: 15px;
}

.related-article:last-child {
  border-bottom: none;
}

.related-article img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.related-article-content h4 {
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.related-article-content p {
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Footer */
.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 20px 20px;
  border-radius: 8px;
  border-top: 1px solid #eaeaea;
  margin-top: 30px;
}

.social-sharing {
  display: flex;
  gap: 15px;
}

.social-sharing a {
  color: #7f8c8d;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-sharing a:hover {
  color: #3498db;
}

.article-tags {
  display: flex;
  gap: 10px;
}

.article-tags span {
  background: #f1f2f6;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #7f8c8d;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .news-header h1 {
    font-size: 2.4rem;
  }

  .article-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .news-header h1 {
    font-size: 2rem;
  }

  .article-image {
    height: 300px;
  }

  .article-meta {
    flex-direction: column;
    gap: 8px;
  }

  .article-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .main-article,
  .related-content {
    padding: 20px;
  }

  .news-header h1 {
    font-size: 1.8rem;
  }

  .article-image {
    height: 250px;
  }

  .article-content h2 {
    font-size: 1.5rem;
  }
}
