/* --------------------------------------------------
  Main article content
-------------------------------------------------- */
.site-main.article {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.article-content {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  padding: 2.5rem;
  line-height: 1.75;
  color: #333;
}

/* Tipografía y jerarquía */
.article-content h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.article-content h2 
{
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: black;
  border-left: 4px solid #F54D29;
  padding-left: 0.75rem;
}

.article-content h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #005ea3;
}

/* Párrafos */
.article-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: #444;
}

/* Intro */
.article-content .intro {
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
}

/* Listas */
.article-content ul,
.article-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-content li {
  margin-bottom: 0.75rem;
}

/* CTA box */
.cta-box {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #F54D29 0%, #bc5b45 100%);
  color: #fff;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.cta-box h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}

.cta-box p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: white;
}

/* Botón CTA */
.cta-box .btn-card {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  background: white;
  color: rgba(50, 97, 225, 0.763);
  transition: background 0.3s ease;
}


/* Responsivo */
@media (max-width: 768px) {
  .article-content {
    padding: 2rem 1rem;
  }

  .article-content h1 {
    font-size: 2rem;
  }

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

  .cta-box h3 {
    font-size: 1.3rem;
  }
}
