/* =====================================================
   TEAMIQUE MAIN STYLESHEET — ELEMENTOR EDITION
   Scope: Global base + Header + Footer only.
   All page content is handled by Elementor.
   Brand: Blue #1969A9 | Navy #0E0E1A | Accent #4F8EF7
   Fonts: Plus Jakarta Sans (headings) | Inter (body)
   ===================================================== */

/* =================== ADMIN BAR FIX =================== */
.admin-bar .site-header { top: 32px !important; }
.admin-bar .mobile-nav  { top: calc(72px + 32px) !important; }
@media screen and (max-width: 782px) {
    .admin-bar .site-header { top: 46px !important; }
    .admin-bar .mobile-nav  { top: calc(72px + 46px) !important; }
}

/* =================== GLOBAL RESET =================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
/* Body padding for fixed header (not on canvas/Elementor full-screen) */
body:not(.elementor-editor-active):not(.elementor-template-canvas) { padding-top: 72px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--color-accent); }

/* =================== SKIP LINK =================== */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--color-primary); color: #fff; padding: .5rem 1rem; border-radius: 0 0 var(--radius) var(--radius); z-index: 99999; font-size: .875rem; }
.skip-link:focus { top: 0; }

/* =================== CONTAINER =================== */
.container { width: 100%; max-width: var(--container-max); margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

/* =================== SCROLL PROGRESS BAR =================== */
.scroll-progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); width: 0%; z-index: 99999; transition: width .1s linear; }

/* =================== BACK TO TOP =================== */
.back-to-top { position: fixed; bottom: 2rem; right: 1.5rem; width: 44px; height: 44px; background: var(--color-primary); color: #fff; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 999; opacity: 0; transform: translateY(16px); transition: var(--transition); box-shadow: var(--shadow); }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover   { background: var(--color-accent); transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.back-to-top svg     { width: 20px; height: 20px; }

/* =================== WHATSAPP FLOAT =================== */
.whatsapp-float { position: fixed; bottom: 5.5rem; right: 1.5rem; width: 48px; height: 48px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 998; box-shadow: 0 4px 20px rgba(37,211,102,.35); transition: var(--transition); }
.whatsapp-float:hover { background: #1ebe5d; transform: scale(1.08); color: #fff; }
.whatsapp-float svg { width: 26px; height: 26px; }

/* =================== GLOBAL BUTTONS =================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .75rem 1.75rem; border-radius: var(--radius-full); font-family: var(--font-heading); font-size: .9375rem; font-weight: 600; letter-spacing: .01em; cursor: pointer; border: 2px solid transparent; transition: var(--transition); white-space: nowrap; text-decoration: none; }
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary  { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover  { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #fff; box-shadow: 0 8px 24px rgba(25,105,169,.25); }
.btn-accent   { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn-accent:hover   { background: var(--color-accent-hover); border-color: var(--color-accent-hover); color: #fff; box-shadow: var(--shadow-accent); }
.btn-secondary{ background: var(--color-bg-alt); color: var(--color-text); border-color: var(--color-border); }
.btn-secondary:hover{ background: var(--color-border); color: var(--color-text); }
.btn-outline-primary { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline-primary:hover { background: var(--color-primary); color: #fff; box-shadow: 0 8px 24px rgba(25,105,169,.2); }
.btn-ghost    { background: transparent; color: var(--color-text-light); border-color: transparent; }
.btn-ghost:hover    { background: var(--color-bg-alt); color: var(--color-text); }
.btn-sm  { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-lg  { padding: .9375rem 2rem; font-size: 1rem; }
.btn-xl  { padding: 1.125rem 2.5rem; font-size: 1.0625rem; }
.btn-full{ width: 100%; }

/* =================== GLOBAL TYPOGRAPHY =================== */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--color-secondary); }

/* =================== SITE HEADER =================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    height: 72px;
    transition: var(--transition);
}
.site-header.scrolled { border-bottom-color: var(--color-border-light); box-shadow: 0 1px 24px rgba(14,14,26,.07); }

.header-inner { display: flex; align-items: center; gap: 2rem; height: 72px; }

/* Logo */
.site-logo { flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; transition: var(--transition); }
.site-logo:hover img { opacity: .8; }

