
:root {
	--color1: #a05d5d;
	--color2: #382c2c;
	--color3: #d9bebe;
	--bg: #fff5f5;
}

@font-face {
	font-family: MartelExtra;
	src: url("https://d39-a.sdn.cz/d_39/c_static_gS_L/n5BCk/fonts/Martel/martel-extrabold.woff2") format('woff2');
}

@font-face {
	font-family: Martel;
	src: url("https://d39-a.sdn.cz/d_39/c_static_gS_L/n5BCk/fonts/Martel/martel-regular.woff2") format('woff2');
}

@font-face {
	font-family: Montserrat;
	src: url("https://d39-a.sdn.cz/d_39/c_static_gS_L/n5BCk/fonts/Montserrat/montserrat-regular-webfont.woff2") format('woff2');
}





html {
	box-sizing: border-box
}

  *,
  *:before,
  *:after {
	box-sizing: inherit
}

body {
	margin: 0;
	display: flex;
	flex-direction: column;
	height: 100vh;
	font-family: 'Martel', serif;
	font-style: normal;
	color: var(--color2);
	background-color: var(--bg);
}



a {
	text-decoration: none;
	color: inherit;

}

.back, .check, .reset, .title, .cat-label, .cover-txt {
	font-family: 'Montserrat', sans-serif;
    font-style: normal;
	font-weight: 400;
}

.header {
	width: 1170px;
	max-width: 100%;
	margin: 0 auto 60px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--color3);
	padding: 20px;
}

.logo {
	width: 229px;
    height: 34px;
    margin-top: 6px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
	background-image: url('logo_seznam-zpravy_dark.svg')
}

.link {
	color: var(--color1);
	text-decoration: underline;
}

.toggle {
	display: flex;
	justify-content: space-between;
	width: 650px;
	max-width: 100%;
	margin: 40px auto;
}

.toggle input {
	display: none;
}

.toggle input:checked+label {
	background-color: var(--color1);
	color: white;
	cursor: default;

}

.toggle label {
	transition: .3s;
}
.btn-big {
	font-family: 'MartelExtra', serif;
	/* background-color: var(--color3); */
	color: var(--color1);
	border: 1px solid var(--color3);
	width: 300px;
	border-radius: 5px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 60px;
	font-size: 24px;
	line-height: 1;
	padding-inline: 8px;
	font-weight: 800;
	cursor: pointer;
	transition: .3s;
	user-select: none;
}

.btn-big:hover {
	background-color: var(--color3);
	color: white;
}



.btn-big.active {
	background-color: var(--color1);
}

.back {
	background-color: var(--color1);
	color: white;
	width: 100px;
	border-radius: 5px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 40px;
	font-size: 16px;
	line-height: 1;
	padding-inline: 8px;
	transition: .3s;

}
.back:hover {
	background-color: transparent;
	border: 1px solid var(--color3);
	color: var(--color1);
}

.back:hover .arrow {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='320' width='192'%3E%3Cpath d='M192 160L20.7 320 0 300.7 150.5 160 0 19.4 20.7 0z' fill='%23a05d5d'/%3E%3C/svg%3E");
}

.headline {
	font-size: 40px;
	line-height: 1.2;
}

.para {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 300;
}


::selection {
	background: #cc0000;
	color: #fff;
}

::-moz-selection {
	background: #cc0000;
	color: #fff;
}

::-webkit-selection {
	background: #cc0000;
	color: #fff;
}

.container {
	width: 1170px;
	max-width: 100%;
	margin: 0 auto auto auto;
	text-align: center;
	padding-inline: 20px;
}

.wrap {
	width: 586px;
	max-width: 100%;
	margin-inline: auto;
}

.content {
	width: 780px;
	max-width: 100%;
	margin-inline: auto;
}



.arrow {
	width: 8px;
	height: 12px;
	display: inline-block;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='320' width='192'%3E%3Cpath d='M192 160L20.7 320 0 300.7 150.5 160 0 19.4 20.7 0z' fill='%23fff'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	left: 5px;
	transition: .3s;
}

.categorie-wrap {
	width: 1400px;
	max-width: 100%;
	margin-inline: auto;
	display: flex;
	justify-content:center;
	flex-wrap: wrap;
	gap: 10px;
	margin-block: 30px 50px;
	position: relative;
	padding-top: 20px;
}


.check label, .reset {
	color: var(--color1);
	font-size: 16px;
	line-height: 1.2;
	border: 1px solid var(--color3);
	display: inline-block;
	padding: 10px 18px;
	border-radius: 50px;
	background-color: transparent;
	cursor: pointer;
	user-select: none;
}

.reset.active {
	background-color: var(--color1);
	color: white;
	pointer-events: none;

}


.check input {
	display: none;
}

.check input:checked+label {
	background-color:  var(--color1);
	color: white;
	border: 1px solid transparent;
}

.check label, .reset {
	transition: .3s;
}

.check label:hover, .reset:hover {
	background-color:  var(--color3);
	color: white;
	border: 1px solid transparent;
}


.card {
	width: calc((100% / 5) - 16px);
	max-width: 100%;
	position: relative;
	display: inline-block;
	/* padding-inline: 5px; */
	margin-top: 20px;
	
}

.card-sizer {
	width: calc( (100% / 5) - 16px);
	margin-left: 20px;
}

.card:hover .cover-bg {
	opacity: .8;
}

.card:hover .cover-txt {
	opacity: 1;
}

