/* =========================================================
   RESUMECRAFT BLOG
   COMPLETE FRESH STYLE
   Works with:
   blog/index.html
   blog/image-compression/*.html
   blog/resume/*.html
   ========================================================= */


/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */

:root {
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #eef2ff;

    --text: #172033;
    --text-dark: #101828;
    --text-secondary: #667085;
    --text-light: #98a2b3;

    --white: #ffffff;

    --background: #f8f9fc;
    --background-soft: #f4f6fb;

    --border: #e4e7ec;
    --border-light: #eef0f4;

    --resume-bg: #eef2ff;
    --resume-text: #4338ca;

    --image-bg: #ecfdf3;
    --image-text: #087443;

    --shadow-small: 0 2px 8px rgba(16, 24, 40, 0.04);
    --shadow-card: 0 10px 30px rgba(16, 24, 40, 0.06);
    --shadow-hover: 0 18px 45px rgba(16, 24, 40, 0.10);

    --radius-small: 8px;
    --radius-medium: 14px;
    --radius-large: 20px;

    --container: 1160px;
}


/* =========================================================
   2. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background: var(--background);
    color: var(--text);
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: #c7d2fe;
    color: var(--text-dark);
}


/* =========================================================
   3. CONTAINER
   ========================================================= */

.blog-container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   4. HEADER
   ========================================================= */

.blog-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   5. LOGO
   ========================================================= */

.blog-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--text);

    font-size: 22px;
    font-weight: 800;

    letter-spacing: -0.6px;

    white-space: nowrap;
}

.logo-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--primary);
    color: #ffffff;

    font-size: 18px;
    font-weight: 800;

    box-shadow:
        0 5px 12px rgba(79, 70, 229, 0.18);
}

.blog-logo > span:last-child > span {
    color: var(--primary);
}


/* =========================================================
   6. DESKTOP NAVIGATION
   ========================================================= */

.blog-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.blog-navigation a {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: 40px;

    color: #475467;

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.2s ease;
}

.blog-navigation a:hover {
    color: var(--primary);
}

.blog-navigation a.active {
    color: var(--primary);
}

.blog-navigation a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 2px;

    height: 2px;

    border-radius: 2px;

    background: var(--primary);
}


/* =========================================================
   7. MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-button {
    width: 42px;
    height: 42px;

    display: none;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: #ffffff;
}

.mobile-menu-button:hover {
    background: #f9fafb;
}

.mobile-menu-button span {
    width: 19px;
    height: 2px;

    display: block;

    border-radius: 2px;

    background: var(--text);

    transition: 0.2s ease;
}


/* =========================================================
   8. MOBILE NAVIGATION
   ========================================================= */

.mobile-navigation {
    display: none;

    padding: 8px 20px 18px;

    background: #ffffff;

    border-top: 1px solid var(--border);
}

.mobile-navigation a {
    display: block;

    padding: 13px 0;

    color: #344054;

    font-size: 15px;
    font-weight: 600;

    border-bottom: 1px solid var(--border-light);
}

.mobile-navigation a:last-child {
    border-bottom: none;
}

.mobile-navigation a:hover {
    color: var(--primary);
}

.mobile-navigation.active {
    display: block;
}


/* =========================================================
   9. BLOG HERO
   ========================================================= */

.blog-hero {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(79, 70, 229, 0.11),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 80%,
            rgba(99, 102, 241, 0.08),
            transparent 30%
        ),
        #ffffff;

    border-bottom: 1px solid var(--border);
}

.blog-hero::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -145px;
    top: -150px;

    border: 1px solid rgba(79, 70, 229, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.blog-hero::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: -130px;
    bottom: -150px;

    border: 1px solid rgba(79, 70, 229, 0.06);

    border-radius: 50%;

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;

    max-width: 850px;

    padding: 88px 0 84px;
}

.hero-label {
    display: inline-flex;
    align-items: center;

    padding: 7px 12px;

    border-radius: 999px;

    background: var(--primary-light);
    color: var(--primary-dark);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.8px;

    margin-bottom: 21px;
}

.hero-content h1 {
    max-width: 850px;

    color: var(--text-dark);

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.07;

    letter-spacing: -2.7px;

    font-weight: 800;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    max-width: 700px;

    margin-top: 23px;

    color: var(--text-secondary);

    font-size: 18px;

    line-height: 1.75;
}


/* =========================================================
   10. COMMON SECTIONS
   ========================================================= */

