.articulo-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 9rem 2rem 6rem;
}

.articulo-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.articulo-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin: 1rem 0;
}

.articulo-meta {
  color: rgba(245,245,240,0.3);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.articulo-body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin: 2.5rem 0 1rem;
}

.articulo-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  margin: 2rem 0 0.8rem;
}

.articulo-body p {
  color: rgba(245,245,240,0.65);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.articulo-body ul,
.articulo-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.articulo-body ul li,
.articulo-body ol li {
  color: rgba(245,245,240,0.65);
  font-size: 0.97rem;
  line-height: 1.7;
}

.articulo-body ul li::marker {
  color: var(--orange);
}

.articulo-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.articulo-body a:hover {
  opacity: 0.75;
}

.articulo-body strong {
  color: var(--white);
  font-weight: 600;
}

.articulo-destacado {
  background: rgba(255,122,0,0.07);
  border-left: 3px solid var(--orange);
  padding: 1.5rem 1.8rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.articulo-destacado p {
  margin: 0;
  color: rgba(245,245,240,0.8);
  font-style: italic;
}

/* CTA FINAL */
.articulo-cta {
  background: var(--dark2);
  border: 1px solid rgba(255,122,0,0.2);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
}

.articulo-cta h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.articulo-cta p {
  color: rgba(245,245,240,0.5);
  margin-bottom: 2rem;
}

.articulo-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--orange);
  color: #000 !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.articulo-cta .btn-primary:hover {
  box-shadow: 0 0 25px rgba(255,122,0,0.5);
  transform: translateY(-2px);
  color: #000 !important;
  opacity: 1;
}

.articulo-cta .btn-primary::before {
  display: none;
}

.articulo-cta .btn-primary span {
  color: #000 !important;
  position: static;
  z-index: auto;
}

@media (max-width: 768px) {
  .articulo-wrap { padding: 7rem 1.5rem 4rem; }
  .articulo-cta { padding: 2rem 1.5rem; }
}

body {
  cursor: auto !important;
}

