/* -
   Artículo individual
   - */
.article{
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 6rem;
}

.article__header{
  padding: 9rem 1.5rem 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,162,74,.07), transparent 70%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  text-align: center;
}
.article__header-inner{
  max-width: 720px;
  margin: 0 auto;
}
.article__back{
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  transition: color .25s;
}
.article__back:hover{ color: var(--gold-light); }
.article__header h1{
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 1rem 0;
}
.article__lead{
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.article__meta{
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  font-size: .82rem;
  color: var(--gold);
}
.article__meta i{ margin-right: .3rem; }

.article__body{
  padding: 3.5rem 1.5rem;
}
.article__body h2{
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}
.article__body h2:first-child{ margin-top: 0; }
.article__body p{
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}
.article__body strong{ color: var(--text); }

.article__highlight{
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--gold-dim);
  border-radius: 0 10px 10px 0;
  padding: 1.2rem 1.4rem;
  margin: 1.8rem 0;
}
.article__highlight--gold{ border-left-color: var(--gold); }
.article__highlight i{
  color: var(--gold);
  margin-top: .2rem;
  flex-shrink: 0;
}
.article__highlight p{ margin: 0; }

.article__table{
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  overflow: hidden;
  margin: 1.5rem 0;
}
.article__table-row{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 1rem;
  padding: .85rem 1.1rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: .9rem;
}
.article__table-row:last-child{ border-bottom: none; }
.article__table-head{
  background: var(--surface-2);
  font-weight: 600;
  color: var(--gold-light);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.article__steps{
  display: flex; flex-direction: column; gap: 1rem;
  margin: 1.5rem 0;
}
.article__step{
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
}
.article__step-num{
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
}
.article__step strong{ display: block; margin-bottom: .3rem; color: var(--text); }
.article__step p{ margin: 0; font-size: .9rem; }

.article__list{
  list-style: none;
  display: flex; flex-direction: column; gap: .6rem;
  margin: 1rem 0 1.5rem;
}
.article__list li{
  display: flex; gap: .8rem; align-items: flex-start;
  font-size: .95rem;
  color: var(--muted);
}
.article__list i{
  color: var(--gold);
  margin-top: .2rem;
  flex-shrink: 0;
  width: 1rem;
}
.article__list .fa-triangle-exclamation{ color: #e8a838; }

.article__cta{
  margin: 0 1.5rem 3rem;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.article__cta h3{
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: .6rem;
}
.article__cta p{
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.article__related{
  padding: 0 1.5rem;
}
.article__related h3{
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}