/* ==========================================================================
   BLOG & ARTICLE STYLES - SIN DOLOR A LOS 60+
   ========================================================================== */

:root {
    --primary-blue: #2563eb;
    --primary-navy: #1e293b;
    --primary-dark: #0f172a;
    --primary-ice: #f0f7ff;
    
    --accent-orange: #ea580c;
    --accent-orange-hover: #c2410c;
    --accent-orange-light: #fff7ed;
    
    --accent-green: #16a34a;
    --accent-green-dark: #15803d;
    --accent-green-light: #f0fdf4;
    --accent-green-border: #bbf7d0;

    --accent-purple: #7c3aed;
    --accent-purple-light: #f5f3ff;
    --accent-purple-border: #ddd6fe;
    
    --text-main: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 28px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.05);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: #ffffff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Announcement */
.blog-topbar {
    background: var(--primary-dark);
    color: #cbd5e1;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9rem;
}

.blog-topbar a {
    color: #fde047;
    font-weight: 700;
    text-decoration: none;
    margin-left: 6px;
}

.blog-topbar a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Unified Header & Navigation (Standard across all project pages)
   ========================================================================== */
.header,
.blog-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 72, 131, 0.08);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.97);
}

.header-container,
.blog-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-link,
.blog-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img,
.blog-logo img {
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.logo-link:hover .logo-img,
.blog-logo:hover img {
    transform: scale(1.04);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    gap: 6px;
    white-space: nowrap;
}

.logo-text-blue {
    color: #004883;
}

.logo-text-green {
    color: #5cb82a;
}

.logo-text-orange {
    color: #f37021;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-nav,
.blog-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-nav-link,
.blog-nav a {
    color: var(--text-body, #0f172a);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.header-nav-link:hover,
.header-nav-link.active,
.blog-nav a:hover,
.blog-nav a.active {
    color: var(--primary-blue, #2563eb);
}

.nav-btn-manual {
    background: var(--accent-orange, #f37021);
    color: #ffffff !important;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.nav-btn-manual:hover {
    background: #e05e10;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(243, 112, 33, 0.25);
}

.social-links {
    display: flex;
    gap: 14px;
    align-items: center;
}

.social-icon-link {
    color: var(--text-muted, #64748b);
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-link:hover {
    transform: translateY(-2px);
}

#facebook-header:hover, #facebook-footer:hover {
    color: #1877f2;
}

#instagram-header:hover, #instagram-footer:hover {
    color: #e1306c;
}

#youtube-header:hover, #youtube-footer:hover {
    color: #ff0000;
}

.social-svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 992px) {
    .header-container,
    .blog-header-inner {
        flex-direction: column;
        gap: 12px;
    }
    .header-right {
        flex-direction: column;
        gap: 12px;
    }
    .header-nav,
    .blog-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

/* Hero Section in Blog Hub */
.blog-hero {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.blog-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: #1e40af;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.blog-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.25;
    margin-bottom: 15px;
}

.blog-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 30px;
}

/* Search and Filter Bar */
.blog-controls {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-search-box {
    position: relative;
    width: 100%;
}

.blog-search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-full);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    outline: none;
    transition: all 0.2s ease;
}

.blog-search-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.blog-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--text-muted);
    pointer-events: none;
}

.blog-filter-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-pill:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.filter-pill.active {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

/* Articles Grid */
.blog-grid-section {
    padding: 40px 0 80px;
    background: #ffffff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.article-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
}

.article-card-header {
    padding: 24px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.badge-exercise {
    background: var(--accent-green-light);
    color: var(--accent-green-dark);
    border: 1px solid var(--accent-green-border);
}

.badge-emotional {
    background: var(--accent-purple-light);
    color: var(--accent-purple);
    border: 1px solid var(--accent-purple-border);
}

.reading-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-card-body {
    padding: 16px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.35;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.article-card:hover .article-card-title {
    color: var(--primary-blue);
}

.article-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1;
}

.article-card-footer {
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.author-avatar-mini {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.read-more-link {
    color: var(--primary-blue);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Conversion Dual Promotional CTA Grid in Hub */
.blog-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 60px 0 30px;
    align-items: stretch;
}

.blog-cta-card {
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 20px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-cta-card:hover {
    transform: translateY(-4px);
}

/* Manual Card (Dark Blue) */
.cta-card-manual {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 55%, #172554 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.25);
}

.cta-card-manual .cta-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.cta-card-manual .cta-card-title {
    color: #ffffff;
}

.cta-card-manual .cta-card-desc {
    color: #e0e7ff;
}

/* Guide Card (Lighter Ice Blue / Soft Cyan) */
.cta-card-guide {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0effe 60%, #f8fafc 100%);
    color: var(--text-main);
    border: 2px solid #bae6fd;
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.14);
}

.cta-card-guide .cta-badge {
    background: #dbeafe;
    color: #1d4ed8;
    border: 1px solid #93c5fd;
}

.cta-card-guide .cta-card-title {
    color: #0f172a;
}

.cta-card-guide .cta-card-desc {
    color: #475569;
}

/* Badges */
.cta-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.cta-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.cta-card-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 20px;
}

.cta-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Buttons */
.btn-promo-primary {
    background: var(--accent-orange);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.28);
    transition: all 0.2s ease;
    width: fit-content;
}

.btn-promo-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.38);
    color: #ffffff;
}

.btn-promo-guide {
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: all 0.2s ease;
    width: fit-content;
}

.btn-promo-guide:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
    color: #ffffff;
}

