/* ========================================
   BLOG & ARTICLE STYLES - DP Estudio · Tienda Online
   ======================================== */

:root {
    --bg-dark: #0c0a09;
    --bg-darker: #070604;
    --bg-card: rgba(255,255,255,0.04);
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: rgba(255,255,255,0.10);
    --primary: #d4a017;
    --secondary: #f4c430;
    --gradient-primary: linear-gradient(135deg, #d4a017, #fbbf24);
}

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

img,
video,
iframe,
svg {
    max-width: 100%;
}

.blog-article,
.article-content,
.article-main,
.article-body,
.container {
    max-width: 100%;
}

.article-body img,
.article-main img,
.blog-card img {
    max-width: 100%;
    height: auto;
}

.article-body p,
.article-body li,
.article-body td,
.article-body th,
.blog-card,
.hub-card {
    overflow-wrap: anywhere;
}

/* --- BLOG INDEX STYLES --- */

/* Blog Hero */
.blog-hero {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Blog Content */
.blog-content {
    padding: 60px 0 100px;
    background: var(--bg-dark);
}

/* Featured Article */
.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.blog-featured:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15);
    transform: translateY(-4px);
}

.featured-image {
    position: relative;
    min-height: 350px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-featured:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.featured-content h2 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-content h2 a:hover {
    color: var(--primary);
}

.featured-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Article Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.article-meta .category {
    background: rgba(168, 85, 247, 0.15);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
}

.article-meta .date,
.article-meta .read-time {
    color: var(--text-muted);
}

.article-meta i {
    margin-right: 4px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Blog Card */
.blog-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.12);
    transform: translateY(-6px);
}

.card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .card-image img {
    transform: scale(1.08);
}

