.news-tags {
	gap: 10px;
	align-items: center;
}
.news-tags .nav-item {
	margin-left: unset;
}

.news .tagsHeadline {
	font-weight: bold;
	align-self: center;
}
.btn-category {
	padding: 10px 5px;
    color: var(--color-font);
}
.btn-category.active {
    border-bottom: 2px solid var(--color-font);
}
.btn-category:hover {
    border-bottom: 2px solid var(--color-font);
}
.btn-news-archive {
    border-color: var(--color-primary);
    padding: 0.375rem 1.75rem;
    height: 38px;
    width: max-content;
    display: block;
    text-align: center;
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
    background-color: var(--color-white);
}
.btn-news-archive:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.news-list-view .pagination {
    justify-content: flex-end;
    gap: .5rem;
}
.news.news-single .badge.rounded-pill {
    background-color: var(--color-font)!important;
    padding: 6px 10px;
}
.news .card-footer .news-list-category {
    margin-right: 10px;
}
.news .alert-secondary {
    background-color: rgba(0,0,0,.03);
    border-color: rgba(0,0,0,.125);
}

.news.news-single .mediaelement .mediaelement-video > iframe {
	width: 100%;
	min-height: 250px;
}

.news.news-single .article .relations p.relatedHeading {
	font-size: 1.75rem;
	font-family: 'Helvetica Neue Regular', 'Open Sans Condensed', sans-serif;
	margin-bottom: .75rem;
	line-height: 1;
}
.news.news-single .article .relations li {
	margin-left: 0;
	margin-bottom: 5px;
}
.news.news-single .article .relations hr {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.news.news-single .article .relations .news-related-files-link {
	vertical-align: middle;
}
.news.news-single .article .relations .news-related-files-size {
	white-space: nowrap;
}

.news .news-list-view .owl-carousel .owl-stage{
	display: flex;
}
.news .news-list-view .owl-carousel .owl-stage .owl-item {
	padding: 10px;
}
.news .news-list-view .owl-carousel .article {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}
.news .news-list-view .owl-carousel .card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-radius: 0;
}
.news .news-list-view .card,
.news .news-list-view .card img,
.news .news-list-view .owl-carousel .card img {
    border-radius: 0;
}

.news .news-list-view .card {
    border-radius: 10px;
    background-color: var(--color-lightGrey);
    border-color: var(--color-lightGrey);
}
.news .news-list-view .card img, .news .news-list-view .owl-carousel .card img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 200px;
    transition: all 0.3s linear;
}
.news .news-list-view .card .thumbnail.preview:hover img {
    transform: scale(1.1);
    width: 100%;
    height: auto;
    transition: all 0.3s linear;
}
.news .news-list-view .card .thumbnail.preview {
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.pagination {
    line-height: 30px;
    margin-top: 5px;
}
.page-link {
    padding: .5rem 1rem;           
    border: 2px solid var(--color-primary);
    line-height: 30px;             
    color: var(--color-primary);   
    background-color: var(--color-white);
    border-radius: 10px;
}
.page-item:not(:first-child) .page-link {
    margin-left: calc(var(--bs-border-width)* -2);
    border-radius: 10px;
}
.page-item:first-child .page-link {
    border-radius: 10px;
}
.page-item.active .page-link,
.page-link:hover,
.page-link:focus,
.page-link:active {
    background: linear-gradient(to bottom, #F35458, var(--color-primary)) border-box;
    border-color: transparent;
    color: var(--color-white);
    box-shadow: none;
}

.page-item.disabled .page-link {
    background-color: var(--color-lightGrey);
    color: var(--color-midGrey);
}

.additionalInformations {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px 10px;
    align-items: center;
    margin-bottom: 10px;
}

.newsBadge, .newsListBagde {
    border-radius: 3rem;
    padding: 5px 10px;
    background: var(--color-primary);
    color: #ffffff;
    line-height: 1.25;
    font-size: .8125rem;
}
.newsListBagde {
    position: absolute;
    top: 20px;
    right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 1;
}

@media (max-width: 991px) {
	.news.news-single .mediaelement .mediaelement-video > iframe {
		min-height: 350px;
	}
}