/* Start custom CSS */.main-content {
            max-width: 760px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        .article-category {
            display: inline-block;
            background: #eef0e9;
            color: #4a5640;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        h1.article-title {
            font-family: 'Merriweather', serif;
            font-size: 38px;
            color: #1a5276;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .article-subtitle {
            font-size: 20px;
            color: #666;
            font-weight: 300;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            margin-bottom: 40px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8a9a7b 0%, #6b7a5c 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #fff;
            font-weight: 600;
            flex-shrink: 0;
        }

        .author-info .name {
            font-weight: 600;
            color: #333;
            font-size: 15px;
        }

        .author-info .name a {
            color: #6b7a5c;
            text-decoration: none;
        }

        .author-info .name a:hover {
            text-decoration: underline;
        }

        .author-info .date {
            font-size: 13px;
            color: #888;
        }

        .article-body p {
            font-size: 17px;
            color: #444;
            margin-bottom: 22px;
        }

        .article-body h2 {
            font-family: 'Merriweather', serif;
            font-size: 26px;
            color: #1a5276;
            margin-top: 40px;
            margin-bottom: 18px;
        }

        .pullquote {
            font-family: 'Merriweather', serif;
            font-size: 22px;
            color: #4a5640;
            font-style: italic;
            border-left: 4px solid #8a9a7b;
            padding: 10px 0 10px 25px;
            margin: 35px 0;
            line-height: 1.5;
        }

        .takeaway-box {
            background: linear-gradient(135deg, #eef0e9 0%, #dfe4d7 100%);
            padding: 28px;
            border-radius: 12px;
            margin: 40px 0;
        }

        .takeaway-box h3 {
            color: #4a5640;
            font-size: 18px;
            margin-bottom: 12px;
        }

        .takeaway-box p {
            font-size: 15px;
            color: #555;
            margin: 0;
        }

        @media (max-width: 768px) {
            h1.article-title {
                font-size: 28px;
            }

            .article-subtitle {
                font-size: 17px;
            }


        }/* End custom CSS */