.featured-section,
.articles-section {
    padding: 78px 0;
}

.image-section {
    background: #ffffff;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}


/* =========================================================
   11. SECTION HEADING
   ========================================================= */

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 32px;
}

.section-label {
    display: block;

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.section-heading h2 {
    color: var(--text-dark);

    font-size: 32px;

    line-height: 1.2;

    letter-spacing: -1px;
}

.section-heading > p {
    max-width: 450px;

    color: var(--text-secondary);

    font-size: 15px;

    line-height: 1.7;
}

.view-tool-link {
    flex-shrink: 0;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;

    transition: color 0.2s ease;
}

.view-tool-link:hover {
    color: var(--primary-dark);
}


/* =========================================================
   12. FEATURED GRID
   ========================================================= */

.featured-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(0, 1fr);

    gap: 20px;
}


/* =========================================================
   13. FEATURED CARDS
   ========================================================= */

.featured-card {
    position: relative;

    min-height: 310px;

    padding: 32px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.featured-card::before {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    top: -95px;
    right: -65px;

    border-radius: 50%;

    background: var(--primary-light);

    opacity: 0.75;
}

.featured-card > * {
    position: relative;
    z-index: 1;
}

.featured-main {
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f7ff 100%
        );
}

.featured-card:hover {
    transform: translateY(-4px);

    border-color: #d5d9e2;

    box-shadow: var(--shadow-hover);
}

.featured-card h3 {
    max-width: 700px;

    margin-top: 17px;

    color: var(--text-dark);

    font-size: 28px;

    line-height: 1.25;

    letter-spacing: -0.6px;
}

.featured-card:not(.featured-main) h3 {
    font-size: 24px;
}

.featured-card p {
    max-width: 680px;

    margin-top: 11px;

    color: var(--text-secondary);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   14. CATEGORY BADGES
   ========================================================= */

.article-category {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 6px 10px;

    border-radius: 6px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.7px;

    line-height: 1.3;
}

.resume-category {
    background: var(--resume-bg);
    color: var(--resume-text);
}

.image-category {
    background: var(--image-bg);
    color: var(--image-text);
}


/* =========================================================
   15. FEATURED READ LINK
   ========================================================= */

.read-link {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: 21px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;
}

.read-link span {
    display: inline-block;

    transition: transform 0.2s ease;
}

.read-link:hover {
    color: var(--primary-dark);
}

.read-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   16. ARTICLE GRID
   ========================================================= */

.article-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   17. ARTICLE CARDS
   ========================================================= */

.article-card {
    min-height: 305px;

    display: flex;
    flex-direction: column;

    padding: 24px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.article-card:hover {
    transform: translateY(-4px);

    border-color: #d5d9e2;

    box-shadow: var(--shadow-hover);
}


/* =========================================================
   18. ARTICLE CARD TOP
   ========================================================= */

.article-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;
}

.article-number {
    color: #b0b7c4;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   19. ARTICLE CARD CONTENT
   ========================================================= */

.article-card h3 {
    margin-top: 21px;

    color: var(--text-dark);

    font-size: 20px;

    line-height: 1.35;

    letter-spacing: -0.3px;
}

.article-card p {
    margin-top: 11px;

    color: var(--text-secondary);

    font-size: 14px;

    line-height: 1.7;
}

.article-link {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: auto;
    padding-top: 21px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 700;
}

.article-link span {
    display: inline-block;

    transition: transform 0.2s ease;
}

.article-link:hover {
    color: var(--primary-dark);
}

.article-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   20. BLOG CTA
   ========================================================= */

.blog-cta-section {
    padding: 74px 0;

    background: var(--background);
}

.blog-cta {
    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 45px;

    border-radius: var(--radius-large);

    background:
        linear-gradient(
            135deg,
            #172033 0%,
            #202b46 100%
        );
}

.blog-cta::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -150px;
    bottom: -190px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 50%;
}

.blog-cta::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: 55px;
    top: -120px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}

.blog-cta > * {
    position: relative;
    z-index: 1;
}

.blog-cta .section-label {
    color: #a5b4fc;
}

.blog-cta h2 {
    max-width: 600px;

    color: #ffffff;

    font-size: 34px;

    line-height: 1.2;

    letter-spacing: -0.8px;
}

.blog-cta p {
    max-width: 600px;

    margin-top: 12px;

    color: #c4cad5;

    font-size: 15px;

    line-height: 1.7;
}