/* Primary Nav */
.primary-nav { flex: 1; }
.nav-menu { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-menu > li > a { display: flex; align-items: center; gap: .25rem; padding: .5rem .85rem; font-size: .9rem; font-weight: 500; color: var(--color-text); border-radius: var(--radius); transition: var(--transition-fast); white-space: nowrap; }
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--color-primary); background: var(--color-accent-light); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px; background: #fff; border: 1px solid var(--color-border-light); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); list-style: none; padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition-fast); z-index: 1000; }
.has-dropdown:hover .dropdown-menu, .has-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: flex; align-items: center; justify-content: space-between; padding: .6rem 1rem; font-size: .875rem; font-weight: 500; color: var(--color-text); border-radius: var(--radius); transition: var(--transition-fast); }
.dropdown-menu li a:hover { background: var(--color-bg-alt); color: var(--color-primary); }
.dropdown-badge { font-size: .7rem; background: var(--color-accent-light); color: var(--color-accent); padding: 2px 6px; border-radius: var(--radius-full); }

.header-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: var(--radius); margin-left: auto; flex-shrink: 0; }
.hamburger span { display: block; height: 2px; width: 100%; background: var(--color-secondary); border-radius: 2px; transition: var(--transition-fast); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav { position: fixed; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-lg); z-index: 8999; max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(0.4,0,0.2,1); }
.mobile-nav.open { max-height: 90vh; overflow-y: auto; }
.mobile-nav-menu { list-style: none; padding: 1rem; margin: 0; }
.mobile-nav-menu li a { display: block; padding: .75rem 1rem; font-weight: 500; color: var(--color-text); border-radius: var(--radius); transition: var(--transition-fast); }
.mobile-nav-menu li a:hover { background: var(--color-bg-alt); color: var(--color-primary); }
.mobile-submenu { list-style: none; padding: 0 0 0 1rem; }
.mobile-submenu li a { font-size: .875rem; padding: .5rem 1rem; color: var(--color-text-body); }
.mobile-cta { padding: .75rem 0 .5rem; }
.mobile-cta .btn { width: 100%; justify-content: center; }
@media (min-width: 1024px) { .hamburger { display: none !important; } .mobile-nav { display: none !important; } }
@media (max-width: 1023px)  { .primary-nav { display: none; } .header-cta { display: none; } .hamburger { display: flex; } }

/* =================== SITE FOOTER =================== */
.site-footer { background: var(--color-bg-dark); color: rgba(255,255,255,.7); }

/* Newsletter */
.footer-newsletter { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%); padding: 3rem 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.newsletter-text h3 { font-size: 1.5rem; color: #fff; margin-bottom: .25rem; }
.newsletter-text p  { color: rgba(255,255,255,.85); font-size: .95rem; }
.newsletter-form { flex-shrink: 0; min-width: 320px; }
.newsletter-input-wrap { display: flex; gap: .5rem; background: rgba(255,255,255,.15); border-radius: var(--radius-full); padding: .25rem .25rem .25rem 1rem; }
.newsletter-input-wrap input { flex: 1; background: none; border: none; outline: none; color: #fff; font-size: .9rem; min-width: 0; }
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,.65); }
.newsletter-message { font-size: .8rem; color: rgba(255,255,255,.8); margin-top: .5rem; min-height: 1.2rem; }

/* Footer Grid */
.footer-main { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; }
@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 639px)  { .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: 1; } .newsletter-inner { flex-direction: column; } .newsletter-form { min-width: 100%; width: 100%; } }

