.news__section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.news__article {
    width: 60%;
    border: 3px solid yellow;
    border-radius: 30px;
    background-color: black;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.news__link {
    width: 100%;
    display: flex;
    justify-content: center;
}

.news__image {
    max-width: 80%;
    max-height: 40%;
    justify-self: flex-end;
}


.news__text {
    line-height: 1.0;
    margin-bottom: 2.5rem
}