.cta-button {
    flex-shrink: 0;

    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border-radius: 9px;

    background: #ffffff;

    color: var(--text-dark);

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.cta-button:hover {
    background: #f3f4f6;

    transform: translateY(-2px);
}


/* =========================================================
   21. FOOTER
   ========================================================= */

.blog-footer {
    background: #111827;

    color: #d0d5dd;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding-top: 60px;
    padding-bottom: 50px;
}

.footer-brand .blog-logo {
    color: #ffffff;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 16px;

    color: #98a2b3;

    font-size: 14px;

    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 8px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}

.footer-column a {
    width: fit-content;

    color: #98a2b3;

    font-size: 13px;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}


/* =========================================================
   22. FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    padding: 20px 0;

    color: #667085;

    font-size: 12px;
}


/* =========================================================
   23. ARTICLE PAGE
   ========================================================= */

.article-page {
    min-height: 70vh;

    padding: 70px 0 90px;

    background: #ffffff;
}

.article-container {
    max-width: 900px;
}


/* =========================================================
   24. ARTICLE HEADER
   ========================================================= */

.article-header {
    max-width: 820px;

    margin: 0 auto;

    text-align: center;
}

.article-header .article-category {
    margin: 0 auto 20px;
}

.article-header h1 {
    margin: 0;

    color: var(--text-dark);

    font-size: clamp(38px, 5vw, 56px);

    line-height: 1.1;

    letter-spacing: -2.2px;

    font-weight: 800;
}

.article-intro {
    max-width: 700px;

    margin: 21px auto 0;

    color: var(--text-secondary);

    font-size: 18px;

    line-height: 1.75;
}

.article-meta {
    margin-top: 17px;

    color: var(--text-light);

    font-size: 13px;
    font-weight: 500;
}


/* =========================================================
   25. ARTICLE TABLE OF CONTENTS
   ========================================================= */

.article-toc {
    max-width: 760px;

    margin: 46px auto 54px;

    padding: 25px 29px;

    background: #f8f9fc;

    border: 1px solid var(--border);

    border-radius: 14px;

    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.025);
}

.article-toc h2 {
    margin: 0 0 13px;

    color: var(--text-dark);

    font-size: 16px;

    line-height: 1.4;
}

.article-toc a {
    display: block;

    width: fit-content;

    padding: 5px 0;

    color: var(--text-secondary);

    font-size: 14px;

    line-height: 1.5;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.article-toc a:hover {
    color: var(--primary);

    transform: translateX(3px);
}


/* =========================================================
   26. ARTICLE CONTENT
   ========================================================= */

.article-content {
    max-width: 760px;

    margin: 0 auto;

    color: #344054;

    font-size: 16px;

    line-height: 1.85;
}

.article-content p {
    margin: 0 0 22px;
}

.article-content h2 {
    margin: 48px 0 17px;

    color: var(--text-dark);

    font-size: 28px;

    line-height: 1.3;

    letter-spacing: -0.7px;
}

.article-content h3 {
    margin: 32px 0 10px;

    color: var(--text-dark);

    font-size: 20px;

    line-height: 1.4;

    letter-spacing: -0.2px;
}

.article-content strong {
    color: var(--text-dark);

    font-weight: 700;
}


/* =========================================================
   27. ARTICLE LISTS
   ========================================================= */

.article-content ul,
.article-content ol {
    margin: 0 0 26px;

    padding-left: 25px;
}

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

    padding-left: 4px;
}

.article-content ul li::marker {
    color: var(--primary);
}

.article-content ol li::marker {
    color: var(--primary);

    font-weight: 700;
}


/* =========================================================
   28. ARTICLE LINKS
   ========================================================= */

.article-content a {
    color: var(--primary);

    font-weight: 600;
}

.article-content a:hover {
    color: var(--primary-dark);
}


/* =========================================================
   29. ARTICLE NOTE / TIP
   ========================================================= */

.article-note {
    margin: 30px 0;

    padding: 20px 22px;

    background: var(--primary-light);

    border-left: 4px solid var(--primary);

    border-radius: 8px;

    color: #344054;

    font-size: 15px;

    line-height: 1.7;
}

.article-note strong {
    color: var(--primary-dark);
}


/* =========================================================
   30. ARTICLE CTA
   ========================================================= */

