/* =====================================================
   PassSlot Blog — Shared Readability Styles
   Applied across all blog posts for consistent UX
   ===================================================== */

/* ── Global: Prevent walls of text ── */
.article-card .article-p {
    max-width: 68ch;
    /* soft character-width limit for ideal reading line length */
}

/* ── Choice / Feature List ── */
.choice-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 1.25rem 0 1.75rem;
    padding: 0;
}

.choice-list li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
}

.choice-list li strong {
    color: #111827;
}

.choice-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Readable bullet list ── */
.article-card ul:not(.choice-list):not(.tldr-list):not(.step-list):not(.related-links),
.article-card ol {
    padding-left: 1.4rem;
    margin: 1rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.article-card ul:not(.choice-list):not(.tldr-list):not(.step-list):not(.related-links) li,
.article-card ol li {
    font-size: 0.97rem;
    color: #374151;
    line-height: 1.7;
}

/* ── Step List (numbered process steps) ── */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0 1.75rem;
    padding: 0;
    list-style: none;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-num {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #FF3B30;
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
    line-height: 1;
}

.step-body {
    flex: 1;
}

.step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 0.3rem;
    line-height: 1.4;
}

.step-desc {
    font-size: 0.87rem;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}


/* ── Quick Answer / TL;DR Box ── */
.tldr-box {
    background: linear-gradient(135deg, #FFF8F8 0%, #fff 100%);
    border: 1.5px solid rgba(255, 59, 48, 0.25);
    border-left: 4px solid #FF3B30;
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.tldr-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF3B30;
    margin-bottom: 0.75rem;
}

.tldr-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tldr-list li {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.55;
    padding-left: 1.1rem;
    position: relative;
}

.tldr-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF3B30;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Force inline — prevent any block override from leaking in */
.tldr-list li strong,
.highlight-band strong,
.toc-list li strong {
    display: inline !important;
    font-weight: 700;
}

/* ── Table of Contents Box ── */
.toc-box {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.toc-title {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6B7280;
    margin-bottom: 0.85rem;
}

.toc-list {
    padding-left: 1.2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.toc-list li {
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.4;
}

.toc-list a {
    color: #FF3B30;
    font-weight: 600;
    text-decoration: none;
}

.toc-list a:hover {
    text-decoration: underline;
}

/* ── Highlight Band ── */
.highlight-band {
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    border-left: 4px solid #F97316;
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.65;
}

/* ── Reading Progress Bar ── */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #FF3B30 0%, #FF6B58 100%);
    z-index: 9999;
    transition: width 0.08s linear;
    pointer-events: none;
}

/* ── Better Article Typography — main body paragraphs only ── */
.article-card>p,
.article-card .article-p,
.article-card>.article-intro {
    font-size: 1.02rem !important;
    line-height: 1.85 !important;
    color: #374151 !important;
    margin-bottom: 1.4rem !important;
    letter-spacing: 0.012em;
}

.article-card>p strong,
.article-card .article-p strong {
    color: #111827 !important;
    font-weight: 700;
}

/* Callout, FAQ, step, choice-list paragraphs — keep tight */
.callout-body p,
.faq-a p,
.step-desc p,
.tldr-box p,
.highlight-band p,
.choice-list p {
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    margin-bottom: 0 !important;
    letter-spacing: inherit !important;
}

/* ── Intro Lead Paragraph ── */
.article-intro {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #1f2937 !important;
    background: linear-gradient(135deg, #FFF8F8 0%, #FFFFFF 100%);
    border-left: 4px solid #FF3B30;
    padding: 1.25rem 1.5rem !important;
    border-radius: 0 10px 10px 0;
    margin-bottom: 2rem !important;
    padding-bottom: 1.25rem !important;
    border-bottom: none !important;
}

/* ── Section Headings ── */
.article-h2 {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
    margin-top: 2.75rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #F3F4F6;
    position: relative;
}

.article-h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 48px;
    height: 2px;
    background: #FF3B30;
    border-radius: 2px;
}

/* ── TL;DR / Key Points Box ── */
.tldr-box {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
    border: 1.5px solid rgba(255, 59, 48, 0.2);
    border-radius: 14px;
    padding: 1.4rem 1.75rem;
    margin-bottom: 2rem;
}

.tldr-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FF3B30;
    margin-bottom: 0.85rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tldr-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0;
    margin: 0;
}

.tldr-list li {
    font-size: 0.92rem !important;
    color: #374151 !important;
    line-height: 1.55 !important;
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin: 0 !important;
    letter-spacing: 0;
}

.tldr-list li strong {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 700;
}

.tldr-list li::before {
    content: '✓';
    color: #FF3B30;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Pull Quote ── */
.pull-quote {
    border-left: 4px solid #FF3B30;
    padding: 0.9rem 1.4rem;
    margin: 2rem 0;
    background: #F9FAFB;
    border-radius: 0 10px 10px 0;
    font-size: 1.05rem !important;
    font-style: italic;
    color: #1A1A1A !important;
    font-weight: 600;
    line-height: 1.65 !important;
}

/* ── Inline Key Stat Highlight ── */
.key-stat {
    display: inline-block;
    background: rgba(255, 59, 48, 0.08);
    color: #CC2E24;
    font-weight: 700;
    padding: 0.05em 0.45em;
    border-radius: 5px;
    font-size: 0.98em;
}

/* ── Callout Improvements ── */
.callout {
    border-radius: 14px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.callout-body p {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
    color: #4B5563 !important;
}

.callout-body strong {
    font-size: 0.95rem !important;
    margin-bottom: 0.4rem !important;
}

/* ── Step / Timeline List Improvements ── */
.step-item,
.tip-card,
.calm-card,
.mistake-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-item:hover,
.tip-card:hover,
.calm-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
}

.step-content p,
.tip-desc,
.calm-card-body,
.mistake-body {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
    color: #4B5563 !important;
}

/* ── Article Image Caption ── */
.img-caption {
    font-size: 0.78rem;
    color: #9CA3AF;
    text-align: center;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* ── Section Divider ── */
.section-break {
    border: none;
    border-top: 1.5px solid #F3F4F6;
    margin: 2.5rem 0;
    position: relative;
}

.section-break::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -3px;
    transform: translateX(-50%);
    width: 32px;
    height: 5px;
    background: #FF3B30;
    border-radius: 3px;
    opacity: 0.4;
}

/* ── Inline CTA improvements ── */
.inline-cta {
    position: relative;
    overflow: hidden;
}

.inline-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    animation: cta-shine 6s ease-in-out infinite;
}

@keyframes cta-shine {
    0% {
        left: -75%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* ── Back to blog link ── */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem !important;
    font-weight: 600;
    color: #FF3B30 !important;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.5rem 1rem !important;
    margin: 0.5rem 0 1.5rem !important;
    transition: all 0.2s;
}

.back-to-blog:hover {
    background: #FFF5F5;
    border-color: rgba(255, 59, 48, 0.3);
    gap: 0.65rem;
    opacity: 1 !important;
}

/* ── Related posts improvements ── */
.related-link-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1A1A1A !important;
    line-height: 1.4;
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .article-intro {
        font-size: 1rem !important;
        padding: 1rem 1.1rem !important;
    }

    .article-card .article-p {
        font-size: 0.98rem !important;
        line-height: 1.8 !important;
    }

    .article-h2 {
        font-size: 1.15rem !important;
    }

    .pull-quote {
        font-size: 0.97rem !important;
    }
}

/* ── Post meta row — compact like Cricinfo ── */
.post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}

