body:has(#news-post) {
    background-color: var(--smoke-300);
}

#news-post {
    gap: 4cqw;
    max-width: 1280px;
    margin: 0 auto;
    background-color: transparent;

}

#news-post .post-title {
    font-size: 6cqw;
    width: 85%;
    text-wrap: balance;
}

#news-post .main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: row;
    /* gap: 16px; */
    align-self: center;
}

#news-post .main-content img {
    position: sticky;
    top: 4rem;
}


#news-post .main-content .column {
    gap: 1.5rem;
    text-wrap: pretty;
}

#news-post .main-content .column p {
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(0,0,0,0.7);
}

#news-post .main-content .column h1, #news-post .main-content .column h2, #news-post .main-content .column h3, #news-post .main-content .column h4, #news-post .main-content .column h5, #news-post .main-content .column h6 {
    font-size: 1.5rem;
    font-weight: 500;
    color: black;
    line-height: 1.2
}

#related-posts {
    padding-bottom: 4rem;
}

#related-posts .related-posts-body {
    border-top: 1px solid var(--smoke-200);
    border-bottom: 1px solid var(--smoke-200);
}

#related-posts .related-posts-list {
    border-left: 1px solid var(--smoke-200);
    max-width: 1280px;
    margin: 0 auto;
    /* border-right: 1px solid var(--smoke-200); */
}

#related-posts .related-posts-header {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

#related-posts .related-post-item {
    
    border-right: 1px solid var(--smoke-200);
    width: 100%;

}

#related-posts .related-post-item a {
    border-right: none;
    padding: 6cqw;
    gap: 3cqw;
}

#related-posts .related-post-item img {
    width: 100%;
    object-fit: cover;

    aspect-ratio: 1.1/1;
}

#related-posts .related-post-item h3{
    font-size: 6cqw;
    line-height: 1.2;
    font-weight: 500;
}

@media only screen and (max-width: 48rem) {

    #news-post .main-content {
        grid-template-columns: 1fr;
    }

    #news-post .post-title {
        font-size: 1.8rem;
    }

    #news-post .main-content .column h1, #news-post .main-content .column h2, #news-post .main-content .column h3, #news-post .main-content .column h4, #news-post .main-content .column h5, #news-post .main-content .column h6 {
        font-size: 1.2rem;
    }

    #related-posts .related-posts-body {
        padding: 0 1rem;
    }

    #related-posts .related-posts-list {
        display: block;
    }
    #related-posts .related-post-item {
        border-bottom: 1px solid var(--smoke-200);
    }

    #related-posts .related-post-item > a{
        padding: 1rem;
    }

    #related-posts .related-post-item .related-post-title {
        font-size: 1.5rem;
    }


}