#news {
    display: flex;
    flex-direction: column;
    max-width: 980px;
    margin: 0 auto;
    padding-top: 32px;
    row-gap: 4rem;
    animation: bounceFadeIn 1.2s ease-out forwards;
}

#news h1 {
    font-size: 3rem;
    font-weight: 600;
    margin: 1rem 0;
    max-width: 700px;
}

#news h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

#news .category {
    color: #6E6E73;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

#news .date {
    color: #6E6E73;
    font-size: 17px;
    font-weight: 500;
}

#news .tile {
    border-radius: 32px;
    background-color: white;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    overflow: clip;
    text-decoration: none;
}

#news .tile.square {
    flex-direction: column;
}



#news .tile:hover .zoom-image {
    transform: scale(1.075);
}

#news .tile .zoom-image {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}


#news .title {
    color: black;
    display: -webkit-box;
    font-size: 24px;
    font-weight: 550;
    margin: 0;
}

#news .title.long {
    font-size: 30px;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