.post-cat {
    background: var(--bg-light);
    color: var(--primary-red);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 59, 48, 0.15);
    white-space: nowrap;
    flex-shrink: 0;
}

.post-date,
.post-read-time {
    font-size: 0.78rem;
    color: #9CA3AF;
    white-space: nowrap;
}

/* ── Scroll-smoothing for anchor links ── */
html {
    scroll-behavior: smooth;
}

/* ── Table of Contents ── */
.toc-box {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-left: 4px solid #FF3B30;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 0 0 2.25rem;
}

.toc-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FF3B30;
    margin-bottom: 0.85rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    counter-reset: toc-counter;
}

.toc-list li {
    counter-increment: toc-counter;
}

.toc-list a {
    font-size: 0.88rem;
    color: #4B5563;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.15s;
}

.toc-list a::before {
    content: counter(toc-counter) ".";
    color: #FF3B30;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    min-width: 1.25rem;
    margin-top: 1px;
}

.toc-list a:hover,
.toc-list a.toc-active {
    color: #FF3B30;
    font-weight: 600;
}

/* ── Pull Stat (big visual number mid-article) ── */
.pull-stat {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
    border: 1.5px solid rgba(255, 59, 48, 0.18);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.pull-stat-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FF3B30;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.pull-stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.3rem;
}

.pull-stat-sub {
    font-size: 0.83rem;
    color: #6B7280;
    line-height: 1.5;
}

/* ── Scroll-reveal base ── */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Article H2: left accent bar ── */
.article-h2 {
    border-left: 3px solid #FF3B30 !important;
    padding-left: 0.85rem !important;
    border-bottom: none !important;
}

.article-h2::before {
    display: none !important;
}

