/* ===== BLOG HEADER ===== */
.blog-header {
  padding: 56px 0 40px;
  background: #F8F6F1;
}
.blog-header h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
}
.blog-header-sub {
  font-size: 18px;
  color: #5F5E5A;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #5F5E5A;
  margin-bottom: 24px;
}
.breadcrumb a {
  color: #BA7517;
}
.breadcrumb a:hover { text-decoration: underline; }

/* ===== BLOG LISTADO ===== */
.blog-listado {
  padding: 48px 0 80px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.2s;
}
.blog-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.blog-card-body {
  padding: 28px;
}
.blog-card-date {
  display: block;
  font-size: 13px;
  color: #5F5E5A;
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-card-title a {
  color: #2C2C2A;
}
.blog-card-title a:hover { color: #BA7517; }
.blog-card-desc {
  font-size: 15px;
  color: #5F5E5A;
  margin-bottom: 20px;
  line-height: 1.5;
}
.blog-card-link {
  font-size: 15px;
  font-weight: 500;
  color: #BA7517;
}
.blog-card-link:hover { text-decoration: underline; }

/* ===== ARTÍCULO ===== */
.article-wrap {
  padding: 48px 0 80px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.article-date {
  font-size: 14px;
  color: #5F5E5A;
}
.article-body {
  max-width: 720px;
}
.article-body h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}
.article-body h2 {
  font-size: 26px;
  font-weight: 500;
  margin-top: 44px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.article-body h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 28px;
  margin-bottom: 12px;
}
.article-body p {
  margin-bottom: 18px;
  line-height: 1.75;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.article-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.article-body strong { font-weight: 500; }

/* Tabla de precios */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
  font-size: 16px;
}
.price-table th {
  background: #2C2C2A;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 500;
}
.price-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.price-table tr:nth-child(even) td { background: #f4f3f0; }

/* CTA box artículo */
.article-cta {
  background: #FAEEDA;
  border: 1px solid #FAC775;
  border-radius: 10px;
  padding: 32px 36px;
  margin-top: 48px;
  max-width: 720px;
}
.article-cta p {
  font-size: 19px;
  font-weight: 500;
  color: #2C2C2A;
  margin-bottom: 20px !important;
}
.article-cta .btn-wa-hero {
  font-size: 16px;
  padding: 13px 24px;
}

/* Navegación entre artículos */
.article-nav {
  display: flex;
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.1);
  max-width: 720px;
}
.article-nav a {
  font-size: 15px;
  color: #BA7517;
  font-weight: 500;
}
.article-nav a:hover { text-decoration: underline; }
.article-nav-label {
  display: block;
  font-size: 12px;
  color: #5F5E5A;
  font-weight: 400;
  margin-bottom: 4px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .blog-header h1 { font-size: 28px; }
  .blog-header-sub { font-size: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-body h1 { font-size: 28px; }
  .article-body h2 { font-size: 22px; }
  .article-cta { padding: 24px 20px; }
  .article-cta p { font-size: 17px; }
  .price-table { font-size: 14px; }
  .price-table th, .price-table td { padding: 9px 10px; }
}
