#news-posts {
    display: flex;
    align-items: start;
    gap: 4rem;
    justify-content: space-between;
    margin-bottom: 3rem;
    width: min(1920px,100% - 4rem);
}

.post-content {
   flex: 1;
}

.content-sidebar {
    max-width: 440px;
}

.post-content p {
    font-size: 2rem;
}

.author-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid green;
    box-shadow: 0 5px 8px #0000009e;
    object-fit: cover;
}

.author-post {
    font-weight: 500;
}

.author-name {
    margin-top: 1rem;
}

.author-details {
    font-size: 2rem;
    margin-top: 10rem;
    gap: 0.5rem;
    display: flex;
    width: fit-content;
    flex-direction: column;
    align-items: center;
}


@media (max-width :1288px) {
    .post-content figure {
        text-align: center;
    }

    .content-sidebar {
        max-width: unset;
    }

    .page-content {
        width: 100%;
    }
}