
/* NEWS STYLING */

.news-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

/*New item card*/
.news-item-card {
    background: whitesmoke;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    border-radius: 5px;
    height: 130px;
    position: relative;
}


/*News item thumbnail*/
.news-item-thumbnail {
    height: 130px;
}

.news-item-thumbnail > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 4px 0 0 4px;
}

/*New item body*/
.news-item-body {
    padding: 1rem !important;
    height: 130px;
    overflow: hidden;
}

.vliznews_item_title {
    font-size: 14px;
    font-weight: bolder;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item-readmore {
    font-size: 12px;
    text-align: right;
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: whitesmoke;
    padding: 2px;
}

.news-item-text {
    font-size: 12px;
    max-height: 50px;
    overflow: hidden;
}

.news-item-addition {
    font-style: italic;
    font-size: 10px;
    padding-bottom: 10px;
}


