body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
}

.breadcrumbs {
    background: white;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.breadcrumbs a {
    color: var(--red);
    text-decoration: none;
    margin: 0 0.5rem;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.article-container {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 2rem;
}
.article-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.article-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.article-meta span {
    display: flex;
    align-items: center;
}
.article-category {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}
.article-body h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}
.article-body h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin: 1.5rem 0 0.8rem 0;
    line-height: 1.3;
}
.article-body p {
    margin-bottom: 1.2rem;
}
.article-body a {
    color: var(--red);
    text-decoration: none;
    border-bottom: 1px solid var(--red);
}
.article-body a:hover {
    opacity: 0.8;
}
.article-body ul, .article-body ol {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}
.article-body li {
    margin-bottom: 0.5rem;
}
.related-articles {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--dark);
    color: white;
    border-radius: 14px;
}
.related-articles h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--red);
}
.related-articles ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.related-articles li {
    margin-bottom: 0.8rem;
}
.related-articles a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid var(--red);
}
.related-articles a:hover {
    color: var(--red);
}
.cta-section {
    background: var(--red);
    color: white;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 14px;
    text-align: center;
}
.cta-section h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}
.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: white;
    color: var(--red);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: opacity 0.3s;
}
.cta-button:hover {
    opacity: 0.9;
}
.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.lang-btn:hover { opacity: 0.85; filter: grayscale(0%); border-color: var(--border); transform: scale(1.1); }
.lang-btn.active { opacity: 1; filter: grayscale(0%); border-color: var(--red); box-shadow: 0 0 0 2px rgba(196,30,42,0.2); transform: scale(1.1); }
@media (max-width: 1024px) {
    .blog-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2rem !important; }
    .article-container { padding: 0 1.5rem; }
}
@media (max-width: 768px) {
    .blog-footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .article-header h1 { font-size: 1.8rem; }
    .article-body h2 { font-size: 1.4rem; }
    .article-body h3 { font-size: 1.1rem; }
    .cta-buttons { flex-direction: column; }
    .article-container { padding: 0 1rem; margin: 2rem auto; }
    .breadcrumbs { padding: 0.8rem 1rem; font-size: 0.85rem; }
    .article-body { font-size: 1rem; }
    .cta-section { padding: 2rem 1.5rem; margin: 2rem 0; }
    .related-articles { padding: 1.5rem; }
    .article-body table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .article-body img { width: 100%; height: auto; }
}
@media (max-width: 480px) {
    .article-header h1 { font-size: 1.5rem; }
    .article-body h2 { font-size: 1.2rem; }
    .cta-section h3 { font-size: 1.4rem; }
    .cta-section p { font-size: 1rem; }
    .article-container { margin: 1.5rem auto; }
}

@media (max-width: 768px) {
    #blogNavLinks { display: none !important; }
    #blogHamburger { display: flex !important; flex-direction: column; }
    #blogNavLinks.open {
        display: flex !important; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--cream); padding: 2rem; gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        z-index: 200;
    }
}

/* ===================== BLOG NAV (POST) ===================== */
.blog-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s, box-shadow 0.4s;
}
.blog-nav__inner {
    max-width: 1400px; margin: 0 auto;
    padding: 1rem 2.5rem;
    display: flex; justify-content: space-between; align-items: center;
}
.blog-nav__logo-link { text-decoration: none; }
.blog-nav__logo { height: 48px; width: auto; }
.blog-nav-links {
    display: flex; gap: 2.5rem; list-style: none; align-items: center;
    margin: 0; padding: 0;
}
.blog-nav__link {
    color: var(--text); font-size: 0.92rem; font-weight: 500;
    text-decoration: none; transition: color 0.3s;
}
.blog-nav__link--current { color: var(--red); font-weight: 600; }
.blog-nav-cta {
    display: inline-block;
    background: var(--red); color: #fff;
    padding: 0.7rem 1.6rem; border-radius: 10px;
    font-weight: 600; font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.lang-switcher {
    display: flex; gap: 0.4rem; align-items: center; margin-left: 0.5rem;
}
.lang-btn {
    background: transparent; border: 2px solid transparent;
    padding: 2px; border-radius: 50%; cursor: pointer;
    transition: all 0.25s ease;
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; overflow: hidden;
    opacity: 0.55; filter: grayscale(30%);
}
.lang-flag {
    width: 22px; height: 22px; border-radius: 50%; pointer-events: none;
}
.blog-hamburger {
    display: none;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.blog-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); margin: 5px 0;
    transition: all 0.3s;
}

/* ===================== BLOG FOOTER ===================== */
.blog-footer {
    background: linear-gradient(135deg, #34608B 0%, #3D6D9A 50%, #4A7DAB 100%);
    padding: 4rem 2.5rem 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.88rem;
}
.blog-footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.blog-footer__logo {
    height: 42px; margin-bottom: 1rem;
    filter: brightness(0) invert(0.85);
}
.blog-footer-brand-desc { max-width: 360px; line-height: 1.7; }
.blog-footer__social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.blog-footer__social-link {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}
.blog-footer__social-icon {
    width: 18px; height: 18px; fill: currentColor;
}
.blog-footer-nav-label,
.blog-footer-legal-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
}
.blog-footer__link {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}
.blog-footer__bottom {
    max-width: 1200px; margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem; flex-wrap: wrap; gap: 1rem;
}
