.frame-type-tour_filterlist:has(> header) {
    padding-top: 0;
}

.frame-type-tour_filterlist:not(:has(> header)) {
    padding-top: 40px;
}

.tx_tours.tours_filterlist {}
.tx_tours.tours_filterlist .news-list-view {
	overflow: hidden;
	flex-wrap: wrap;
	gap: 2rem;
    margin-top: 0 !important;
}
.tx_tours.tours_filterlist .news-list-view>.load-more {
    display: none;
}
.tx_tours.tours_filterlist .news-list-view .article {
	flex: 0 0 calc((100% - 6rem)/4);
	max-width: calc((100% - 6rem)/4);
}
.tx_tours.tours_filterlist .news-list-view .article .news-art-img {
	max-height: 31.25rem;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.tx_tours.tours_filterlist .news-list-view .article .news-art-img .news-img-wrap {}
.tx_tours.tours_filterlist .news-list-view .article .news-art-img .news-img-wrap a {
	display: inline-block;
	width: 100%;
}
.tx_tours.tours_filterlist .news-list-view .article .news-art-img .news-img-wrap img {
	aspect-ratio: 9 / 16;
	object-fit: cover;
	min-width: 100%;
	height: auto;
	transition: var(--transit-all-slow);
}

.tx_tours.tours_filterlist .news-list-view .article .news-art-content {
	height: 100%;
	padding: 1.5rem;
}
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .difficulty {
	display: inline-flex;
	position: relative;
	color: #fff;
	padding: .3rem .5rem .1rem;
	border-radius: 5px;
	font-weight: 400;
	font-size: var(--font-size-default);
	transition: var(--transit-all-slow);
}
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .difficulty.veryeasy { background-color: var(--color-brand); }
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .difficulty.easy { background-color: var(--color-brand); }
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .difficulty.medium { background-color: #f7a600; }
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .difficulty.difficult { background-color: #ed7550; }
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .infos {
	background-color: #ffffff;
	color: #000000;
	display: inline-flex;
	padding: .3rem .5rem;
	gap: 10px;
    border-radius: 5px;
}
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .infos > div {
	display: flex;
	gap: 5px;
	align-items: center;
}
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .infos > div::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .infos .length::before { background-image: var(--icon-b-poi-arrow-even); }
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .infos .ascent::before { background-image: var(--icon-b-poi-arrow-up); }
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .infos .descent::before { background-image: var(--icon-b-poi-arrow-down); }

.tx_tours.tours_filterlist .loadmore {
	display: block;
	margin: 2rem auto 0;
}
.tx_tours.tours_filterlist .hidden { display: none; }

.tx_tours.tours_filterlist form {
	display: flex;
	justify-content: center;
	/*margin-bottom: 24px;*/
}
.tx_tours.tours_filterlist .filter-category {
	box-shadow: 0 1px 10px #0000003b;
	border-radius: 5px;
}

/* ---------- */
.tx_tours.tours_filterlist .filter-popup,
.tx_tours.tours_filterlist .popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #000000c2;
	z-index: 9999;
	max-height: 100vh;
	min-width: var(--config-min-width);
	overflow: scroll;
}
.tx_tours.tours_filterlist .popup .popup-content {
	background-color: white;
	border: 1px solid white;
	border-radius: 10px;
	box-shadow: 0 0 4px gray;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 1rem;
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem;
	max-height: 80vh;
	min-width: var(--config-min-width);
	height: auto;
	overflow: visible scroll;
	position: relative;
	top: 10vh;
}
.tx_tours.tours_filterlist .popup .form-headline {
	font-size: 1.5em;
	font-weight: 700;
}
.tx_tours.tours_filterlist .popup label,
.tx_tours.tours_filterlist .popup .form-group label {
	display: flex;
	flex: 1 1 25%;
	cursor: pointer;
	max-width: 25%;
	padding-right: .5rem;
}
@media screen and (max-width: 1100px) {
	.tx_tours.tours_filterlist .popup label,
	.tx_tours.tours_filterlist .popup .form-group label {
		flex: 1 1 33%;
		max-width: 33%;
	}
}
@media screen and (max-width: 767px) {
	.tx_tours.tours_filterlist .popup label,
	.tx_tours.tours_filterlist .popup .form-group label {
		flex: 1 1 50%;
		max-width: 50%;
	}
}
@media screen and (max-width: 500px) {
	.tx_tours.tours_filterlist .popup label,
	.tx_tours.tours_filterlist .popup .form-group label {
		flex: 1 1 100%;
		max-width: 100%;
	}
}
.tx_tours.tours_filterlist .popup .form-group {
	border: none;
	padding-bottom: 1rem;
	margin-top: 1rem;
}
.tx_tours.tours_filterlist .popup .btn-close { font-size: .5rem; }
/*.tx_tours.tours_filterlist label,*/
/*.tx_tours.tours_filterlist .form-group label {*/
/*	display: flex;*/
/*	flex: 1 1 25%;*/
/*	cursor: pointer;*/
/*	max-width: 25%;*/
/*	padding-right: .5rem;*/
/*}*/
/*@media screen and (max-width: 1100px) {*/
/*	.tx_tours.tours_filterlist label,*/
/*	.tx_tours.tours_filterlist .form-group label {*/
/*		flex: 1 1 33%;*/
/*		max-width: 33%;*/
/*	}*/
/*}*/
/*@media screen and (max-width: 767px) {*/
/*	.tx_tours.tours_filterlist label,*/
/*	.tx_tours.tours_filterlist .form-group label {*/
/*		flex: 1 1 50%;*/
/*		max-width: 50%;*/
/*	}*/
/*}*/
/*@media screen and (max-width: 500px) {*/
/*	.tx_tours.tours_filterlist label,*/
/*	.tx_tours.tours_filterlist .form-group label {*/
/*		flex: 1 1 100%;*/
/*		max-width: 100%;*/
/*	}*/
/*}*/
.tx_tours.tours_filterlist .form-group {
	border: none;
	padding-bottom: 1rem;
	margin-top: 1rem;
}
.tx_tours.tours_filterlist .btn-close {
	font-size: .5rem;
}
.tx_tours.tours_filterlist .filter-controls {
	position: relative;
	bottom: 0;
	left: 0;
	width: 100%;
	min-height: 4rem;
	display: flex;
	justify-content: end;
	align-items: center;
	border-top: var(--feat-interface-shadow);
	gap: 1rem;
	padding-right: 1rem;
	padding-top: 1rem;
	flex-wrap: wrap;

	border-top-right-radius: 0;
	border-top-left-radius: 0;
	margin-top: calc(var(--feat-interface-controls-height) * -1);
	height: var(--feat-interface-controls-height);
	padding: .5rem 1rem;
}
.tx_tours.tours_filterlist .btn-filter { background-color: #ffffff; }
.tx_tours.tours_filterlist .filter-controls .form-headline {
	flex: 1 0 100%;
	font-size: var(--font-size-h3);
	font-weight: bold;
	padding: 1rem 0;
}
@media screen and (max-width: 767px) {
	.tx_tours.tours_filterlist .popup .popup-content {
		width: 100vw;
		height: 100dvh;
		top: 0;
		bottom: unset;
		max-height: 100vh;
		border-radius: 0;
	}
	.tx_tours.tours_filterlist .popup .filter-controls {
		margin: 0;
		position: fixed;
		bottom: 0;
		top: unset;
	}
}
.tx_tours.tours_filterlist .popup .col-left {
	display: flex;
	/*justify-content: space-between;*/
	flex-wrap: wrap;
	padding-bottom: 4rem;
    @media(max-width: 768px) {
        height: fit-content;
    }
}
.tx_tours.tours_filterlist .popup .col-left > span {
	width: 100%;
	margin-bottom: 1rem;
}
.tx_tours.tours_filterlist .popup .col-left label {
	width: calc(100%/3);
	margin-bottom: .8em;
}
.tx_tours.tours_filterlist .filter-popup.popup { overflow: hidden; }
.tx_tours.tours_filterlist .filter-popup.popup .filter-controls {
	position: relative;
	bottom: -18px;
	left: 0;
	width: 100%;
	height: 78px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	min-height: 4rem;
	background-color: var(--bs-white);
	display: flex;
	justify-content: end;
	align-items: center;
	border-top: none;
	box-shadow: 0 0 4px rgba(128, 128, 128, .5);
	gap: 1rem;
	flex-wrap: wrap;
	border-radius: 10px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 1rem;
}
.tx_tours.tours_filterlist .filter-control {
	display: flex;
	align-items: center;
	gap: 15px;
}
.tx_tours.tours_filterlist .popup .form-headline {
	font-size: 1.5em;
	font-weight: 700;
}
/*.tx_tours.tours_filterlist .popup input[type="checkbox"] {*/
/*	width: 20px;*/
/*	height: 20px;*/
/*	margin-right: 10px;*/
/*}*/

.tx_tours.tours_filterlist .news-list-view .article .news-art-content .teaser-text { max-height: none; }

@media(max-width: 1650px){
	.tx_tours.tours_filterlist .news-list-view .article {
        max-width: calc(33% - 2rem);
        flex: 0 0 var(--n-art-width);
        width: 100%;
	}
}

@media(max-width: 1350px){
	.tx_tours.tours_filterlist .news-list-view { justify-content: center; }
	.tx_tours.tours_filterlist .news-list-view .article {
		flex: unset;
		min-width: unset;
		max-width: calc(50% - 1rem);
		flex: 0 0 var(--n-art-width);
		width: 100%;
	}
}

@media screen and (max-width: 1020px) {
	.tx_tours.tours_filterlist .news-list-view .article {
		height: 20rem !important;
		max-height: 20rem !important;
		min-height: 20rem !important;
		max-width: calc(50% - 2rem);
		width: 100%;
		align-self: center;
		min-width: unset;
		overflow: hidden;
	}
	.tx_tours.tours_filterlist .news-list-view .article .news-art-content {
		min-height: 100% !important;
	}
}
@media(max-width: 767px){
	.tx_tours.tours_filterlist .news-list-view .article {
		/*flex: 0 0 100%;*/
		max-width: 100%;
	}
	/*.tx_tours.tours_filterlist .filter-popup.popup .filter-controls { bottom: 78px; }*/
	.tx_tours.tours_filterlist .filter-popup.popup .filter-controls { bottom: 0; }
	.tx_tours.tours_filterlist .news-list-view .news-art-content {
		padding: 1rem;
	}
}
.tx_tours.tours_filterlist .news-list-view .header>span {
    display: inline-flex;
    position: relative;
    background-color: var(--color-brand);
    color: #fff;
    padding: .3rem .5rem;
    border-radius: 5px;
    bottom: 1rem;
    font-weight: 400;
    font-size: var(--font-size-default);
    white-space-collapse: break-spaces;
    transition: var(--transit-all-slow)
}
.tx_tours.tours_filterlist .news-list-view .header>span:before {
    content: "";
    align-self: center;
    position: relative;
    display: inline-block;
    background: var(--icon-w-location) no-repeat center;
    background-size: contain;
    left: -2px;
    margin-right: 4px;
    width: 1rem;
    height: 1rem;
    min-width: 1rem
}
.tx_tours.tours_filterlist .news-list-view .header>h3 {
    margin-top: .5rem;
    margin-bottom: 0
}
.tx_tours.tours_filterlist .news-list-view .article:hover .news-art-content {
	padding-top: 1.5rem;
	padding-bottom: 2.5rem;
}
.tx_tours.tours_filterlist .found {
	/*font-size: 1.5rem;*/
	/*line-height: 1.75rem;*/
	/*font-weight: 700;*/
	/*!*margin: 2rem 0;*!*/
    margin: 2rem 0 1rem;
    @media(max-width: 1349px) {
        margin: 2rem auto 1rem;
        max-width: calc(370px * 2 + 2rem);
    }
    @media(max-width: 875px) {
        margin: 2rem 1rem 1rem;
    }
    @media(max-width: 767px) {
        margin: 2rem auto 1rem;
        max-width: 100%;
    }
}

.tx_tours.tours_filterlist .news-list-view .header>h3 {
	color: var(--color-text-alt);
	margin-bottom: 1rem;
}
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .teaser-text [itemprop="description"] {
	font-size: var(--font-size-default);
	position: absolute;
	overflow: hidden;
	max-height: 3.75rem;
	margin-top: 1rem;
	opacity: 0;
	visibility: hidden;
	line-height: 1.25rem;
}
.tx_tours.tours_filterlist .news-list-view .article:hover .news-art-content {
	padding-bottom: 2.5rem;
	background: var(--linear-gradient-bg);
}
.tx_tours.tours_filterlist .news-list-view .article:hover .news-art-img img {
	transform: scale(1.05);
}
.tx_tours.tours_filterlist .news-list-view .article:hover .news-art-content .teaser-text {
	overflow: visible;
}
.tx_tours.tours_filterlist .news-list-view .article:hover .news-art-content .teaser-text [itemprop="description"] {
	position: relative;
	max-height: 3.75rem;
	bottom: 20px;
	display: block;
	opacity: 1;
	visibility: visible;
}
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .teaser-text [itemprop="description"] p:not(:empty) {
	line-height: var(--line-height-header) !important;
	font-weight: var(--font-weight-text) !important;
	font-size: var(--font-size-default) !important;
	font-family: var(--font-alegreya) !important;
	margin: 0 !important;
	padding: 0 !important;
}
.tx_tours.tours_filterlist .news-list-view .article, .tx_tours.tours_filterlist .news-list-view .news-art-content {
	min-height: 31.25rem;
	max-height: 31.25rem;
	height: 100%;
}

#checked-filter-tags-tours {
    width: 100%;
    padding: 1rem;
    display: flex
;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

#checked-filter-tags-tours label {
    border: 1px solid #f4f4f4;
    padding: .2rem 1.6rem .2rem .8rem;
    border-radius: 5px;
    background: #f4f4f4;
    margin: 0 .2rem;
    cursor: pointer;
    transition: var(--transit-all-slow);
    white-space: nowrap;
    position: relative;
}
#checked-filter-tags-tours label:before {
    background-image: var(--icon-g-close);
    opacity: 0;
}
#checked-filter-tags-tours label:after, #checked-filter-tags label:before {
    content: "";
    display: inline-block;
    background-image: var(--icon-b-close);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 5px;
    width: .6rem;
    height: .6rem;
    position: absolute;
    right: 8px;
    top: 11px;
    transition: var(--transit-all-slow);
    opacity: 1;
}
#checked-filter-tags-tours input[type=checkbox] {
    display: none;
}
#checked-filter-tags-tours label:hover {
    color: var(--color-brand);
    border: 1px solid var(--color-brand);
}