.footer-logo img { height: 40px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(.9); }
.footer-tagline { font-size: 1rem; color: rgba(255,255,255,.9); font-weight: 600; margin-bottom: .5rem; }
.footer-desc { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 320px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: var(--transition-fast); }
.footer-social a:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-upwork-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.7); background: rgba(79,142,247,.12); border: 1px solid rgba(79,142,247,.25); border-radius: var(--radius-full); padding: .35rem .85rem; transition: var(--transition-fast); }
.footer-upwork-badge:hover { color: #fff; background: rgba(79,142,247,.25); }
.footer-col-title { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.65); transition: var(--transition-fast); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-list li { display: flex; align-items: center; gap: .6rem; font-size: .875rem; color: rgba(255,255,255,.65); }
.footer-contact-list a { color: rgba(255,255,255,.65); transition: var(--transition-fast); }
.footer-contact-list a:hover { color: #fff; }
.footer-contact-list svg { flex-shrink: 0; opacity: .6; }
.footer-response-time { font-size: .8rem; color: rgba(255,255,255,.45); }
.status-dot { width: 8px; height: 8px; background: #27AE60; border-radius: 50%; display: inline-block; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(39,174,96,.4); } 50% { box-shadow: 0 0 0 6px rgba(39,174,96,0); } }

/* Footer Bottom */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 1.5rem; list-style: none; }
.footer-legal a { font-size: .8125rem; color: rgba(255,255,255,.4); transition: var(--transition-fast); }
.footer-legal a:hover { color: rgba(255,255,255,.75); }

/* =================== COOKIE BANNER =================== */
.cookie-banner { position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%); width: calc(100% - 2rem); max-width: 640px; background: var(--color-secondary); color: rgba(255,255,255,.85); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 9999; padding: 1.25rem 1.5rem; }
.cookie-banner[hidden] { display: none; }
.cookie-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cookie-text p { font-size: .875rem; }
.cookie-text a { color: var(--color-accent); }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }

/* =================== ELEMENTOR COMPATIBILITY =================== */
/* Don't add padding in Elementor editor */
.elementor-editor-active body,
body.elementor-editor-active { padding-top: 0 !important; }

/* Canvas template — no header/footer */
.elementor-template-canvas .site-header,
.elementor-template-canvas .site-footer,
.elementor-page-template-canvas .site-header,
.elementor-page-template-canvas .site-footer { display: none !important; }
body.elementor-template-canvas { padding-top: 0 !important; }

/* Full-width pages — no padding on site-main */
.elementor-page .site-main,
.page-template-elementor_canvas .site-main { padding: 0 !important; margin: 0 !important; }

/* Prevent WordPress .entry-content from adding padding */
.entry-content { padding: 0; }

/* Make Elementor sections fill width properly */
.elementor-section-wrap > .elementor-section,
.e-container { max-width: 100%; }

