.article-hero {
            position: relative;
            height: 70vh;
            overflow: hidden;
        }

        .article-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0, 0, 0, .2),
                    rgba(0, 0, 0, .8));
        }

        .article-hero-content {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1000px;
            color: #fff;
            z-index: 2;
        }

        .article-hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            line-height: 1.1;
            margin: 20px 0;
        }

        .article-meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            color: rgba(255, 255, 255, .85);
        }

        .article-wrapper {
            padding: 80px 0;
        }

        .article-grid {
            display: grid;
            grid-template-columns: 2.2fr 1fr;
            gap: 60px;
        }

        .article-content {
            background: #fff;
        }

        .article-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #444;
            margin-bottom: 28px;
        }

        .article-content h2 {
            font-size: 2rem;
            margin: 50px 0 20px;
            font-family: 'Playfair Display', serif;
        }

        .article-content blockquote {
            border-left: 4px solid #ff4d4d;
            padding-left: 25px;
            margin: 40px 0;
            font-size: 1.3rem;
            font-style: italic;
            color: #111;
        }

        .article-sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }

        .widget {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
        }

        .widget h3 {
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .widget ul {
            list-style: none;
        }

        .widget li {
            margin-bottom: 15px;
        }

        .widget a {
            text-decoration: none;
            color: #111;
        }

        .author-box {
            margin-top: 60px;
            background: #f7f7f7;
            padding: 35px;
            border-radius: 20px;
        }

        .author-box h4 {
            margin-bottom: 10px;
        }

        @media(max-width:900px) {

            .article-grid {
                grid-template-columns: 1fr;
            }

            .article-hero-content h1 {
                font-size: 2.5rem;
            }

            .article-sidebar {
                position: static;
            }
        }