/* Images */
.cta-card-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-book-img {
    width: 100%;
    max-width: 140px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 22px rgba(0,0,0,0.22);
    transition: transform 0.3s ease;
}

.blog-cta-card:hover .cta-book-img {
    transform: scale(1.04) rotate(1deg);
}

/* Backward compatibility for single promo banner if needed */
.blog-promo-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 60px 0 20px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    align-items: center;
}

.blog-promo-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.blog-promo-content p {
    font-size: 1.05rem;
    color: #e0e7ff;
    line-height: 1.6;
    margin-bottom: 22px;
}

.blog-promo-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-promo-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-promo-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.blog-promo-image {
    text-align: center;
}

.blog-promo-image img {
    max-width: 220px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ==========================================================================
   INDIVIDUAL ARTICLE STYLING
   ========================================================================== */
.article-header {
    padding: 50px 0 30px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-color);
}

.article-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.article-breadcrumbs a {
    color: var(--primary-blue);
    text-decoration: none;
}

.article-breadcrumbs a:hover {
    text-decoration: underline;
}

.article-main-title {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.25;
    margin: 15px 0;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-top: 10px;
}

.article-meta-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-body);
}

/* Article Content Typography */
.article-content {
    padding: 45px 0 60px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1e293b;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 40px 0 16px;
    line-height: 1.3;
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 30px 0 12px;
}

.article-content ul, 
.article-content ol {
    margin-bottom: 26px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-blue);
    background: var(--primary-ice);
    padding: 20px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 30px 0;
    font-style: italic;
    color: #1e3a8a;
}

/* Highlight boxes inside article */
.highlight-box {
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 30px 0;
}

.highlight-box.green {
    background: var(--accent-green-light);
    border: 1px solid var(--accent-green-border);
    color: #14532d;
}

.highlight-box.blue {
    background: var(--primary-ice);
    border: 1px solid #bfdbfe;
    color: #1e3a8a;
}

.highlight-box.purple {
    background: var(--accent-purple-light);
    border: 1px solid var(--accent-purple-border);
    color: #4c1d95;
}

.highlight-box.orange {
    background: var(--accent-orange-light);
    border: 1px solid #fed7aa;
    color: #7c2d12;
}

.highlight-box h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Disclaimer box inside article */
.article-disclaimer-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #64748b;
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    margin: 35px 0;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.55;
}

.article-disclaimer-box strong {
    color: #1e293b;
}

/* In-article CTA box */
.article-cta-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1.5px solid var(--accent-green-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 50px 0;
    text-align: center;
}

.article-cta-box h3 {
    font-family: var(--font-heading);
    color: #14532d;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.article-cta-box p {
    color: #166534;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.article-cta-btn {
    background: var(--accent-orange);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
    transition: all 0.2s ease;
}

.article-cta-btn:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.35);
}

/* Author Box in Article */
.article-author-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.author-card-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-blue);
    flex-shrink: 0;
}

.author-card-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.author-card-info .author-role {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 8px;
}

.author-card-info p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Navigation to next/previous articles */
.article-nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.article-nav-btn {
    text-decoration: none;
    color: var(--text-body);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 48%;
}

.article-nav-btn span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.article-nav-btn strong {
    color: var(--primary-navy);
    transition: color 0.2s ease;
}

.article-nav-btn:hover strong {
    color: var(--primary-blue);
}

/* Footer */
.footer,
.blog-footer {
    background: #0a192f;
    color: #94a3b8;
    padding: 60px 0 35px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

.footer-col h4,
.footer-brand-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-img {
    height: 32px;
    width: auto;
}

.footer-col p {
    line-height: 1.65;
    margin-bottom: 16px;
    color: #94a3b8;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-social-icon {
    color: #94a3b8;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-disclaimer-legal {
    border-top: 1px solid #1e293b;
    padding-top: 25px;
    margin-top: 25px;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-promo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .blog-promo-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .blog-promo-actions {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .blog-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 20px;
    }
    .cta-card-content {
        order: 2;
    }
    .cta-card-image {
        order: 1;
        margin-bottom: 8px;
    }
    .cta-book-img {
        max-width: 130px;
    }
    .btn-promo-primary,
    .btn-promo-guide {
        width: 100%;
    }
    .article-main-title {
        font-size: 1.85rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .article-author-card {
        flex-direction: column;
        text-align: center;
    }
    .blog-nav {
        display: none; /* Hide on simple mobile view */
    }
}
