.news-box {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-tile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 40rem;
    width: 35rem;
    background-color: var(--white);
    border-radius: 25px;
    border: 1px solid var(--default-border-color);
    padding: 2vw;
    font-size: 1.2rem;
    box-shadow: 0 0 10px #ccc;
    justify-content: space-between;
    align-items: center;
}


.news-tile__title {
    font-size: 1.2rem;
    text-decoration: underline;
    text-align: center;
}

.news-tile__link{
    width: 40%;
    padding: 1rem;
    border-radius: 25px;
    border: 1px solid var(--default-border-color);
    transition: all 0.5s ease;
}

.news-tile__link:hover {
    background-color: var(--light-grey);
    text-decoration: underline;
}

.news-tile__description {
    width: 100%;
    height: 10rem;
}