/* VozniNet – Commercial Guides archive V2 */

body:not(.vozninet-home) .vn-guides2-main {
	padding: 34px 0 64px;
}

body:not(.vozninet-home) .vn-guides2-shell {
	width: min(calc(100% - 32px), 1170px);
	margin: 0 auto;
}

body:not(.vozninet-home) .vn-guides2-header {
	margin: 0 0 28px;
	padding: 30px 34px;
	border: 1px solid rgba(255,255,255,.07);
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(51,94,105,.96), rgba(55,109,100,.82));
	box-shadow: 0 16px 38px rgba(0,0,0,.12);
}

body:not(.vozninet-home) .vn-guides2-kicker {
	display: inline-flex;
	margin: 0 0 14px;
	padding: 6px 10px;
	background: rgba(255,255,255,.10);
	color: #6de0a2;
	font-size: 11px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
}

body:not(.vozninet-home) .vn-guides2-heading {
	margin: 0;
	color: #fff;
	font-family: "Play-Bold", Arial, Helvetica, sans-serif;
	font-size: clamp(34px, 4vw, 48px);
	line-height: 1.07;
	letter-spacing: -.02em;
}

body:not(.vozninet-home) .vn-guides2-description {
	max-width: 860px;
	margin-top: 14px;
	color: rgba(255,255,255,.84);
	font-size: 15px;
	line-height: 1.65;
}

body:not(.vozninet-home) .vn-guides2-description p {
	margin: 0;
}

/* Featured item */
body:not(.vozninet-home) .vn-guides2-featured {
	margin: 0 0 28px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(0,0,0,.17);
}

body:not(.vozninet-home) .vn-guides2-featured-link {
	display: grid;
	grid-template-columns: 48% 52%;
	min-height: 330px;
	color: inherit;
	text-decoration: none;
}

body:not(.vozninet-home) .vn-guides2-featured-media {
	position: relative;
	min-width: 0;
	min-height: 330px;
	overflow: hidden;
	background: #1c3641;
}

body:not(.vozninet-home) .vn-guides2-featured-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 330px;
	object-fit: cover;
	transition: transform .35s ease;
}

body:not(.vozninet-home) .vn-guides2-featured:hover .vn-guides2-featured-media img {
	transform: scale(1.025);
}

body:not(.vozninet-home) .vn-guides2-featured-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 34px 38px;
}

body:not(.vozninet-home) .vn-guides2-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	color: #778a92;
	font-size: 11px;
	line-height: 1.35;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .035em;
}

body:not(.vozninet-home) .vn-guides2-meta span:last-child {
	color: #15945a;
}

body:not(.vozninet-home) .vn-guides2-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #a9b6bb;
}

body:not(.vozninet-home) .vn-guides2-featured-title {
	margin: 0 0 14px;
	color: #18313c;
	font-family: "Play-Bold", Arial, Helvetica, sans-serif;
	font-size: clamp(30px, 3vw, 40px);
	line-height: 1.08;
	letter-spacing: -.025em;
}

body:not(.vozninet-home) .vn-guides2-featured-excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 22px;
	color: #5f7077;
	font-size: 15px;
	line-height: 1.62;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

/* Regular cards */
body:not(.vozninet-home) .vn-guides2-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

body:not(.vozninet-home) .vn-guides2-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(0,0,0,.14);
	transition: transform .22s ease, box-shadow .22s ease;
}

body:not(.vozninet-home) .vn-guides2-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 42px rgba(0,0,0,.19);
}

body:not(.vozninet-home) .vn-guides2-card-link {
	display: flex;
	height: 100%;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

body:not(.vozninet-home) .vn-guides2-card-media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #1c3641;
}

body:not(.vozninet-home) .vn-guides2-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

body:not(.vozninet-home) .vn-guides2-card:hover .vn-guides2-card-media img {
	transform: scale(1.03);
}

body:not(.vozninet-home) .vn-guides2-card-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 23px 25px 25px;
}

