.tile_2,
.tile_3,
.tile_4 {
	float: left;
	/*overflow: hidden;*/
	padding: 0 8px 16px;
	/*height: auto;*/
	align-content: center;
	width: 100%;
}

@media (min-width: 601px) {
	.tile_2 {
		width: 50%;
		/*height: 450px;*/
	}

	.tile_3 {
		width: 50%;
		/*height: 450px;*/
	}

	.tile_4 {
		width: 50%;
		/*height: 350px;*/
	}
}

@media (min-width: 801px) {
	.tile_2 {
		width: 50%;
		/*height: 450px;*/
	}

	.tile_3 {
		width: 33.33%;
		/*height: 450px;*/
	}

	.tile_4 {
		width: 25%;
		/*height: 400px;*/
	}
}


.tileFoto {
	width: 100%;
}

.offers-title {
	height: 70px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(0deg, transparent 0px, white 20px);
	mask-image: linear-gradient(0deg, transparent 0px, white 20px);
}

.offers-price {
	height: 90px;
}

.offers-action {
	height: auto;
}

.fadingout-text-top {
	-webkit-mask-image: linear-gradient(0deg, transparent 10%, white 90%);
	mask-image: linear-gradient(0deg, transparent 0%, white 90%);
}

.noaccess-text-top {
	-webkit-mask-image: linear-gradient(0deg, transparent 10%, white 90%);
	mask-image: linear-gradient(0deg, transparent 10%, white 90%);
	filter: blur(4px);
}

.noaccess-text-bottom {
	-webkit-mask-image: linear-gradient(180deg, transparent 10%, white 90%);
	mask-image: linear-gradient(180deg, transparent 10%, white 90%);
	filter: blur(4px);
}

.noaccess-page-top {
	-webkit-mask-image: linear-gradient(0deg, transparent 10%, white 90%);
	mask-image: linear-gradient(0deg, transparent 10%, white 90%);
	filter: blur(4px);
	opacity: 50%;
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover, contain;
	width: 100%;
	height: 350px;
	overflow: hidden;
}

.noaccess-page-bottom {
	-webkit-mask-image: linear-gradient(180deg, transparent 10%, white 90%);
	mask-image: linear-gradient(180deg, transparent 10%, white 90%);
	filter: blur(4px);
	opacity: 50%;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover, contain;
	width: 100%;
	height: 300px;
	overflow: hidden;
	margin-bottom: 25px;
}

.target-animation.htmx-added {
	opacity: 0.5;
}

.target-animation {
	opacity: 1;
	transition: opacity 500ms ease-in-out;
}

.content-article-intro {
}

.content-article-text {
	line-height: 1.8em;
}

.content-paragraph {
	text-indent: 30px;
}

.content-image-box {
	clear: both;
	text-align: center;
}

.content-image {
	max-width: 100%;
	height: auto;
}

.content-image-description {
	font-size: 12px;
	padding: 0.01em 16px;
	text-align: left;
	line-height: normal;
}

.content-image-author {
	font-size: 12px;
	text-align: right;
}

.content-text-underline {
	text-decoration: underline;
}

.content-text-lined {
	text-decoration: line-through;
}

.content-text-center {
	text-align: center;
}

/*
* Tags cloud
*/
.tagsCloud {

	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

ul.cloud {
	list-style: none;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	line-height: 2.75rem;
	width: 100%;
}

ul.cloud a {
	--size: 4;
	--color: rgb(119, 118, 123);
	color: var(--color);
	font-size: calc(var(--size) * 0.25rem + 0.5rem);
	display: block;
	padding: 0.125rem 0.25rem;
	position: relative;
	text-decoration: none;
	opacity: calc((15 - (9 - var(--size))) / 15);
}

ul.cloud a[data-weight="1"] {
	--size: 1;
}

ul.cloud a[data-weight="2"] {
	--size: 2;
}

ul.cloud a[data-weight="3"] {
	--size: 3;
}

ul.cloud a[data-weight="4"] {
	--size: 4;
}

ul.cloud a[data-weight="5"] {
	--size: 6;
}

ul.cloud a[data-weight="6"] {
	--size: 8;
}

ul.cloud a[data-weight="7"] {
	--size: 10;
}

ul.cloud a[data-weight="8"] {
	--size: 13;
}

ul.cloud a[data-weight="9"] {
	--size: 16;
}

ul[data-show-value] a::after {
	content: " (" attr(data-weight) ")";
	font-size: 1rem;
}

ul.cloud a:focus {
	outline: 1px dashed;
}

ul.cloud a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	height: 100%;
	background: var(--color);
	transform: translate(-50%, 0);
	opacity: 0.15;
	transition: width 0.25s;
}

ul.cloud a:focus::before,
ul.cloud a:hover::before {
	width: 100%;
}

@media (prefers-reduced-motion) {
	ul.cloud * {
		transition: none !important;
	}
}