/*********************** News ************************/
.news_card {
    padding: 0;
    position: relative;
}

.news_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 10px 10px 0 0;
}

.news_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 35px;
}

.news_info h3 {
    margin-top: -10px;
}

.news_date {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 10px 15px;
    box-sizing: border-box;
    border-radius: 0 10px 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news_date i {
    margin-right: 10px;
}

.news_date p {
    margin: 0;
    font-size: 14px;
}