<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) {
	.cross4 {
		margin-top: 1rem;
		margin-bottom: 1rem;
		position: relative;

		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.2rem;
		padding: 0rem;
		color: #424242;
		font-family: "Helvetica";
		font-size: 0.9rem;
		line-height: 1.15;
	}
	.cross4-container {
		background-color: #f9f4c8;
		padding: 0.8rem 0.8rem 0.8rem 0.8rem;
		width: 100%;
		display: flex;
		gap: 0.6rem;
		position: relative;
	}

	.cross4-img {
		width: 40%;
	}
	.cross4-right {
		width: 60%;
		display: flex;
		/* position: relative; */
		flex-direction: column;
		justify-content: space-between;
		/* background-color: blue; */
	}
	.cross4-obsah {
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
	}
	.cross4-obsah a {
		text-decoration: none;
	}
	.cross4-target {
		font-size: 0.8rem;
		/* padding-top: 0.9rem; */
	}
	.cross4-target a {
		font-weight: 600;
		text-decoration: underline;
	}
	.cross4-main-img {
    	width: 100%;
	    min-height: 125px;
		/* aspect-ratio: 1 / 1; */
	    object-fit: cover;
	}
	.cross4-header {
		font-weight: 600;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}
	.cross4-header a {
		text-decoration: none;
	}
	.cross4-logo {
		display: inline-block;
		position: absolute;
		bottom: -0.4rem;
		right: -0.4rem;
	}
	.cross4-logo img {
		height: 2.0rem;
		display: inline;
	}

}


/* mobil */
@media (max-width: 768px) {
	.cross4 {
		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;
	}
	.cross4-container {
		background-color: #f9f4c8;
		padding: 0.8rem 0.8rem 0.8rem 0.8rem;
		display: flex;
		gap: 0.8rem;
	}
	.cross4-img {
		width: 40%;
	}
	.cross4-right {
		width: 60%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.cross4-main-img {
    	width: 100%;
	    height: 100%;
		aspect-ratio: 1 / 1;
	    object-fit: cover;
	}
	.cross4-header {
		font-weight: 600;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}
	.cross4-header a {
		text-decoration: none;
	}
	.cross4-obsah {
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}
	.cross4-obsah a {
		text-decoration: none;
	}
	.cross4-target {
		font-size: 0.9rem;
	}
	.cross4-target a {
		font-weight: 600;
		text-decoration: underline;
	}
	.cross4-logo {
		display: inline-block;
		position: absolute;
		bottom: -0.2rem;
		right: -0.2rem;
	}
	.cross4-logo img {
		height: 2.0rem;
		display: inline;
	}
}


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