
    .single-news-page {
        padding: 60px 0;
        background: #fff;
    }

    .news-wrapper {
        display: flex;
        gap: 45px;
    }

    /* LEFT CONTENT */
    .news-content {
        width: 72%;
    }

    /* RIGHT SIDEBAR */
    .news-sidebar {
        width: 28%;
        position: sticky;
        top: 20px;
        height: fit-content;
    }

    /* CATEGORY */
    .news-category {
        color: #d60000;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    /* TITLE */
    .news-title {
        font-size: 52px;
        line-height: 1.2;
        font-weight: 800;
        color: #111;
        margin-bottom: 15px;
    }

    /* META */
    .news-meta {
        color: #777;
        font-size: 14px;
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .news-meta span {
        margin-right: 10px;
    }

    /* FEATURED IMAGE */
    .news-image {
        overflow: hidden;
        border-radius: 12px;
    }

    .news-image img {
        width: 100%;
        display: block;
        border-radius: 12px;
        transition: .4s ease;
    }

    .news-image img:hover {
        transform: scale(1.03);
    }

    /* ARTICLE CONTENT */
    .news-body {
        margin-top: 35px;
    }

    .news-body p {
        font-size: 19px;
        line-height: 2;
        color: #333;
        margin-bottom: 22px;
    }

    .news-body h2 {
        font-size: 32px;
        font-weight: 700;
        margin: 35px 0 15px;
        color: #111;
    }

    .news-body blockquote {
        background: #fafafa;
        border-left: 5px solid #d60000;
        padding: 25px;
        margin: 30px 0;
        font-size: 24px;
        font-style: italic;
        line-height: 1.7;
        color: #444;
        border-radius: 8px;
    }

    /* SIDEBAR BOX */
    .related-news {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, .04);
    }

    .related-news h3 {
        font-size: 22px;
        font-weight: 800;
        text-transform: uppercase;
        color: #111;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #d60000;
    }

    .related-news ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .related-news li {
        border-bottom: 1px solid #f1f1f1;
    }

    .related-news li:last-child {
        border-bottom: none;
    }

    .related-news a {
        display: block;
        padding: 14px 0;
        color: #222;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        transition: .3s ease;
    }

    .related-news a:hover {
        color: #d60000;
        padding-left: 8px;
    }

    @media(max-width:991px) {

        .news-wrapper {
            flex-direction: column;
        }

        .news-content,
        .news-sidebar {
            width: 100%;
        }

        .news-sidebar {
            position: static;
        }

        .news-title {
            font-size: 34px;
        }

        .news-body p {
            font-size: 17px;
            line-height: 1.8;
        }

        .news-body blockquote {
            font-size: 20px;
        }

    }


