/* Blog hero */
.blog-hero {
    background: #194278;
    background: linear-gradient(135deg, #194278 0%, #2a5fa8 100%);
    color: white;
}

.blog-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.blog-hero-sub {
    font-size: 1.1rem;
    opacity: 0.88;
    max-width: 560px;
}

/* Cards del blog */
.blog-card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.13);
}

.blog-card-coming {
    opacity: 0.72;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.93rem;
    color: #666;
    line-height: 1.6;
}

/* Badge de categoría */
.blog-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    background: #e8eef8;
    color: #194278;
    letter-spacing: 0.3px;
}

.blog-badge-muted {
    background: #f0f0f0;
    color: #888;
}

/* Artículo individual */
.article-hero {
    background: #194278;
    background: linear-gradient(135deg, #194278 0%, #2a5fa8 100%);
    color: white;
    padding: 56px 0 40px;
}

.article-hero .article-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    margin-bottom: 16px;
}

.article-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 14px;
}

.article-hero .article-meta {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Cuerpo del artículo */
.article-body {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.02rem;
    color: #333;
    line-height: 1.78;
}

.article-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #194278;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.article-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2a4070;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-body p {
    margin-bottom: 1rem;
}

.article-body ul,
.article-body ol {
    padding-left: 1.4rem;
    margin-bottom: 1.1rem;
}

.article-body li {
    margin-bottom: 0.45rem;
}

.article-body .highlight-box {
    background: #e8eef8;
    border-left: 4px solid #194278;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 1.5rem 0;
    color: #194278;
    font-weight: 500;
}

/* CTA al final del artículo */
.article-cta {
    background: linear-gradient(135deg, #194278 0%, #2a5fa8 100%);
    color: white;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    margin-top: 2.5rem;
}

.article-cta h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.article-cta p {
    opacity: 0.88;
    margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb-link {
    color: #194278;
    text-decoration: none;
    font-size: 0.9rem;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

/* Tabla comparativa */
.tabla-coberturas th {
    background: #194278;
    color: white;
}

.tabla-coberturas td:first-child {
    font-weight: 600;
}

.check-si {
    color: #198754;
    font-weight: 700;
}

.check-no {
    color: #dc3545;
    font-weight: 700;
}