/* ── Highlight band (key takeaway inline) ── */
.highlight-band {
    background: #FFFBEB;
    border-left: 4px solid #FBBF24;
    border-radius: 0 10px 10px 0;
    padding: 0.9rem 1.25rem;
    margin: 1.25rem 0 1.75rem;
    font-size: 0.95rem;
    color: #1A1A1A;
    font-weight: 600;
    line-height: 1.6;
}

/* ── Method card scroll-reveal ── */
.method-card,
.choice-list li,
.faq-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ═══════════════════════════════════════
   AUTHOR BYLINE — Cricinfo compact style
   ══════════════════════════════════════= */
.author-byline {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0.6rem 0 1.5rem;
    /* No box, no card — just inline text */
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.author-byline-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #E5E7EB;
    flex-shrink: 0;
}

.author-byline-text {
    font-size: 0.82rem;
    color: #6B7280;
    line-height: 1.2;
}

.author-byline-name {
    font-weight: 700;
    color: #111827;
}

/* ═══════════════════════════════════════
   AUTHOR BIO CARD (shared across all posts)
   ══════════════════════════════════════= */
.author-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    border: 1px solid #E5E7EB;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.author-card-avatar-wrap {
    flex-shrink: 0;
    position: relative;
}

.author-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E5E7EB;
    display: block;
}

.author-verified-badge {
    position: absolute;
    bottom: 1px;
    right: 1px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border: 2px solid white;
}

.author-card-body {
    flex: 1;
    min-width: 0;
}

.author-card-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666666;
    margin-bottom: 0.2rem;
}

.author-card-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 0.2rem;
}

.author-card-title {
    font-size: 0.8rem;
    color: #FF3B30;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.author-card-bio {
    font-size: 0.875rem;
    color: #4B5563;
    line-height: 1.65;
    margin-bottom: 0.9rem;
}

.author-card-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.author-cred-tag {
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #374151;
    padding: 0.2rem 0.65rem;
}

.author-card-socials {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.author-social-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #666666;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    transition: all 0.2s;
    text-decoration: none;
}

.author-social-link:hover {
    border-color: #FF3B30;
    color: #FF3B30;
    background: #FFF5F5;
}

@media(max-width:480px) {
    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-card-creds {
        justify-content: center;
    }

    .author-card-socials {
        justify-content: center;
    }
}

/* ═══════════════════════════════════════
   BLOG FOOTER (shared across all posts)
   ══════════════════════════════════════= */
.blog-footer {
    background: #0D1117;
    margin-top: 3rem;
}

.footer-hero {
    background: linear-gradient(135deg, #1a0a0a 0%, #0D1117 60%);
    padding: 3rem 1.5rem 2.5rem;
    border-bottom: 1px solid #1F2937;
    position: relative;
    overflow: hidden;
}

.footer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF3B30, #FF6B58, transparent);
}

.footer-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}

.footer-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FF3B30;
    margin-bottom: 0.75rem;
}

.footer-headline {
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.footer-headline span {
    color: #FF3B30;
}

.footer-sub {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.65;
    max-width: 460px;
    margin-bottom: 1.5rem;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FF3B30;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 0 #9B1C14;
    margin-bottom: 2.5rem;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 59, 48, 0.4);
}

.footer-stats-row {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #1F2937;
    border-radius: 12px;
    overflow: hidden;
}

.footer-stat-item {
    flex: 1;
    min-width: 100px;
    padding: 1rem 1.25rem;
    border-right: 1px solid #1F2937;
}

.footer-stat-item:last-child {
    border-right: none;
}

.footer-stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.footer-stat-label {
    font-size: 0.7rem;
    color: #4B5563;
    line-height: 1.3;
}

.footer-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    border-bottom: 1px solid #1F2937;
}

.footer-nav-col h4 {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #374151;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.855rem;
    color: #6B7280;
    transition: color 0.15s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a::before {
    content: '›';
    color: #374151;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.15s, transform 0.15s;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::before {
    color: #FF3B30;
    transform: translateX(2px);
}

.footer-bottom {
    max-width: 680px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    text-align: center;
}

.footer-bottom-text {
    font-size: 0.75rem;
    color: #374151;
    line-height: 1.6;
}

.footer-author-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #374151;
}

.footer-author-credit img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #1F2937;
}

.footer-author-credit strong {
    color: #6B7280;
}

@media(min-width: 520px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media(max-width: 480px) {
    .footer-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-headline {
        font-size: 1.3rem;
    }

    .footer-stat-item:last-child {
        display: none;
    }
}

/* ── Custom Scrollbar ── */
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F3F4F6;
}

::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 99px;
    border: 2px solid #F3F4F6;
    transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF3B30;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #D1D5DB #F3F4F6;
}