.card-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10, 10, 15, 0.8);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.card-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-content h3 a:hover {
    color: var(--primary);
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.card-content .article-meta {
    font-size: 0.8rem;
    gap: 12px;
    margin-bottom: 8px;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.pagination-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-current {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Newsletter */
.blog-newsletter {
    background: var(--gradient-primary);
    padding: 40px 50px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.blog-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    font-size: 2.5rem;
    opacity: 0.9;
}

.newsletter-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.newsletter-text p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 0.95rem;
    width: 260px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
}

.newsletter-form .btn {
    background: white;
    color: var(--primary);
    font-weight: 600;
    border: none;
    white-space: nowrap;
}

.newsletter-form .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* --- ARTICLE STYLES --- */

/* Article Header */
.article-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right center, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.breadcrumb span {
    color: var(--primary);
}

/* Article Meta Header */
.article-meta-header {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.article-meta-header .category {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-meta-header .date,
.article-meta-header .read-time {
    color: var(--text-secondary);
}

.article-meta-header i {
    margin-right: 5px;
}

/* Article Title */
.article-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
    max-width: 900px;
}

/* Article Excerpt */
.article-excerpt {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 750px;
    margin-bottom: 30px;
}

/* Author Card */
.author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    max-width: 600px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(168, 85, 247, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Article Content */
.article-content {
    padding: 60px 0 80px;
    background: var(--bg-dark);
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

/* Featured Image (Article) */
/* Note: 'featured-image' class is also used in blog card, but article specific styles might conflict if not scoped or if identical. 
   In blog card: min-height 350px.
   In article: height 400px fixed.
   Let's check usage.
   In article.css:
   .featured-image { width: 100%; height: 400px; ... margin-bottom: 40px; }
   
   In blog.css:
   .featured-image { position: relative; min-height: 350px; ... }

   We should be careful. 
   The article page uses <div class="featured-image"><img...></div> inside .article-main.
   The blog index uses <div class="featured-image"> inside .blog-featured.
   
   I will adapt the article's scoped selector to be more specific if possible or just let them cascade. 
   Actually, the article one sets a specific height. 
   Let's make the article one specific to .article-wrapper .featured-image or .article-main .featured-image
*/
.article-main .featured-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    min-height: 0;
    /* Reset min-height from blog card if needed */
}

.article-main .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Body */
.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-body .intro {
    font-size: 1.2rem;
    color: var(--text-primary);
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 30px;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 50px 0 20px;
    padding-top: 20px;
}

.article-body h2:first-of-type {
    margin-top: 30px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 12px;
}

.article-body strong {
    color: var(--text-primary);
}

/* Table of Contents */
.table-of-contents {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 40px;
}

.table-of-contents h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-of-contents h4 i {
    color: var(--primary);
}

.table-of-contents ol {
    padding-left: 20px;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: var(--primary);
}

/* Info Box */
.info-box {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 30px 0;
}

.info-box h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box p {
    margin: 0;
    color: var(--text-primary);
}

/* Warning Box */
.warning-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 30px 0;
}

.warning-box h4 {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warning-box p {
    margin: 0;
    color: var(--text-primary);
}

/* Comparison Table */
.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
    max-width: 100%;
}

.comparison-table table,
table.comparison-table,
.article-body table,
.compare-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td,
.article-body table th,
.article-body table td,
.compare-table th,
.compare-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th,
.article-body table th,
.compare-table th {
    background: rgba(168, 85, 247, 0.1);
    color: var(--text-primary);
    font-weight: 600;
}

.comparison-table tr.highlight {
    background: rgba(168, 85, 247, 0.08);
}

.comparison-table tr.highlight td,
.comparison-table td.highlight,
.comparison-table td.highlight strong {
    color: var(--primary);
}

.comparison-table td.highlight {
    background: rgba(212, 160, 23, 0.08);
}

/* Article compare tables — evita conflicto con landing-sections.css */
.article-compare-scroll {
    margin: 30px 0;
    max-width: 100%;
    width: 100%;
    border: 1px solid rgba(212, 160, 23, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.article-compare-scroll table {
    width: 100%;
    min-width: 540px;
    border-collapse: collapse;
    background: transparent;
}

.article-compare-scroll th,
.article-compare-scroll td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    vertical-align: top;
    line-height: 1.45;
}

.article-compare-scroll thead th {
    background: rgba(212, 160, 23, 0.14);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.article-compare-scroll tbody tr:last-child td {
    border-bottom: none;
}

.article-compare-scroll tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.article-compare-scroll tbody td:first-child {
    color: var(--text-primary);
    font-weight: 600;
    min-width: 120px;
}

.article-compare-scroll tbody td:nth-child(3) {
    color: var(--text-primary);
}

.article-compare-scroll td.highlight,
.article-compare-scroll td.highlight strong {
    color: var(--primary);
    font-weight: 700;
}

.article-compare-scroll td.highlight {
    background: rgba(212, 160, 23, 0.07);
}

.article-compare-scroll-hint {
    display: none;
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.article-main,
.article-wrapper,
.article-content .container {
    min-width: 0;
    max-width: 100%;
}

.cta-box__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
}

/* Card Grid (inside article) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.mini-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.mini-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 1.3rem;
}

.mini-card h5 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.mini-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Numbered List */
.numbered-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
}

.numbered-list>li {
    counter-increment: item;
    padding-left: 50px;
    position: relative;
    margin-bottom: 30px;
}

.numbered-list>li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.numbered-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.numbered-list p {
    margin: 0;
}

/* CTA Box */
.cta-box {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 24px;
    position: relative;
}

.cta-box .btn {
    background: white;
    color: var(--primary);
    position: relative;
}

.cta-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Article Footer */
.article-footer {
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
}

.tag-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tag {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.share-section {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.share-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.share-buttons-large {
    display: flex;
    gap: 10px;
}

.share-btn-lg {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn-lg.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.share-btn-lg.whatsapp:hover {
    background: #25d366;
    color: white;
}

.share-btn-lg.facebook {
    background: rgba(66, 103, 178, 0.15);
    color: #4267b2;
}

.share-btn-lg.facebook:hover {
    background: #4267b2;
    color: white;
}

.share-btn-lg.twitter {
    background: rgba(29, 161, 242, 0.15);
    color: #1da1f2;
}

.share-btn-lg.twitter:hover {
    background: #1da1f2;
    color: white;
}

/* Sidebar */
.article-sidebar {
    position: relative;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
}

.sidebar-card.sticky {
    position: sticky;
    top: 100px;
}

.sidebar-card h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.related-articles {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.related-articles li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.related-articles li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-articles a {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.related-articles a:hover {
    transform: translateX(4px);
}

.related-title {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.4;
}

.related-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sidebar-cta {
    background: rgba(168, 85, 247, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.sidebar-cta h5 {
    color: var(--text-primary);
    margin-bottom: 6px;
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ========================================
   BLOG THEME HUBS (/blog/tema/*)
   ======================================== */

.hub-page-body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
}

.hub-page {
    background: var(--bg-dark);
}

.hub-hero {
    padding: 120px 0 40px;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
}

.hub-hero--visual {
    padding: 110px 0 48px;
}

.hub-hero__grid {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 42%);
    gap: 40px;
    align-items: center;
}

.hub-hero__copy {
    min-width: 0;
}

.hub-hero__figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.hub-hero__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.hub-highlights {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hub-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.hub-highlights i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.hub-hero .breadcrumb {
    margin-bottom: 20px;
}

.hub-hero__badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.35);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.hub-hero__title {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin: 0 0 16px;
    max-width: 720px;
}

.hub-hero__intro {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 0 20px;
    max-width: 640px;
}

.hub-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hub-stat {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 8px;
}

.hub-page .container {
    width: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.hub-body {
    padding: 40px 20px 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hub-section {
    margin-bottom: 48px;
}

.hub-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hub-section-title i {
    color: var(--primary);
    font-size: 0.95rem;
}

.hub-section-lead {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 20px;
    max-width: 520px;
}

.hub-nav__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr));
    gap: 10px;
}

.hub-nav__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.hub-nav__item i {
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
    width: 1.1rem;
    text-align: center;
}

.hub-nav__item:hover {
    border-color: rgba(212, 160, 23, 0.45);
    color: var(--text-primary);
}

.hub-nav__item--active {
    border-color: var(--primary);
    background: rgba(212, 160, 23, 0.1);
    color: var(--text-primary);
}

.hub-featured__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: 16px;
}

.hub-featured__card {
    text-decoration: none;
    color: inherit;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.hub-featured__card--media {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
    background: rgba(212, 160, 23, 0.06);
    border: 1px solid rgba(212, 160, 23, 0.28);
    border-radius: 14px;
}

.hub-featured__card--media:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.hub-featured__media {
    display: block;
    height: 140px;
    overflow: hidden;
    background: #1c1917;
    flex-shrink: 0;
}

.hub-featured__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hub-featured__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px 18px;
    flex: 1;
    min-width: 0;
}

.hub-featured__num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: #0c0a09;
    background: var(--gradient-primary);
    border-radius: 8px;
}

.hub-featured__title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
}

.hub-featured__hook {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.hub-featured__arrow,
.hub-featured__body {
    display: none;
}

.hub-card--media {
    padding: 0;
    overflow: hidden;
}

.hub-card__media-link {
    display: block;
    text-decoration: none;
}

.hub-card__thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.hub-card__body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hub-card__region {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 8px;
}

.hub-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-top: auto;
    padding-top: 12px;
}

.hub-card__secondary {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
}

.hub-card__secondary:hover {
    color: var(--primary);
}

.hub-grid--media {
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 20px;
}

.hub-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.hub-pricing__card {
    padding: 20px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
}

.hub-pricing__card h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: var(--text-primary);
}

.hub-pricing__card p {
    margin: 0 0 16px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.hub-pricing__card--accent {
    border-color: rgba(212, 160, 23, 0.35);
    background: rgba(212, 160, 23, 0.06);
}

.hub-quick__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: 12px;
}

.hub-quick__item {
    padding: 16px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.hub-quick__situation {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.hub-quick__rec {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.hub-quick__rec a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.hub-quick__rec a:hover {
    text-decoration: underline;
}

.hub-route {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hub-route__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.hub-route__day {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(212, 160, 23, 0.12);
    padding: 4px 8px;
    border-radius: 6px;
}

.hub-route__item a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.hub-route__item a:hover {
    text-decoration: underline;
}

.hub-tip {
    padding: 18px 20px;
    background: var(--bg-card);
    border-left: 3px solid var(--primary);
    border-radius: 0 10px 10px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hub-tip a {
    color: var(--primary);
    font-weight: 600;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 16px;
    margin: 0;
}

.hub-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    min-width: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hub-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hub-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
}

.hub-card__title a {
    color: var(--text-primary);
    text-decoration: none;
}

.hub-card__title a:hover {
    color: var(--primary);
}

.hub-card__excerpt {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hub-card__link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-top: auto;
}

.hub-card__link:hover {
    text-decoration: underline;
}

.hub-card--rubro .hub-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.hub-card--rubro .hub-card__actions a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.hub-card--rubro .hub-card__actions a.is-muted {
    color: var(--text-muted);
    font-weight: 500;
}

.hub-cta {
    margin-top: 56px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    text-align: center;
}

.hub-cta__inner {
    position: relative;
    padding: 40px 28px 44px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 160, 23, 0.14), transparent 70%),
        linear-gradient(145deg, rgba(212, 160, 23, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.hub-cta__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a017' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.hub-cta__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    color: #0c0a09;
    border-radius: 14px;
    font-size: 1.25rem;
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}

.hub-cta__title {
    position: relative;
    font-size: clamp(1.25rem, 3vw, 1.55rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 10px;
}

.hub-cta__text {
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0 auto 24px;
    max-width: 480px;
    line-height: 1.6;
}

.hub-cta__buttons {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hub-cta .btn-primary {
    color: #0c0a09 !important;
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.35);
}

.hub-cta .btn-primary:hover {
    color: #0c0a09 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 160, 23, 0.45);
}

.hub-cta .btn-outline {
    color: #f8fafc !important;
    border-color: rgba(212, 160, 23, 0.55);
    background: rgba(255, 255, 255, 0.03);
}

.hub-cta .btn-outline:hover {
    color: var(--primary-light) !important;
    border-color: var(--primary);
    background: rgba(212, 160, 23, 0.1);
}

.hub-pricing .btn-primary {
    color: #0c0a09 !important;
}

.hub-pricing .btn-outline {
    color: #f8fafc !important;
}

/* Footer del sitio público: no heredar dorado de links del hub */
.hub-page-body .footer .footer-links a,
.hub-page-body .footer-bottom a {
    color: var(--gray-400, #a8a29e);
    text-decoration: none;
}

.hub-page-body .footer .footer-links a:hover {
    color: var(--primary-light, #f4c430);
}

.hub-page-body .footer-bottom p {
    color: var(--gray-600, #78716c);
}

/* Aislar nav/header/footer del scope de enlaces del hub */
.hub-page-body .navbar .nav-link,
.hub-page-body .navbar .nav-dropdown__toggle {
    color: var(--gray-300, #cbd5e1);
}

.hub-page-body .navbar .nav-link.active,
.hub-page-body .navbar .nav-dropdown__toggle.active,
.hub-page-body .navbar .nav-dropdown.open .nav-dropdown__toggle {
    color: var(--primary-light, #f4c430);
}

.hub-page-body .navbar .nav-dropdown__link {
    color: #e5e7eb;
}

.hub-page-body .navbar .btn-ghost {
    color: var(--gray-300, #cbd5e1);
}

.hub-page-body .navbar .btn-primary {
    color: #0c0a09 !important;
}

.hub-page-body .nav-mobile-buttons .btn-primary {
    color: #0c0a09 !important;
}

.hub-page-body .nav-mobile-buttons .btn-ghost {
    color: #f8fafc !important;
}

/* Mejoras visuales hub */
.hub-hero--visual {
    position: relative;
    overflow: hidden;
}

.hub-hero--visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 80% 20%, rgba(212, 160, 23, 0.08), transparent 60%);
    pointer-events: none;
}

.hub-hero__figure {
    position: relative;
    z-index: 1;
}

.hub-hero__copy {
    position: relative;
    z-index: 1;
}

.hub-nav {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.hub-nav__item {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hub-nav__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hub-card--media {
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hub-card--media:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hub-section + .hub-section {
    padding-top: 8px;
}

.hub-pricing__card {
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.hub-pricing__card:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hub-cta__inner {
        padding: 32px 20px 36px;
    }

    .hub-cta__buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .hub-footer__nav {
        gap: 10px 14px;
    }
}

/* More Articles Section */
.more-articles {
    background: var(--bg-darker);
    padding: 60px 0 80px;
}

.more-articles h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.more-articles .blog-grid {
    margin-bottom: 0;
}

/* Responsive (Consolidated) */
@media (max-width: 1024px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 280px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
    }

    .newsletter-content {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .article-wrapper {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        display: none;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .hub-grid,
    .hub-nav__grid,
    .hub-featured__grid,
    .hub-quick__grid,
    .feat-grid,
    .steps-3 {
        grid-template-columns: 1fr !important;
    }

    .hub-hero {
        padding-top: 110px;
    }

    .hub-hero__grid {
        grid-template-columns: 1fr;
    }

    .hub-hero__figure {
        order: -1;
        max-height: 220px;
    }

    .hub-hero__img {
        max-height: 220px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 140px 0 50px;
    }

    .blog-content {
        padding: 40px 0 80px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .featured-content {
        padding: 28px;
    }

    .featured-content h2 {
        font-size: 1.4rem;
    }

    .card-image {
        height: 200px;
    }

    .article-meta {
        gap: 10px;
    }

    .article-header {
        padding: 120px 0 50px;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-excerpt {
        font-size: 1.1rem;
    }

    .author-card {
        flex-wrap: wrap;
    }

    .share-buttons {
        width: 100%;
        justify-content: flex-start;
        margin-top: 10px;
    }

    /* Article featured image specific override if needed */
    .article-main .featured-image {
        height: 250px;
    }

    .article-body {
        font-size: 1rem;
    }

    .article-body h2 {
        font-size: 1.4rem;
    }

    .cta-box {
        padding: 30px 24px;
    }

    .cta-box .btn,
    .article-body .btn,
    .hub-cta .btn,
    .hub-pricing .btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .article-body a.btn[style*="margin-left"],
    .blog-article a.btn[style*="margin-left"] {
        margin-left: 0 !important;
    }

    .cta-box__actions,
    .cta-box > div,
    .article-body [style*="display:flex"] {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .article-content {
        padding: 40px 0 60px;
    }

    .article-body .intro {
        font-size: 1.05rem;
        padding: 16px;
    }

    .comparison-table {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table table,
    table.comparison-table,
    .article-body .comparison-table table {
        display: table;
        width: max-content;
        min-width: 480px;
    }

    .comparison-table th,
    .comparison-table td,
    .article-body table th,
    .article-body table td {
        padding: 10px 12px;
        font-size: 13px;
        line-height: 1.4;
        vertical-align: top;
    }

    .info-box {
        padding: 18px;
    }

    .info-box h4 {
        font-size: 0.95rem;
    }

    .article-compare-scroll {
        border-radius: 14px;
    }

    .article-compare-scroll table {
        min-width: 500px;
    }

    .article-compare-scroll th,
    .article-compare-scroll td {
        padding: 11px 12px;
        font-size: 13px;
    }

    .article-compare-scroll thead th:first-child,
    .article-compare-scroll tbody td:first-child {
        position: sticky;
        left: 0;
        z-index: 2;
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.25);
    }

    .article-compare-scroll thead th:first-child {
        background: #1a1508;
        z-index: 3;
    }

    .article-compare-scroll tbody td:first-child {
        background: #0c0a09;
    }

    .article-compare-scroll tbody tr:nth-child(even) td:first-child {
        background: #100e0c;
    }

    .article-compare-scroll-hint {
        display: block;
    }

    .table-of-contents {
        padding: 20px;
        overflow-wrap: anywhere;
    }

    .article-body h2 {
        overflow-wrap: anywhere;
    }

    .share-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .share-buttons-large {
        flex-wrap: wrap;
    }

    .more-articles .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding-top: 110px;
    }

    .article-header h1 {
        font-size: 1.55rem;
    }

    .article-meta-header {
        gap: 10px;
        font-size: 0.82rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
        gap: 8px;
    }

    .article-compare-scroll th,
    .article-compare-scroll td {
        padding: 10px 10px;
        font-size: 12px;
    }

    .article-compare-scroll tbody td:first-child {
        min-width: 100px;
        max-width: 120px;
    }
}