.card:hover .cover-eye {
	opacity: 1;
}

.card:hover .img {
	transform: scale(1.1);
}

.zoom  {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
	aspect-ratio: 450/300;
}

.card .img {

	width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 300px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 5px;
	position: relative;
	background-size: cover;
	transition: .3s;
	background-color:  var(--color3);
	object-fit: cover;
}
.card .cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.card .cover-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: var(--color2);
	opacity: 0;
	transition: .3s;

}

.cover-eye {
	width: 90px;
	height: 50px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='a' xmlns='http://www.w3.org/2000/svg' width='617' height='358' viewBox='0 0 617 358'%3E%3Cpath d='M389.44,323.56c-27.17,9.37-55.46,15.14-83.91,15.14C154.14,338.7,13.54,175.42,13.54,175.42c0,0,140.6-163.27,291.98-163.27s297.94,163.27,297.94,163.27c0,0-52.78,58.8-127.72,105.83' style='fill:none; stroke:%23fff; stroke-miterlimit:10; stroke-width:20px;'/%3E%3Ccircle cx='308.5' cy='175.42' r='101.9' transform='translate(-33.69 269.52) rotate(-45)' style='fill:none; stroke:%23fff; stroke-miterlimit:10; stroke-width:20px;'/%3E%3Cline x1='380.55' y1='247.48' x2='478.92' y2='345.85' style='fill:none; stroke:%23fff; stroke-miterlimit:10; stroke-width:20px;'/%3E%3C/svg%3E");
	background-size: cover;
	position: relative;
	transition: .3s;
	opacity: 0;
}

.cover-txt {
	color: white;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	position: relative;
	transition: .3s;
	opacity: 0;
}

.des {
	height: 90px;
}

.title {
	font-size: 20px;
	line-height: 1.2;
	font-weight: 500;
	text-align: left;
	display: -webkit-box;             
  -webkit-line-clamp: 2;             
  -webkit-box-orient: vertical;      
  overflow: hidden;                 
  text-overflow: ellipsis;
  height: auto;          

}

.cat-label {
	font-size: 16px;
	line-height: 1.2;
	text-align: left;
	color: var(--color1);
	margin: 0;
	position: relative;
	padding-left: 35px;
	&::before {
		content: '';
		width: 20px;
		height: 1px;
		background-color: var(--color1);
		border-radius: 50%;
		position: absolute;
		left: 0px;
		top: 50%;
		transform: translateY(-50%);
	}
}

.native-wrapper {
	position: relative;
	width: min(98%, 2330px);
	margin-inline: auto;
}

.loader-wrap {
	position: relative;
}

.loader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--bg);
	transition: .3s;
	z-index: 10;
}

.footer {
	width: 800px;
	max-width: 100%;
	margin: 100px auto 50px auto;
	text-align: center;
	padding-bottom: 80px;
	display: none;
}

a.privacy {
	text-decoration: underline;
}

.copyright {
	font-size: 18px;
	font-weight: 800;
	margin: 10px 0;
}

#arr-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background-color: var(--color1);
	border-radius: 50%;
	cursor: pointer;
	transition: .3s;
	display: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10.9 20.41L25 6.31l14.1 14.1M25 6.31v37.38'/%3E%3C/svg%3E");
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;

}

#arr-top:hover {
	background-color: var(--color2);
}


@media screen and (max-width: 2330px) {
	.card .img {
		/* height: 13vw; */
	}
}

@media screen and (max-width: 1500px) {
	.card {
		width: calc( (100% / 4) - 16px);
	}

	.card-sizer {
		width: calc( (100% / 4) - 16px);
	}
	.native-wrapper {
		width: min(98%, 2000px);

	}

	.title {
		font-size: 16px;
		margin-top: 15px;
	}

	.cat-label {
		font-size: 14px;
	}

	.des {
		height: 70px;
	}
}

@media screen and (max-width: 1200px) {
	.card {
		width: calc( (100% / 3) - 16px);
	}

	.card-sizer {
		width: calc( (100% / 3) - 16px);
	}



	.native-wrapper {
		width: min(98%, 1200px);

	}


}



@media screen and (max-width: 992px) {
	.card {
		width: calc( (100% / 2) - 10px);
	}

	.card-sizer {
		width: calc( (100% / 2) - 10px);
	}

	

	.title {
		font-size: 16px;
		margin-top: 15px;
		margin-bottom: 10px;
	}

	.cat-label {
		font-size: 14px;
	}

	.native-wrapper {
		width: min(98%, 900px);
	}
}

@media screen and (max-width: 680px) {
	.toggle {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.logo {
		width: 70px;
		height: 70px;
		background-image: url('logo_seznam-zpravy_dark_mobil.svg');
		margin-top: 0;
	}

	.header {
		padding:0 10px;
		margin-bottom: 20px;
	}

	.headline {
		font-size: 30px;
	}

	.para {
		font-size: 17px;
	}

	.br {
		display: none;
	}

	.check label, .reset {
		font-size: 14px;
		padding: 8px 14px;
	}

	.categorie-wrap {
		gap: 3px;
	}
}

@media screen and (max-width: 580px) {
	.card {
		width: 100%;
		padding-inline: 15px;
	}

	.card-sizer {
		width: 100%;
		margin-left: 0;
	}

	.native-wrapper {
		width: min(100%, 350px);
	}

	.des {
		height: auto;
	}
}