.article-container {
  max-width: 900px;
  margin: 120px auto 60px auto;
  padding: 0 20px;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  line-height: 1.8;
}

/* Título */
.article-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
  text-align: center;
}

/* Metadata */
.article-meta {
  text-align: center;
  color: #bbb;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* Párrafos */
.article-section {
  margin-bottom: 25px;
}
.article-paragraph {
  text-align: justify;
  font-size: 1.05rem;
  color: #ddd;
}
.article-section-img {
  text-align: right;
  margin: 20px 0;
  display: flex;
  flex-direction: row;
}

/* Imagen destacada */
.article-featured {
  margin: 20px 0 40px 0;
  text-align: center;
}
.article-featured img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 10px;
}
.article-featured figcaption {
  color: #999;
  font-size: 0.85rem;
  margin-top: 8px;
}

/* Imagen intermedia */
.article-inline {
  margin: 40px 0;
  text-align: center;
}
.article-inline img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
.article-inline2 {
  text-align: center;
}
.article-inline2 img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 750px) {
  .article-inline2 img {
    width: 100%;
    height: 100%;
  }
  .article-section-img {
    flex-direction: column;
    align-items: center;
  }
  .article-inline2 {
    margin: 0;
  }
}
.article-inline, .article-inline2 figcaption {
  color: #aaa;
  font-size: 0.85rem;
  margin-top: 6px;
}

/* Cita destacada */
.article-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: #ff3333;
  border-left: 4px solid #ff3333;
  padding-left: 15px;
  margin: 40px 0;
}

/* Extra elements (listas, links, etc.) */
.article-extra {
  margin-top: 30px;
  color: #ccc;
}

/* Newsletter placeholder */
.newsletter-placeholder {
  margin-top: 50px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(0,0,0,0.7);
  text-align: center;
}
.newsletter-placeholder h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.newsletter-placeholder p {
  color: #aaa;
  font-size: 0.95rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .article-title {
    font-size: 2rem;
  }
  .article-paragraph {
    font-size: 1rem;
  }
}
