<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* desktop */
@media (min-width: 769px) {
	.cross2 {
		margin-top: 1rem;
		margin-bottom: 1rem;
		position: relative;

		display: flex;
		gap: 0.2rem;
		padding: 0rem;
		color: #424242;
		font-family: "Helvetica";
		font-size: 0.9rem;
		line-height: 1.25;
	}
	.cross2-container {
		background-color: #f9f4c8;
		padding: 0.8rem 0.8rem 0.8rem 0.8rem;
		width: 50%;
		display: flex;
		gap: 0.8rem;
		/* position: relative; */
	}
	.cross2-img {
		width: 40%;
	}
	.cross2-right {
		width: 60%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.cross2-obsah {
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
	}
	.cross2-obsah a {
		text-decoration: none;
	}
	.cross2-header { /* span v 'obsah' */
		font-weight: 600;
	}

	.cross2-target {
		font-size: 0.8rem;
		/* padding-top: 0.9rem; */
	}
	.cross2-target a {
		font-weight: 600;
		text-decoration: underline;
	}
	.cross2-main-img {
		/* height: 100%; */
		width:  100%;
		/* aspect-ratio: 1 / 1; */
		object-fit: cover;
	}
	.cross2-logo {
		display: inline-block;
		position: absolute;
		bottom: -0.4rem;
		right: -0.4rem;
	}
	.cross2-logo img {
		height: 2rem;
		display: inline;
	}
}

/* mobil */
@media (max-width: 768px) {
	.cross2 {
		margin-top: 1.5rem;
		margin-bottom: 1rem;
		position: relative;

		display: flex;
		flex-direction: column;
		gap: 0.5rem;
		padding: 0rem;
		color: #424242;
		font-family: "Helvetica";
		font-size: 1.15rem;
		font-weight: 400;
		line-height: 1.15;
	}
	.cross2-container {
		background-color: #f9f4c8;
		padding: 0.8rem 0.8rem 0.8rem 0.8rem;
		display: flex;
		gap: 0.8rem;
		/* position: relative; */
	}
	.cross2-img {
		width: 40%;
	}
	.cross2-right {
		width: 60%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.cross2-main-img {
		width: 100%;
		height: 100%;
		aspect-ratio: 1 / 1;
		object-fit: cover;
	}

	.cross2-obsah {
		/* padding-top: 0.4rem; */
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 5;
	}
	.cross2-obsah a {
		text-decoration: none;
	}
	.cross2-header {
		font-weight: 600;
	}
	.cross2-header a {
		text-decoration: none;
	}

	.cross2-target {
		/* padding-top: 1.0rem; */
		font-size: 1.0rem;
	}
	.cross2-target a {
		font-weight: 600;
		text-decoration: underline;
	}
	.cross2-logo {
		display: inline-block;
		position: absolute;
		bottom: -0.2rem;
		right: -0.2rem;
	}
	.cross2-logo img {
		height: 2rem;
		display: inline;
	}
}

.dark .cross2-container {
	background-color: brown;
	color: #fff;
}
</pre></body></html>