/*@media (max-width: 1350px) {*/
/*    .tx_tours.tours_filterlist .found {*/
/*        text-align: center;*/
/*    }*/
/*}*/
@media (min-width: 1020px) {
    .tx_tours.tours_filterlist .news-list-view {
        margin-top: calc(var(--container-spacing) / 3.3);
    }
    .frame-type-tour_filterlist .loadmore.btn {
        margin-top: 50px !important;
    }
}
@media (max-width: 767px) {
    .tx_tours.tours_filterlist {
        margin-top: 0;
    }
    .tx_tours.tours_filterlist .filter {
        margin-bottom: 0;
        max-width: 100% !important;
        justify-content: space-between;
    }
    .tx_tours.tours_filterlist .filter-category {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .tx_tours.tours_filterlist .news-list-view {
        margin-top: 1.25rem !important;
        gap: 1.5rem;
    }
    /*.tx_tours.tours_filterlist .found {*/
    /*    margin: 4rem 0 0 0;*/
    /*}*/
    .tx_tours.tours_filterlist .news-list-view .article .news-art-content {
        padding: 1rem;
    }
    .tx_tours.tours_filterlist .news-list-view .article {
        max-width: 100% !important;
        flex-basis: 100% !important;
    }
    .tx_tours.tours_filterlist .news-list-view .header>h3 {
        font-size: 1.25rem;
        margin-top: 0;
    }
    #main>.frame-type-tour_filterlist:first-child {
        margin-top: 8rem;
   }


    .tx_tours.tours_filterlist .filter-search .filter-popup.popup .popup-content .submitbutt { display: none }
    /*.tx_tours.tours_filterlist .filter-popup.popup .popup-content, .filter-popup.popup .filter-controls {*/
    /*    top: unset !important;*/
    /*}*/
    .tx_tours.tours_filterlist :is(.filter-popup,.popup) :is(.popup-content,.filter-controls) :is(label,.form-wrapper label) {
        flex: 1 1 50%;
        max-width: 50%;
    }
    .tx_tours.tours_filterlist .filter-popup.popup .form-group {
        margin: 0;
        padding: 0;
        position: static;
        width: auto;
    }
    .tx_tours.tours_filterlist .filter-popup .btn-close:before, .tx_tours.tours_filterlist .filter-popup .btn-close:after {
        background-color: #000;
        height: 27px;
        top: -2px;
    }
    .tx_tours.tours_filterlist .filter-popup .btn-close {
        right: 1rem;
        top: 2rem;
        width: 22px;
        height: 22px;
    }
    .tx_tours.tours_filterlist form {
        flex-wrap: nowrap !important;
        border-radius: 8px !important;
        max-width: max-content !important;
        margin: 0 auto;
    }
    .tx_tours.tours_filterlist form .btn-search {
        font-size: 0;
        display: flex !important;
        align-items: center !important;
        justify-content: center;
        padding: 14px 20px;
        border-radius: 0 8px 8px 0;
    }
    .tx_tours.tours_filterlist form .btn-search::before {
        margin: 0;
        top: 0;

    }
    .tx_tours.tours_filterlist form .btn-filter {
        align-items: baseline !important;
        gap: 0;
        display: flex !important;
        height: 100%;
    }
    .tx_tours.tours_filterlist form .filter-calender::before, .tx_tours.tours_filterlist form .filter-category:not(.filter-search) .btn-filter::before {
        margin-right: 15px;
    }
    .tx_tours.tours_filterlist form .filter-calender {
        border-right: 1px solid #000;
        margin: 10px 0;
    }
    #checked-filter-tags-tours {
        padding: 0 8px;
        margin-top: 12px;
        gap: 8px;
        justify-content: flex-start;
    }
    #checked-filter-tags-tours label {
        margin: 0;
    }
}
@media(max-width: 400px) {
    .tx_tours.tours_filterlist form {
        max-width: 100% !important;
    }
}
@media (min-width: 768px) {
    .tx_tours.tours_filterlist .filter-category.filter-search .filter-popup.popup .popup-content .catwrapper input#searchword {
        position: relative;
        margin: 0 !important;
        top: 0;
        background: #fff;
        border: none;
        border-radius: 5px 0 0 5px;
        display: block;
        font-size: 1.25rem;
        height: 70px;
        line-height: 1;
        padding: 0 80px 0 40px;
        width: 100%;
    }
    .tx_tours.tours_filterlist .filter-category.filter-search .filter-popup.popup .popup-content .catwrapper input#searchword+.submitbutt {
        margin: 0;
        border-radius: 5px;
        border: none;
        height: 70px;
        width: 170px;
        position: relative;
    }
    .tx_tours.tours_filterlist .filter-category.filter-search .filter-popup.popup .popup-content .catwrapper input#searchword+.submitbutt>input {
        padding: .42rem 1.5rem;
        border-radius: 0 5px 5px 0;
        font-size: 1.25rem;
        margin: 0;
        height: 100%;
        width: 100%;
        min-width: unset;
        text-align: left;
    }
    .tx_tours.tours_filterlist .filter-category.filter-search .filter-popup.popup .popup-content .catwrapper input#searchword+.submitbutt::after {
        content: "";
        background-image: var(--icon-w-search);
        width: 25px;
        height: 25px;
        position: absolute;
        top: 50%;
        background-size: 100% 100%;
        transform: translateY(-50%);
        pointer-events: none;
        right: 20px;
    }
    .tx_tours.tours_filterlist .filter-category.filter-search .filter-popup.popup .popup-content {
        max-width: 780px;
    }
}
/*@media(min-width: 1020px) {*/
    .tx_tours.tours_filterlist .news-list-view .article {
        max-height: unset !important;
        min-height: unset !important;
    }
    .tx_tours.tours_filterlist .news-list-view .article .news-art-content {
        position: static;
        min-height: 260px !important;
        max-height: 260px !important;
        pointer-events: all;
        background: #F4F4F4 !important;
        display: block !important;
        padding-top: 0 !important;
        padding-bottom: 1.5rem !important;
        margin-top: -1rem !important;
    }

    .tx_tours.tours_filterlist .news-list-view .article .news-art-content .difficulty {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    .tx_tours.tours_filterlist .news-list-view .article .news-art-content .header>span {
        bottom: unset;
        transform: translateY(-50%);
        margin-bottom: -50%;
        color: #fff;
    }
    .tx_tours.tours_filterlist .news-list-view .article .news-art-content .header>h3>a {
        display: block !important;
    }
    .tx_tours.tours_filterlist .news-list-view .article:hover .news-art-content {
        padding: 0 1.5rem 1.5rem 1.5rem !important;
    }
    .tx_tours.tours_filterlist .news-list-view .article .news-art-content .teaser-text  {
        overflow: visible;
    }
    .tx_tours.tours_filterlist .news-list-view .article .news-art-content .teaser-text [itemprop="description"]  {
        position: static !important;
        /*overflow: visible;*/
        /*max-height: unset !important;*/
        opacity: 1 !important;
        visibility: visible !important;
        margin-bottom: 0
    }
    .tx_tours.tours_filterlist .news-list-view .article .news-art-img {
        max-height: 250px !important;
    }
    .tx_tours.tours_filterlist .news-list-view .article .news-art-content span, .tx_tours.tours_filterlist .news-list-view .article .news-art-content h3, .tx_tours.tours_filterlist .news-list-view .article .news-art-content .teaser-text {
        color: #21201d;
    }
    .tx_tours.tours_filterlist .news-list-view .article img {
        aspect-ratio: 4 / 3 !important;
    }
    .tx_tours.tours_filterlist .news-list-view .article .news-art-content .infos {
        position: absolute;
        bottom: 1.5rem;
        left: 1.5rem;
    }
/*}*/
.tx_tours.tours_filterlist .news-list-view .article .news-art-content .teaser-text [itemprop="description"] p:not(:empty) {
    line-height: var(--line-height-text) !important;
}
@media(max-width: 1019px) {
    :is(.tx_events.events_filterlist,.tx_tours.tours_filterlist,.tx_pois.pois_list,.tx_host.host_list) .filter~.news-list-view .article .teaser-text {
        /*position: relative;*/
        max-height: 3.75rem;
        bottom: 0;
        display: block;
        opacity: 1;
        visibility: visible;
    }
    :is(.tx_events.events_filterlist,.tx_tours.tours_filterlist,.tx_pois.pois_list,.tx_host.host_list) .news-list-view :is(.article) {
        /*aspect-ratio: 4 / 3;*/
        min-height: unset !important;
        max-height: unset !important;
        height: 100% !important;
    }

    .tx_tours.tours_filterlist .news-list-view .article .news-art-content {
        min-height: 220px !important;
        max-height: 220px !important;
    }

}
@media screen and (max-width: 766px) {
    .news-list-view .article .news-art-content, .tx_tours.tours_filterlist .news-list-view .article:hover .news-art-content {
        padding: 0 1rem 1rem !important;
    }
    .tx_tours.tours_filterlist .news-list-view .article .news-art-content {
        min-height: 210px !important;
        max-height: 210px !important;
    }
    .tx_tours.tours_filterlist .news-list-view .article .news-art-img {
        max-height: unset !important;
        aspect-ratio: 4 / 3;
    }
    .tx_tours.tours_filterlist .news-list-view .article .news-art-img .news-img-wrap img {
        aspect-ratio: unset;
    }
}

.tx_tours.tours_filterlist .news-list-view .article .news-art-content .teaser-text [itemprop="description"]{
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(var(--line-height-text) * 2) !important;
}
