.last-news {
    display: flex;
    gap: 5px;
}
.last-news .highlight{
    flex: 4;
}
.last-news .highlight img {
    display: block;
    width: 100%;
    border-radius: 10px;
}
.last-news .news-container {
    flex: 6;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.news {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.news a {
    text-decoration: none;
    color: black;
    background-color: #eee;
    padding: 10px;
    border-radius: 10px;
}
.news a:hover {
    background-color: #d1d1d1;
    transition: 0.3s;
}
.more-news-button {
    display: flex;
    justify-content: center;
}


.last-news img {
    display: block;
    width: 100%;
}