/* ==================== ARTICLE PAGE ==================== */
.article-page { 
  padding: 40px 0 80px;
  margin-top: 70px; /* Altura del navbar */
}

.article-header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.article-category { 
  margin-bottom: 20px; 
}

.article-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #000;
}

.article-subtitle {
  font-size: 1.3rem;
  color: #444;
  margin-bottom: 30px;
  font-weight: 300;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.author-info { 
  display: flex; 
  align-items: center; 
  gap: 15px; 
}

.author-avatar {
  width: 50px; 
  height: 50px; 
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #000;
}

.author-details { 
  display: flex; 
  flex-direction: column; 
  text-align: left; 
}

.author-name { 
  font-weight: 700; 
  font-size: .95rem;
  color: #000;
}

.article-date { 
  font-size: .85rem; 
  color: #666; 
}

.share-btn {
  padding: 12px 30px;
  background: #000; 
  color: #fff;
  border-radius: 0; /* Sin bordes redondeados */
  border: 2px solid #000;
  font-size: .9rem; 
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .3s ease;
  cursor: pointer;
}

.share-btn:hover { 
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Media principal */
.article-image {
  max-width: 1000px;
  margin: 0 auto 50px;
  border-radius: 0; /* Sin bordes redondeados */
  border: 2px solid #000;
  overflow: hidden;
}

.article-image img { 
  width: 100%; 
  height: auto;
  display: block;
}

/* Cuerpo */
.article-content { 
  max-width: 800px; 
  margin: 0 auto; 
}

.article-body { 
  font-size: 1.1rem; 
  line-height: 1.9; 
  color: #333; 
}

.article-body .lead-paragraph {
  font-size: 1.3rem; 
  font-weight: 500;
  margin-bottom: 30px; 
  color: #000;
}

.article-body h2 { 
  font-size: 2rem; 
  font-weight: 800; 
  margin: 40px 0 20px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-body p { 
  margin-bottom: 20px; 
}

.article-body blockquote {
  margin: 40px 0; 
  padding: 30px;
  background: #f5f5f5; 
  border-left: 5px solid #000;
  border-radius: 0;
  font-size: 1.2rem; 
  font-style: italic; 
  color: #000;
}

.article-body cite {
  display: block; 
  margin-top: 15px;
  font-size: .9rem; 
  font-style: normal; 
  color: #666;
}

/* Tags */
.article-tags {
  margin: 50px 0; 
  padding: 30px 0;
  border-top: 2px solid #000;
}

.article-tags h4 {
  font-size: 1rem; 
  font-weight: 800; 
  margin-bottom: 15px;
  text-transform: uppercase; 
  letter-spacing: 2px;
  color: #000;
}

.tags { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
}

.tag {
  padding: 8px 15px; 
  background: #fff;
  border: 2px solid #000;
  border-radius: 0; /* Sin bordes redondeados */
  font-size: .85rem; 
  font-weight: 600;
  color: #000; 
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all .3s ease;
}

.tag:hover { 
  background: #000; 
  color: #fff; 
}

/* Related */
.related-articles {
  margin-top: 60px; 
  padding-top: 40px; 
  border-top: 2px solid #000;
}

.related-articles h3 {
  font-size: 2rem; 
  font-weight: 800; 
  margin-bottom: 30px;
  text-transform: uppercase; 
  letter-spacing: 2px;
  color: #000;
}

.related-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.related-post {
  background: #fff; 
  border: 2px solid #000;
  border-radius: 0; /* Sin bordes redondeados */
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: none;
}

.related-post:hover { 
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.related-post img { 
  width: 100%; 
  height: 180px; 
  object-fit: cover;
  display: block;
}

.related-content { 
  padding: 20px; 
}

.related-category {
  display: inline-block; 
  padding: 6px 12px; 
  background: #000; 
  color: #fff;
  font-size: 10px; 
  font-weight: 800; 
  letter-spacing: 1px; 
  text-transform: uppercase;
  margin-bottom: 12px; 
  border-radius: 0; /* Sin bordes redondeados */
}

.related-content h4 { 
  font-size: 1.1rem; 
  font-weight: 800; 
  margin-bottom: 10px; 
  line-height: 1.3;
  color: #000;
}

.related-date { 
  font-size: .8rem; 
  color: #666; 
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .article-page {
    margin-top: 60px;
  }
  
  .article-title { 
    font-size: 2.2rem; 
  }
  
  .article-subtitle { 
    font-size: 1.1rem; 
  }
  
  .article-meta { 
    flex-direction: column; 
    gap: 15px; 
    align-items: flex-start; 
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .article-page { 
    padding: 30px 0 60px;
    margin-top: 55px;
  }
  
  .article-title { 
    font-size: 1.9rem; 
  }
  
  .article-body { 
    font-size: 1rem; 
  }
  
  .article-body h2 { 
    font-size: 1.6rem; 
  }
  
  .share-btn {
    width: 100%;
    text-align: center;
  }
}