.article-cta {
    margin-top: 55px;

    padding: 32px;

    background:
        linear-gradient(
            135deg,
            #f4f3ff,
            #eef2ff
        );

    border: 1px solid #dfe2ff;

    border-radius: 16px;
}

.article-cta h2 {
    margin: 0;

    color: var(--text-dark);

    font-size: 24px;

    line-height: 1.3;

    letter-spacing: -0.4px;
}

.article-cta p {
    margin: 10px 0 18px;

    color: var(--text-secondary);

    font-size: 15px;
}

.article-cta a {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px;

    border-radius: 8px;

    background: var(--primary);

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.article-cta a:hover {
    background: var(--primary-dark);

    color: #ffffff;

    transform: translateY(-1px);
}


/* =========================================================
   31. ARTICLE FIRST ELEMENTS
   ========================================================= */

.article-content > h2:first-child {
    margin-top: 0;
}

.article-content > p:first-child {
    font-size: 17px;
}


/* =========================================================
   32. TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-main {
        min-height: 330px;
    }

    .article-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns:
            1.5fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   33. MOBILE
   ========================================================= */

@media (max-width: 720px) {

    .blog-container {
        width:
            min(
                calc(100% - 30px),
                var(--container)
            );
    }


    /* HEADER */

    .header-inner {
        min-height: 64px;
    }

    .blog-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }


    /* HERO */

    .hero-content {
        padding: 62px 0 58px;
    }

    .hero-content h1 {
        font-size: 40px;

        letter-spacing: -1.8px;
    }

    .hero-content p {
        font-size: 16px;

        line-height: 1.7;
    }


    /* SECTIONS */

    .featured-section,
    .articles-section {
        padding: 60px 0;
    }

    .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 14px;

        margin-bottom: 27px;
    }

    .section-heading h2 {
        font-size: 28px;
    }


    /* FEATURED */

    .featured-card {
        min-height: 300px;

        padding: 25px;
    }

    .featured-card h3 {
        font-size: 24px;
    }

    .featured-card:not(.featured-main) h3 {
        font-size: 22px;
    }


    /* ARTICLES */

    .article-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .article-card {
        min-height: 280px;

        padding: 23px;
    }


    /* CTA */

    .blog-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px 25px;
    }

    .blog-cta h2 {
        font-size: 28px;
    }

    .cta-button {
        width: 100%;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px;

        padding-top: 45px;
        padding-bottom: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }


    /* ARTICLE PAGE */

    .article-page {
        padding: 50px 0 65px;
    }

    .article-header {
        text-align: left;
    }

    .article-header .article-category {
        margin-left: 0;
        margin-right: 0;
    }

    .article-header h1 {
        font-size: 36px;

        letter-spacing: -1.5px;
    }

    .article-intro {
        margin-left: 0;
        margin-right: 0;

        font-size: 16px;

        line-height: 1.7;
    }

    .article-toc {
        margin-top: 38px;
        margin-bottom: 42px;

        padding: 22px;
    }

    .article-content {
        font-size: 15px;

        line-height: 1.8;
    }

    .article-content > p:first-child {
        font-size: 16px;
    }

    .article-content h2 {
        margin-top: 40px;

        font-size: 25px;
    }

    .article-content h3 {
        margin-top: 28px;

        font-size: 19px;
    }

    .article-note {
        padding: 17px 18px;

        font-size: 14px;
    }

    .article-cta {
        margin-top: 42px;

        padding: 25px 21px;
    }

    .article-cta h2 {
        font-size: 22px;
    }

    .article-cta a {
        width: 100%;
    }
}


/* =========================================================
   34. SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .blog-container {
        width: calc(100% - 24px);
    }

    .blog-logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 33px;
        height: 33px;

        font-size: 16px;
    }


    /* HERO */

    .hero-content {
        padding: 54px 0 50px;
    }

    .hero-content h1 {
        font-size: 34px;

        letter-spacing: -1.5px;
    }


    /* FEATURED */

    .featured-card {
        min-height: 290px;

        padding: 22px;
    }

    .featured-card h3 {
        font-size: 22px;
    }


    /* ARTICLE CARDS */

    .article-card {
        padding: 21px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }


    /* ARTICLE */

    .article-page {
        padding-top: 40px;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .article-intro {
        font-size: 15px;
    }

    .article-meta {
        font-size: 12px;
    }

    .article-toc {
        padding: 19px;
    }

    .article-content h2 {
        font-size: 23px;
    }

    .article-content h3 {
        font-size: 18px;
    }
}
