.news-articles {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-article {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.article-image {
    flex-shrink: 0;
    width: 300px;
    max-width: 100%;
}

.article-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article-content {
    flex: 1;
}

.news-article-body p {
    max-width: 800px;
    margin: 0;
}

@media (max-width: 992px) {
    .news-article {
        flex-direction: column;
    }

    .article-image {
        width: 100%;
    }

    .article-content {
        padding-left: 0;
    }
}
