
.article-container {
  max-width: 800px;
  margin: 120px auto 60px;
  padding: 0 20px;
}

.article-container {
  max-width: 90%;
  padding: 0 15px;
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--royal-blue);
  margin-bottom: 30px;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 10px 30px;
  color: #666;
  font-size: 14px;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-content {
  line-height: 1.8;
  color: #333;
}

.article-content h2 {
  color: var(--royal-blue);
  font-size: 28px;
  margin: 40px 0 20px;
}

.article-content h3 {
  color: var(--royal-blue);
  font-size: 24px;
  margin: 30px 0 15px;
}

.article-content {
  font-size: 16px;
  line-height: 1.6;
}

.article-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.share-buttons {
  display: flex;
  gap: 15px;
  margin: 40px 0;
  justify-content: center;
}

.share-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s;
  text-decoration: none;
}

.share-button:hover {
  transform: translateY(-3px);
}

.share-buttons {
  gap: 10px;
}

.share-button {
  width: 35px;
  height: 35px;
}

.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.pinterest { background: #bd081c; }
.whatsapp { background: #25d366; }
.email { background: #ea4335; }

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--royal-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
}

.scroll-top:hover {
  transform: translateY(-5px);
}

.article-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}

.nav-article {
  max-width: 45%;
  text-decoration: none;
  color: var(--royal-blue);
}

.nav-article:hover {
  color: var(--gold);
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .article-container {
    max-width: 90%;
    padding: 0 15px;
  }
}