body:not(.vozninet-home) .vn-guides2-card-title {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 12px;
	color: #18313c;
	font-family: "Play-Bold", Arial, Helvetica, sans-serif;
	font-size: clamp(24px, 2.2vw, 30px);
	line-height: 1.16;
	letter-spacing: -.015em;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

body:not(.vozninet-home) .vn-guides2-card-excerpt {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 20px;
	color: #63747b;
	font-size: 14px;
	line-height: 1.6;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

body:not(.vozninet-home) .vn-guides2-more {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: auto;
	color: #12955a;
	font-size: 14px;
	font-weight: 700;
}

body:not(.vozninet-home) .vn-guides2-more span {
	transition: transform .2s ease;
}

body:not(.vozninet-home) .vn-guides2-card:hover .vn-guides2-more span,
body:not(.vozninet-home) .vn-guides2-featured:hover .vn-guides2-more span {
	transform: translateX(3px);
}

body:not(.vozninet-home) .vn-guides2-featured-link:focus-visible,
body:not(.vozninet-home) .vn-guides2-card-link:focus-visible {
	outline: 3px solid #17b96c;
	outline-offset: -3px;
}

/* Placeholder */
body:not(.vozninet-home) .vn-guides2-featured-media.is-placeholder,
body:not(.vozninet-home) .vn-guides2-card-media.is-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(135deg, rgba(18,149,90,.20), rgba(52,90,105,.42)),
		#1c3641;
}

body:not(.vozninet-home) .vn-guides2-featured-media.is-placeholder span,
body:not(.vozninet-home) .vn-guides2-card-media.is-placeholder span {
	color: rgba(255,255,255,.86);
	font-family: "Play-Bold", Arial, Helvetica, sans-serif;
	font-size: 22px;
	letter-spacing: .08em;
}

/* Pagination */
body:not(.vozninet-home) .vn-guides2-pagination {
	margin: 38px 0 0;
}

body:not(.vozninet-home) .vn-guides2-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

body:not(.vozninet-home) .vn-guides2-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 10px;
	background: #294b58;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
}

body:not(.vozninet-home) .vn-guides2-pagination a.page-numbers:hover,
body:not(.vozninet-home) .vn-guides2-pagination a.page-numbers:focus {
	border-color: #18bd70;
	color: #65df9d;
}

body:not(.vozninet-home) .vn-guides2-pagination .page-numbers.current {
	border-color: #18bd70;
	background: #18bd70;
	color: #fff;
}

@media (max-width: 900px) {
	body:not(.vozninet-home) .vn-guides2-featured-link {
		grid-template-columns: 1fr;
	}

	body:not(.vozninet-home) .vn-guides2-featured-media {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	body:not(.vozninet-home) .vn-guides2-featured-media img {
		min-height: 0;
	}
}

@media (max-width: 720px) {
	body:not(.vozninet-home) .vn-guides2-main {
		padding-top: 22px;
	}

	body:not(.vozninet-home) .vn-guides2-shell {
		width: min(calc(100% - 22px), 1170px);
	}

	body:not(.vozninet-home) .vn-guides2-header {
		margin-bottom: 20px;
		padding: 24px 21px;
		border-radius: 14px;
	}

	body:not(.vozninet-home) .vn-guides2-heading {
		font-size: 34px;
	}

	body:not(.vozninet-home) .vn-guides2-featured {
		margin-bottom: 18px;
		border-radius: 14px;
	}

	body:not(.vozninet-home) .vn-guides2-featured-body {
		padding: 24px 21px 26px;
	}

	body:not(.vozninet-home) .vn-guides2-featured-title {
		font-size: 29px;
	}

	body:not(.vozninet-home) .vn-guides2-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	body:not(.vozninet-home) .vn-guides2-card {
		border-radius: 14px;
	}

	body:not(.vozninet-home) .vn-guides2-card-body {
		padding: 21px;
	}

	body:not(.vozninet-home) .vn-guides2-card-title {
		font-size: 24px;
	}
}
