/* ==========================================================
   Blog Post — BBVA vs Santander vs Banorte
   Estilos específicos para este artículo
   ========================================================== */

.article-kicker {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(25,28,70,0.15);
  flex-wrap: wrap;
  font-weight: 600;
}
.article-meta .sep { font-weight: 400; opacity: 0.5; }

.lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-primary);
  margin-bottom: 32px;
}

.tz-blog-body h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  position: relative;
  padding-left: 16px;
}
.tz-blog-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.tz-blog-body h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-weight: 700;
}

/* Numbered list */
.numbered {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px 0;
}
.numbered li {
  counter-increment: step;
  position: relative;
  padding-left: 44px;
  margin-bottom: 14px;
  line-height: 1.65;
}
.numbered li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Checklist */
.checks-trezum {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px 0;
}
.checks-trezum li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  line-height: 1.65;
}
.checks-trezum li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5 8.5 6.5 11.5 12.5 5'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Pull quote */
.pull-quote {
  border-left: 3px solid var(--color-accent);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-primary);
  font-weight: 700;
}

/* Callout box */
.callout {
  background: #F5F5FA;
  border-radius: 12px;
  padding: 28px 28px 24px;
  margin: 32px 0;
  border: 1px solid rgba(25,28,70,0.15);
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, #D05C46, #191C46);
}
.callout h4 {
  font-size: 12px;
  color: var(--color-accent);
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.callout p:last-child { margin-bottom: 0; }
.callout p { color: var(--color-primary); }

/* Comparison table */
.compare-wrap {
  margin: 32px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}
table.compare {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 15px;
}
table.compare th,
table.compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(25,28,70,0.15);
  vertical-align: top;
}
table.compare thead th {
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  font-size: 14px;
}
table.compare tbody tr:nth-child(even) {
  background: #F5F5FA;
}
table.compare td:first-child {
  font-weight: 600;
  color: var(--color-primary);
}

/* Bank section */
.bank-section {
  padding: 28px;
  background: #F5F5FA;
  border-radius: 12px;
  margin: 24px 0;
  border-left: 3px solid var(--color-accent);
}
.bank-section h3 {
  margin-top: 0;
  font-size: 22px;
}
.bank-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.bank-meta-item h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: 6px;
  font-weight: 700;
  font-family: var(--font-family);
}
.bank-meta-item p {
  font-size: 15px;
  margin: 0;
  color: var(--color-primary);
}

/* CTA block */
.cta-block {
  background: var(--color-primary);
  color: white;
  padding: 48px 32px;
  border-radius: 20px;
  margin: 56px 0 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, #D05C46, #191C46);
}
.cta-block h3 {
  color: white;
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 800;
}
.cta-block p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  font-size: 17px;
}
.cta-button {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(208,92,70,0.3);
}
.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(208,92,70,0.4);
}

/* Disclaimer footer */
.article-footer {
  margin-top: 64px;
  padding: 32px;
  background: var(--color-primary);
  color: rgba(255,255,255,0.75);
  border-radius: 20px;
  font-size: 13px;
  line-height: 1.7;
  position: relative;
  overflow: hidden;
}
.article-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, #D05C46, #191C46);
}
.article-footer strong { color: white; font-weight: 700; }
.article-footer p + p { margin-top: 16px; }

/* Related posts */
.related-posts {
  margin: 48px 0 0;
  padding: 28px;
  background: #F5F5FA;
  border-radius: 12px;
  border: 1px solid rgba(25,28,70,0.15);
}
.related-posts h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-weight: 700;
}
.related-posts a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 1px;
}
.related-posts a:hover { color: var(--color-accent); }

/* Mobile */
@media (max-width: 640px) {
  .lead { font-size: 18px; }
  .tz-blog-body h2 { font-size: 24px; margin-top: 40px; padding-left: 14px; }
  .bank-meta { grid-template-columns: 1fr; }
  .cta-block { padding: 36px 24px; }
  .cta-block h3 { font-size: 22px; }
  .pull-quote { font-size: 18px; padding-left: 20px; }
  .article-footer { padding: 24px; }
}