/* =================== BLOG — single.php =================== */
.reading-progress { position: fixed; top: 72px; left: 0; height: 3px; background: var(--color-accent); width: 0%; z-index: 9001; transition: width .1s linear; }
.post-hero { padding: 6rem 0 3rem; background: var(--color-bg-alt); }
.post-hero-inner { max-width: 780px; }
.post-meta-top { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; font-size: .875rem; color: var(--color-text-light); }
.blog-cat-tag { background: var(--color-accent-light); color: var(--color-primary); padding: .2rem .75rem; border-radius: var(--radius-full); font-size: .8rem; font-weight: 600; }
.post-title { font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.2; }
.post-author-strip { display: flex; align-items: center; gap: .75rem; margin-top: 1rem; font-size: .9rem; }
.author-avatar { width: 36px; height: 36px; background: var(--color-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; }
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; padding-top: 3rem; padding-bottom: 4rem; }
@media (max-width: 1023px) { .post-layout { grid-template-columns: 1fr; } .post-sidebar { display: none; } }
.post-featured-image { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 2rem; }
.post-featured-image img { width: 100%; }
.post-body h2,.post-body h3,.post-body h4 { margin: 2rem 0 1rem; }
.post-body p { margin-bottom: 1.25rem; color: var(--color-text-body); }
.post-body ul,.post-body ol { margin: 1rem 0 1.25rem 1.5rem; }
.post-body li { margin-bottom: .5rem; color: var(--color-text-body); }
.post-body img { border-radius: var(--radius); margin: 1.5rem 0; }
.post-body blockquote { border-left: 4px solid var(--color-primary); padding: 1rem 1.5rem; background: var(--color-bg-alt); border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0; color: var(--color-text-body); font-style: italic; }
.post-body a { color: var(--color-primary); border-bottom: 1px dotted var(--color-primary); }
.post-body a:hover { color: var(--color-accent); border-bottom-color: var(--color-accent); }
.post-tags { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-top: 2rem; font-size: .875rem; }
.tag-pill { background: var(--color-bg-alt); padding: .25rem .75rem; border-radius: var(--radius-full); font-size: .8rem; color: var(--color-text-body); transition: var(--transition-fast); }
.tag-pill:hover { background: var(--color-accent-light); color: var(--color-primary); }
.post-share { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); font-size: .875rem; }
.share-btn { display: flex; align-items: center; gap: .4rem; padding: .45rem 1rem; border-radius: var(--radius-full); font-size: .8125rem; font-weight: 600; cursor: pointer; border: 1px solid var(--color-border); background: #fff; color: var(--color-text); transition: var(--transition-fast); text-decoration: none; }
.share-btn:hover { background: var(--color-bg-alt); color: var(--color-primary); }
.share-btn.copied { background: var(--color-success); color: #fff; border-color: var(--color-success); }
.post-author-bio { display: flex; gap: 1rem; background: var(--color-bg-alt); border-radius: var(--radius-xl); padding: 1.5rem; margin-top: 2.5rem; }
.author-bio-avatar { width: 56px; height: 56px; background: var(--color-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; flex-shrink: 0; }
.author-bio-content h3 { font-size: 1rem; margin-bottom: .35rem; }
.author-bio-content p { font-size: .875rem; color: var(--color-text-body); }
.sidebar-card { background: var(--color-bg-alt); border: 1px solid var(--color-border-light); border-radius: var(--radius-xl); padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-toc h3,.sidebar-cta h3,.sidebar-related h3 { font-size: 1rem; margin-bottom: 1rem; }
.toc-nav { display: flex; flex-direction: column; gap: .35rem; }
.toc-link { font-size: .8125rem; color: var(--color-text-body); padding: .3rem .5rem; border-radius: var(--radius); transition: var(--transition-fast); display: block; }
.toc-link:hover,.toc-link.active { background: var(--color-accent-light); color: var(--color-primary); }
.toc-link-h3 { padding-left: 1rem; font-size: .775rem; }
.sidebar-cta { text-align: center; }
.sidebar-cta-icon { font-size: 2rem; margin-bottom: .75rem; }
.sidebar-cta p { font-size: .875rem; color: var(--color-text-body); margin-bottom: 1rem; }
.sidebar-related-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.sidebar-related-list a { display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem; font-size: .875rem; }
.related-title { color: var(--color-text); font-weight: 500; }
.related-date  { color: var(--color-text-light); font-size: .75rem; flex-shrink: 0; }
.post-sidebar { position: sticky; top: 90px; }
.related-posts-section { background: var(--color-bg-alt); padding: 4rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 767px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: #fff; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img { display: block; height: 200px; overflow: hidden; background: var(--color-bg-alt); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.25rem; }
.blog-card-meta { font-size: .75rem; color: var(--color-text-light); margin-bottom: .5rem; display: flex; gap: .75rem; }
.blog-card-title a { font-size: 1rem; font-weight: 600; color: var(--color-secondary); line-height: 1.4; }
.blog-card-title a:hover { color: var(--color-primary); }
.blog-read-more { font-size: .875rem; color: var(--color-primary); font-weight: 500; display: inline-block; margin-top: .75rem; }
.cta-banner-section { position: relative; padding: 5rem 0; background: var(--color-secondary); overflow: hidden; text-align: center; }
.cta-banner-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-banner-inner h2 { font-size: clamp(1.75rem,3.5vw,2.5rem); color: #fff; margin-bottom: 1rem; }
.cta-banner-inner p  { color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.cta-banner-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 50%, rgba(79,142,247,.2) 0%, transparent 70%); pointer-events: none; }

/* =================== 404 PAGE =================== */
.error-404-section { padding: 8rem 0; text-align: center; }
.error-404-number { font-size: clamp(6rem,15vw,10rem); font-weight: 800; color: var(--color-accent); opacity: .12; line-height: 1; margin-bottom: 1rem; }
.error-404-content h1 { font-size: clamp(1.75rem,4vw,2.75rem); margin-bottom: 1rem; }
.error-404-content p  { color: var(--color-text-body); max-width: 480px; margin: 0 auto .75rem; }
.error-404-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin: 2rem 0; }
.error-404-popular h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--color-text-light); }
.error-404-popular ul { list-style: none; display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.error-404-popular a  { font-size: .9rem; color: var(--color-primary); }

/* =================== SECTION HELPER =================== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-header h2 { font-size: clamp(1.75rem,3vw,2.5rem); margin-bottom: 1rem; }
.section-header p  { color: var(--color-text-body); font-size: 1.0625rem; }
.section-alt { background: var(--color-bg-alt); }

/* =================== UTILITY =================== */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }
