/* ============================================================
   IndustryTech – Stránkové widgety (it-stranky.css) v1.16.0
   ============================================================ */

:root {
	--itc-navy: #16365F;
	--itc-navy-dark: #102A4C;
	--itc-gold: #F5B301;
	--itc-white: #FFFFFF;
	--itc-gray: #C7D0DC;
	--itc-font: inherit;
}

/* ============================================================
   IT PAGE HERO
   ============================================================ */

.it-ph {
	position: relative;
	display: flex;
	align-items: center;
	background-color: var(--itc-navy);
	overflow: hidden;
	padding: 64px 0;
	box-sizing: border-box;
}

.it-ph *,
.it-mk * {
	box-sizing: border-box;
}

.it-ph__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.it-ph__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--itc-navy) 0%, rgba(22, 54, 95, 0.85) 45%, rgba(22, 54, 95, 0.65) 100%);
	z-index: 1;
}

.it-ph__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	/* Rovnaký výpočet ako Blocksy container: min(site width, 100% - 2×edge) */
	max-width: min(var(--it-ph-maxw, 1440px), calc(100% - 2 * var(--it-ph-edge, 5vw)));
	margin: 0 auto;
	padding: 0;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 56px;
	align-items: center;
}

.it-ph--no-card .it-ph__inner {
	grid-template-columns: minmax(0, 1fr);
}

.it-ph--no-card .it-ph__content {
	max-width: 640px;
}

/* --- Eyebrow --- */

.it-ph__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--itc-gold);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.it-ph__eyebrow::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 2px;
	background: var(--itc-gold);
}

/* --- Nadpis / popis --- */

.it-ph__title {
	color: var(--itc-white);
	font-size: clamp(34px, 4.5vw, 56px);
	font-weight: 800;
	line-height: 1.08;
	margin: 0 0 20px;
}

.it-ph__title-hl {
	display: block;
	color: var(--itc-gold);
}

.it-ph__desc {
	color: var(--itc-gray);
	font-size: 17px;
	line-height: 1.65;
	max-width: 560px;
	margin: 0 0 32px;
	text-align: left;
}

/* --- CTA --- */

.it-ph__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px 28px;
}

.it-ph__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--itc-gold);
	color: var(--itc-navy);
	font-weight: 700;
	font-size: 15px;
	padding: 15px 28px;
	border-radius: 3px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.it-ph__btn:hover {
	background: #e0a500;
	color: var(--itc-navy);
	transform: translateY(-1px);
}

.it-ph__btn-arrow {
	transition: transform 0.2s ease;
}

.it-ph__btn:hover .it-ph__btn-arrow {
	transform: translateX(3px);
}

.it-ph__btn--outline {
	background: transparent;
	color: var(--itc-white);
	border: 1px solid rgba(255, 255, 255, 0.55);
}

.it-ph__btn--outline:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--itc-white);
}

/* --- Telefón --- */

.it-ph__phone {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}

.it-ph__phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--itc-gold);
	color: var(--itc-gold);
	flex-shrink: 0;
}

.it-ph__phone-icon svg {
	width: 20px;
	height: 20px;
}

.it-ph__phone-txt {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.it-ph__phone-txt small {
	color: var(--itc-gray);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.it-ph__phone-txt strong {
	color: var(--itc-white);
	font-size: 18px;
	font-weight: 700;
}

.it-ph__phone:hover .it-ph__phone-txt strong {
	color: var(--itc-gold);
}

/* --- Karta --- */

.it-ph__card {
	position: relative;
	background: var(--itc-navy-dark);
	border: none;
	padding: 36px 36px 32px;
	box-shadow: 0 18px 45px rgba(6, 17, 33, 0.35);
}

.it-ph__card-corner {
	position: absolute;
	top: 0;
	left: 0;
	width: 52px;
	height: 52px;
	background: var(--itc-gold);
	clip-path: polygon(0 0, 100% 0, 0 100%);
}

.it-ph__eyebrow--card {
	margin-bottom: 12px;
	font-size: 12px;
}

.it-ph__card-title {
	color: var(--itc-white);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 10px;
}

.it-ph__card-text {
	color: var(--itc-gray);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 22px;
	text-align: left;
}

.it-ph__card-items {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 36px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.it-ph__card-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.it-ph__card-flag {
	width: 28px;
	height: auto;
	margin-bottom: 6px;
	display: block;
	/* Reset globálnych img štýlov témy/Elementora */
	border: 0 !important;
	box-shadow: none !important;
	background: none !important;
	padding: 0 !important;
	border-radius: 2px;
}

.it-ph__card-label {
	color: var(--itc-white);
	font-weight: 700;
	font-size: 15px;
}

.it-ph__card-item .it-ph__card-label:only-child,
.it-ph__card-item .it-ph__card-label {
	letter-spacing: 0.02em;
}

.it-ph__card-sublabel {
	color: var(--itc-gray);
	font-size: 13px;
}

/* Štatistická karta */

.it-ph__stat {
	color: var(--itc-white);
	font-size: clamp(56px, 6vw, 84px);
	font-weight: 800;
	line-height: 1;
	margin-bottom: 14px;
}

.it-ph__stat-suffix {
	color: var(--itc-gold);
}

.it-ph__card--stat .it-ph__card-label {
	color: var(--itc-gold);
}

/* --- Responzivita hero --- */

@media (max-width: 1024px) {
	.it-ph__inner {
		gap: 40px;
	}
}

@media (max-width: 880px) {
	.it-ph {
		padding: 48px 0;
	}

	.it-ph__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.it-ph__card {
		max-width: 560px;
	}
}

@media (max-width: 480px) {
	.it-ph__card {
		padding: 28px 22px 24px;
	}

	.it-ph__actions {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* ============================================================
   IT MAPA KARTA
   ============================================================ */

.it-mk {
	position: relative;
	background: var(--itc-navy);
	padding: 40px 40px 34px;
	box-shadow: 0 22px 55px rgba(6, 17, 33, 0.4);
}

.it-mk__title {
	color: var(--itc-white);
	font-size: clamp(28px, 3.4vw, 40px);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 16px;
}

.it-mk__title-hl {
	color: var(--itc-gold);
}

.it-mk__desc {
	color: var(--itc-gray);
	font-size: 15px;
	line-height: 1.65;
	margin: 0 0 26px;
	text-align: left;
}

.it-mk__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.it-mk__address {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--itc-white);
	font-size: 15px;
}

.it-mk__pin {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--itc-gold);
	color: var(--itc-gold);
	flex-shrink: 0;
}

.it-mk__pin svg {
	width: 17px;
	height: 17px;
}

.it-mk__nav {
	color: var(--itc-gold);
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	white-space: nowrap;
}

.it-mk__nav:hover {
	color: #ffc72c;
}

@media (max-width: 480px) {
	.it-mk {
		padding: 28px 22px 24px;
	}

	.it-mk__footer {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ============================================================
   IT SLUŽBY GRID
   ============================================================ */

.it-sg {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.it-sg__card {
	position: relative;
	background: var(--itc-white);
	border: 1px solid #E4E8EE;
	padding: 34px 30px 30px;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.it-sg__card::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	height: 3px;
	background: transparent;
	transition: background-color 0.2s ease;
}

.it-sg__card:hover {
	box-shadow: 0 16px 38px rgba(16, 42, 76, 0.12);
	transform: translateY(-3px);
}

.it-sg__card:hover::before {
	background: var(--itc-gold);
}

.it-sg__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: #E9EEF5;
	color: var(--itc-navy);
	font-size: 22px;
	margin-bottom: 22px;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.it-sg__card:hover .it-sg__icon {
	background: var(--itc-navy);
	color: var(--itc-gold);
}

.it-sg__icon svg {
	width: 24px;
	height: 24px;
}

.it-sg__title {
	color: var(--itc-navy);
	font-size: 19px;
	font-weight: 700;
	margin: 0 0 10px;
}

.it-sg__text {
	color: #5B6B80;
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
	text-align: left;
}

@media (max-width: 1024px) {
	.it-sg {
		gap: 20px;
	}
}

/* ============================================================
   IT KROKY TIMELINE
   ============================================================ */

.it-kt {
	display: grid;
	grid-template-columns: repeat(var(--it-kt-count, 4), minmax(0, 1fr));
	gap: 0 40px;
}

.it-kt__head {
	position: relative;
	margin-bottom: 24px;
}

.it-kt__item:not(:last-child) .it-kt__head::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 72px;
	right: -40px;
	border-top: 2px dashed #D5DCE5;
	transform: translateY(-50%);
}

.it-kt__num {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	background: var(--itc-navy);
	color: var(--itc-gold);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.04em;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.it-kt__title {
	color: var(--itc-navy);
	font-size: 19px;
	font-weight: 700;
	margin: 0 0 10px;
}

.it-kt__text {
	color: #5B6B80;
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
	text-align: left;
}

@media (max-width: 880px) {
	.it-kt {
		grid-template-columns: minmax(0, 1fr);
		gap: 36px 0;
	}

	.it-kt__item {
		position: relative;
		padding-left: 78px;
	}

	.it-kt__head {
		position: absolute;
		left: 0;
		top: 0;
		margin-bottom: 0;
	}

	.it-kt__item:not(:last-child) .it-kt__head::after {
		top: auto;
		bottom: -36px;
		left: 50%;
		right: auto;
		height: calc(100% - 54px + 36px);
		border-top: 0;
		border-left: 2px dashed #D5DCE5;
		transform: translateX(-50%);
	}

	.it-kt__item:not(:last-child) .it-kt__head {
		height: 100%;
	}
}

/* ============================================================
   IT KONTAKT ÚDAJE
   ============================================================ */

.it-ku {
	position: relative;
	background: var(--itc-navy);
	padding: 38px 38px 30px;
	box-shadow: 0 22px 55px rgba(6, 17, 33, 0.35);
}

.it-ku__title {
	color: var(--itc-white);
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 26px;
	padding-left: 24px;
}

.it-ku__item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 14px 0;
}

.it-ku__item--divider {
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	padding-bottom: 20px;
	margin-bottom: 6px;
}

.it-ku__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--itc-gold);
	color: var(--itc-gold);
	font-size: 17px;
	flex-shrink: 0;
}

.it-ku__icon svg {
	width: 18px;
	height: 18px;
}

.it-ku__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding-top: 2px;
}

.it-ku__label {
	color: var(--itc-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.it-ku__value {
	color: var(--itc-white);
	font-size: 17px;
	font-weight: 700;
	text-decoration: none;
}

a.it-ku__value--link:hover {
	color: var(--itc-gold);
}

.it-ku__extra {
	color: var(--itc-gray);
	font-size: 14px;
	line-height: 1.55;
}

@media (max-width: 480px) {
	.it-ku {
		padding: 28px 22px 22px;
	}

	.it-ku__title {
		padding-left: 12px;
	}
}

/* ============================================================
   IT METRIKY PÁS
   ============================================================ */

.it-mp {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	background: var(--itc-navy);
	padding: 40px 24px;
}

.it-mp--gold-top {
	border-top: 2px solid var(--itc-gold);
}

.it-mp__item {
	padding: 6px 36px;
}

.it-mp__item + .it-mp__item {
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.it-mp__value {
	color: var(--itc-white);
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 10px;
}

.it-mp__gold {
	color: var(--itc-gold);
}

.it-mp__desc {
	color: var(--itc-gray);
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
	text-align: left;
}

@media (max-width: 880px) {
	.it-mp {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 0;
	}

	.it-mp__item:nth-child(odd) {
		border-left: 0;
	}
}

@media (max-width: 520px) {
	.it-mp {
		grid-template-columns: minmax(0, 1fr);
	}

	.it-mp__item {
		border-left: 0 !important;
		padding: 6px 12px;
	}
}

/* ============================================================
   IT REALIZÁCIE GRID
   ============================================================ */

/* --- Filtre --- */

.it-rg__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 32px;
}

.it-rg__filter {
	appearance: none;
	background: var(--itc-white);
	border: 1px solid #DDE3EA;
	color: var(--itc-navy);
	font-size: 15px;
	font-weight: 600;
	font-family: inherit;
	padding: 13px 22px;
	border-radius: 3px;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.it-rg__filter:hover {
	border-color: var(--itc-navy);
}

.it-rg__filter.is-active {
	background: var(--itc-navy);
	border-color: var(--itc-navy);
	color: var(--itc-white);
}

.it-rg__filter:focus-visible {
	outline: 2px solid var(--itc-gold);
	outline-offset: 2px;
}

/* --- Grid --- */

.it-rg__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

/* --- Karta --- */

.it-rg__card {
	position: relative;
	overflow: hidden;
	background: linear-gradient(145deg, #1E4070 0%, var(--itc-navy) 55%, #0F2647 100%);
	aspect-ratio: 3 / 2;
	display: flex;
	align-items: flex-end;
	cursor: default;
}

.it-rg__card.is-hidden {
	display: none;
}

.it-rg__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.4s ease;
}

.it-rg__card:hover .it-rg__bg {
	transform: scale(1.04);
}

.it-rg__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(22, 54, 95, 0.35) 0%, rgba(16, 42, 76, 0.82) 70%, rgba(13, 33, 60, 0.94) 100%);
	transition: background-color 0.3s ease;
}

.it-rg__card--img .it-rg__overlay {
	background: linear-gradient(180deg, rgba(22, 54, 95, 0.45) 0%, rgba(16, 42, 76, 0.85) 70%, rgba(13, 33, 60, 0.95) 100%);
}

.it-rg__corner {
	position: absolute;
	background: var(--itc-gold);
	z-index: 2;
}

.it-rg__corner--tl {
	top: 0;
	left: 0;
	width: 58px;
	height: 58px;
	clip-path: polygon(0 0, 100% 0, 0 100%);
}

.it-rg__corner--br {
	bottom: 0;
	right: 0;
	width: 58px;
	height: 58px;
	clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

.it-rg__content {
	position: relative;
	z-index: 3;
	padding: 28px 30px;
	width: 100%;
}

.it-rg__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--itc-gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.it-rg__eyebrow::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 2px;
	background: var(--itc-gold);
}

.it-rg__title {
	color: var(--itc-white);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
}

/* Popis – hover reveal cez grid-rows */

.it-rg__desc-wrap {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease, margin-top 0.35s ease;
	margin-top: 0;
}

.it-rg__card:hover .it-rg__desc-wrap,
.it-rg__card:focus-visible .it-rg__desc-wrap,
.it-rg__card:focus-within .it-rg__desc-wrap {
	grid-template-rows: 1fr;
	margin-top: 10px;
}

.it-rg__desc {
	overflow: hidden;
	color: var(--itc-gray);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	text-align: left;
}

.it-rg__card:focus-visible {
	outline: 2px solid var(--itc-gold);
	outline-offset: 3px;
}

/* Touch zariadenia – popis staticky viditeľný */

@media (hover: none) {
	.it-rg__desc-wrap {
		grid-template-rows: 1fr;
		margin-top: 10px;
	}
}

@media (max-width: 1024px) {
	.it-rg__grid {
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.it-rg__content {
		padding: 22px 20px;
	}

	.it-rg__corner--tl,
	.it-rg__corner--br {
		width: 44px;
		height: 44px;
	}
}

/* v1.3.0 – produktový odkaz v karte realizácie */

.it-rg__desc-inner {
	overflow: hidden;
}

.it-rg__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	color: var(--itc-gold);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.it-rg__link:hover {
	color: #ffc72c;
}

.it-rg__link:focus-visible {
	outline: 2px solid var(--itc-gold);
	outline-offset: 2px;
}

/* ============================================================
   IT CONTACT FORM 7 (globálne pre všetky CF7 formuláre)
   ============================================================ */

.wpcf7 {
	font-size: 15px;
}

.wpcf7 .it-cf__field {
	margin-bottom: 22px;
}

.wpcf7 label {
	display: block;
	color: var(--itc-navy);
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 8px;
}

.wpcf7 .it-cf__req {
	color: var(--itc-gold);
}

.wpcf7-form-control-wrap {
	display: block;
	margin-top: 8px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
	width: 100%;
	background: var(--itc-white);
	border: 1px solid #DDE3EA;
	border-radius: 3px;
	padding: 14px 16px;
	font-size: 15px;
	font-family: inherit;
	color: #2B3A4E;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
	color: #9AA6B5;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--itc-gold);
	box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.18);
}

.wpcf7 textarea {
	min-height: 150px;
	resize: vertical;
}

/* Dvojstĺpcový riadok (e-mail + telefón) */

.wpcf7 .it-cf__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 18px;
}

@media (max-width: 640px) {
	.wpcf7 .it-cf__row {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* GDPR súhlas */

.wpcf7-acceptance {
	margin-top: 4px;
}

.wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

.wpcf7-acceptance label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-weight: 400;
	font-size: 14px;
	color: #4A5A6E;
	line-height: 1.55;
	cursor: pointer;
}

.wpcf7-acceptance input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 2px 0 0;
	accent-color: var(--itc-navy);
	flex-shrink: 0;
	cursor: pointer;
}

.wpcf7-acceptance a {
	color: var(--itc-gold);
	font-weight: 700;
	text-decoration: underline;
}

.wpcf7-acceptance a:hover {
	color: #d99e00;
}

/* Submit */

.wpcf7 .it-cf__submit-wrap {
	margin-top: 26px;
}

.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
	display: inline-flex;
	align-items: center;
	background: var(--itc-gold);
	color: var(--itc-navy);
	border: 0;
	border-radius: 3px;
	font-size: 15px;
	font-weight: 700;
	font-family: inherit;
	padding: 16px 30px;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover {
	background: #e0a500;
	transform: translateY(-1px);
}

.wpcf7 input[type="submit"]:focus-visible {
	outline: 2px solid var(--itc-navy);
	outline-offset: 2px;
}

.wpcf7-spinner {
	margin-left: 12px;
}

.wpcf7 .it-cf__note {
	color: #6B7A8E;
	font-size: 14px;
	margin-top: 14px;
	text-align: left;
}

/* Validácia a odpovede CF7 */

.wpcf7-not-valid {
	border-color: #D63638 !important;
}

.wpcf7-not-valid-tip {
	color: #D63638;
	font-size: 13px;
	margin-top: 6px;
	display: block;
}

.wpcf7 form .wpcf7-response-output {
	margin: 22px 0 0;
	padding: 14px 18px;
	border-radius: 3px;
	border-width: 1px;
	border-style: solid;
	font-size: 14px;
}

.wpcf7 form.sent .wpcf7-response-output {
	background: #EAF6EC;
	border-color: #46B450;
	color: #1E4620;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	background: #FDEDED;
	border-color: #D63638;
	color: #7A1F21;
}

/* ============================================================
   IT CHECKLIST
   ============================================================ */

.it-cl {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.it-cl__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.it-cl__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	background: #FDEFC7;
	border-radius: 4px;
	color: var(--itc-gold);
	flex-shrink: 0;
	margin-top: 1px;
}

.it-cl__check svg {
	width: 14px;
	height: 14px;
}

.it-cl__text {
	color: #2B3A4E;
	font-size: 16px;
	line-height: 1.6;
}

/* ============================================================
   IT NADPIS SEKCIE
   ============================================================ */

.it-sh__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--itc-gold);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.it-sh__eyebrow::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 2px;
	background: var(--itc-gold);
}

.it-sh__title {
	color: var(--itc-navy);
	/* Desktop strop z controlu (--it-sh-size), na mobile sa škáluje samo */
	font-size: clamp(24px, calc(15px + 2.4vw), var(--it-sh-size, 42px));
	font-weight: 800;
	line-height: 1.15;
	margin: 0;
	overflow-wrap: break-word;
}

.it-sh__title--upper {
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* Variant s gold zvislou linkou */

.it-sh--bar .it-sh__title {
	display: inline-block;
	border-left: 5px solid var(--itc-gold);
	padding-left: 16px;
}

/* ============================================================
   IT GALÉRIA
   ============================================================ */

.it-ga {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 320px;
	gap: 24px;
}

.it-ga__link {
	display: block;
	overflow: hidden;
}

.it-ga__link--wide,
.it-ga__item--wide {
	grid-column: span 2;
}

/* Ak je figure vo vnútri odkazu, span rieši odkaz */
.it-ga__link .it-ga__item {
	grid-column: auto;
}

.it-ga__item {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.it-ga__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.it-ga__link:hover .it-ga__img {
	transform: scale(1.04);
}

.it-ga__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 40px 20px 16px;
	background: linear-gradient(180deg, rgba(13, 33, 60, 0) 0%, rgba(13, 33, 60, 0.78) 100%);
	color: var(--itc-white);
	font-size: 14px;
	font-weight: 600;
}

.it-ga__link:focus-visible {
	outline: 2px solid var(--itc-gold);
	outline-offset: 3px;
}

@media (max-width: 880px) {
	.it-ga {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.it-ga__link--wide,
	.it-ga__item--wide {
		grid-column: span 2;
	}
}

@media (max-width: 560px) {
	.it-ga {
		grid-template-columns: minmax(0, 1fr);
	}

	.it-ga__link--wide,
	.it-ga__item--wide {
		grid-column: auto;
	}
}

/* ============================================================
   IT CTA PÁS
   ============================================================ */

.it-cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px 48px;
	padding: 56px 64px;
	overflow: hidden;
}

/* Schémy */

.it-cta--gold {
	background: var(--itc-gold);
}

.it-cta--gold .it-cta__heading,
.it-cta--gold .it-cta__subtitle,
.it-cta--gold .it-cta__eyebrow {
	color: var(--itc-navy);
}

.it-cta--gold .it-cta__btn {
	background: var(--itc-navy);
	color: var(--itc-white);
}

.it-cta--gold .it-cta__btn:hover {
	background: #0F2647;
	color: var(--itc-white);
}

.it-cta--gold .it-cta__phone {
	color: var(--itc-navy);
	border-color: var(--itc-navy);
}

.it-cta--gold .it-cta__corner {
	background: var(--itc-navy);
}

.it-cta--navy {
	background: var(--itc-navy);
}

.it-cta--navy .it-cta__heading {
	color: var(--itc-white);
}

.it-cta--navy .it-cta__subtitle {
	color: var(--itc-gray);
}

.it-cta--navy .it-cta__eyebrow {
	color: var(--itc-gold);
}

.it-cta--navy .it-cta__btn {
	background: var(--itc-gold);
	color: var(--itc-navy);
}

.it-cta--navy .it-cta__btn:hover {
	background: #e0a500;
	color: var(--itc-navy);
}

.it-cta--navy .it-cta__phone {
	color: var(--itc-white);
	border-color: rgba(255, 255, 255, 0.6);
}

.it-cta--navy .it-cta__corner {
	background: var(--itc-gold);
}

.it-cta--custom .it-cta__corner {
	background: var(--itc-navy);
}

/* Layouty */

.it-cta--centered {
	flex-direction: column;
	text-align: center;
	justify-content: center;
}

.it-cta--stacked {
	flex-direction: column;
	align-items: flex-start;
}

/* Obsah */

.it-cta__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.it-cta__heading {
	font-size: clamp(24px, 2.8vw, 34px);
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 10px;
}

.it-cta__subtitle {
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	max-width: 560px;
	text-align: inherit;
}

.it-cta--centered .it-cta__subtitle {
	margin-left: auto;
	margin-right: auto;
}

/* Tlačidlá */

.it-cta__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	flex-shrink: 0;
}

.it-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 700;
	padding: 16px 28px;
	border-radius: 3px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.it-cta__btn:hover {
	transform: translateY(-1px);
}

.it-cta__btn-arrow {
	transition: transform 0.2s ease;
}

.it-cta__btn:hover .it-cta__btn-arrow {
	transform: translateX(3px);
}

.it-cta__phone {
	display: inline-flex;
	align-items: center;
	font-size: 15px;
	font-weight: 700;
	padding: 15px 26px;
	border: 1px solid currentColor;
	border-radius: 3px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.it-cta--gold .it-cta__phone:hover {
	background: rgba(22, 54, 95, 0.08);
}

.it-cta--navy .it-cta__phone:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Rohový akcent */

.it-cta__corner {
	position: absolute;
	width: 56px;
	height: 56px;
}

.it-cta__corner--tl {
	top: 0;
	left: 0;
	clip-path: polygon(0 0, 100% 0, 0 100%);
}

.it-cta__corner--tr {
	top: 0;
	right: 0;
	clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.it-cta__corner--bl {
	bottom: 0;
	left: 0;
	clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.it-cta__corner--br {
	bottom: 0;
	right: 0;
	clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

/* Responzivita */

@media (max-width: 880px) {
	.it-cta {
		flex-direction: column;
		align-items: flex-start;
		padding: 40px 28px;
	}

	.it-cta--centered {
		align-items: center;
	}
}

/* v1.10.0 – IT Mapa karta: zabudovaná mapa s prekrytou kartou */

.it-mk-wrap {
	position: relative;
}

.it-mk-wrap__map iframe {
	display: block;
	width: 100%;
	height: 620px;
	border: 0;
}

.it-mk-wrap--filter .it-mk-wrap__map iframe {
	filter: grayscale(0.85) saturate(0.9) contrast(1.02);
}

/* Inner obal replikuje Blocksy výpočet šírky containeru:
   min(Maximum Site Width, 100% - 2 × Content Edge Spacing).
   Hodnoty sú deterministické z widget controls (defaulty 1440px / 5vw
   podľa Customizera) – žiadne čítanie theme premenných. */
.it-mk-wrap .it-mk-wrap__inner {
	position: absolute;
	inset: 0;
	display: block;
	box-sizing: border-box;
	pointer-events: none;
	z-index: 2;
	width: 100%;
	max-width: min(
		var(--it-mk-maxw, 1440px),
		calc(100% - 2 * var(--it-mk-edge, 5vw))
	);
	margin-left: auto;
	margin-right: auto;
}

.it-mk-wrap .it-mk {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: auto;
}

.it-mk-wrap--left .it-mk {
	left: 0;
}

.it-mk-wrap--right .it-mk {
	right: 0;
}

@media (max-width: 880px) {
	.it-mk-wrap .it-mk-wrap__inner {
		position: static;
		padding: 0;
		pointer-events: auto;
	}

	.it-mk-wrap .it-mk {
		position: static;
		transform: none;
		max-width: 100% !important;
	}
}

/* v1.11.1 – vlastné ikony (img) v službách a kontaktoch */

.it-sg__icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	display: block;
}

.it-ku__icon img {
	width: 18px;
	height: 18px;
	object-fit: contain;
	display: block;
}

/* ============================================================
   SCROLL-REVEAL ANIMÁCIE (v1.12.0)
   Aktivujú sa len keď JS pridá .it-anim-on na <html>.
   Keyframes s backwards fill – po dobehnutí pustia properties,
   takže hover transformy widgetov ostávajú nedotknuté.
   ============================================================ */

@keyframes it-fade-up {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.it-anim-on .it-anim-t:not(.is-inview) {
	opacity: 0;
	transform: translateY(18px);
}

.it-anim-on .it-anim-t.is-inview {
	animation: it-fade-up 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
	animation-delay: var(--it-anim-d, 0ms);
}

@media (prefers-reduced-motion: reduce) {
	.it-anim-on .it-anim-t:not(.is-inview),
	.it-anim-on .it-anim-t.is-inview {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
	}
}

/* ============================================================
   RESPONSIVE DOLADENIE (v1.12.1)
   ============================================================ */

/* Filtre realizácií – kompaktnejšie na mobile */

@media (max-width: 640px) {
	.it-rg__filters {
		gap: 8px;
		margin-bottom: 24px;
	}

	.it-rg__filter {
		padding: 10px 16px;
		font-size: 14px;
	}
}

/* Karty realizácií – menšie rohy a typografia na mobile */

@media (max-width: 560px) {
	.it-rg__content {
		padding: 20px 18px;
	}

	.it-rg__title {
		font-size: 19px;
	}

	.it-rg__corner--tl,
	.it-rg__corner--br {
		width: 40px;
		height: 40px;
	}
}

/* CTA pás – mobile: tlačidlá na celú šírku, menšie medzery */

@media (max-width: 560px) {
	.it-cta {
		gap: 24px;
	}

	.it-cta__actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.it-cta__btn,
	.it-cta__phone {
		justify-content: center;
		width: 100%;
		box-sizing: border-box;
	}

	.it-cta__heading {
		font-size: 24px;
	}

	.it-cta__subtitle {
		font-size: 15px;
	}
}

/* Hero – tesnejšie na malých mobiloch */

@media (max-width: 480px) {
	.it-ph__title {
		font-size: 30px;
	}

	.it-ph__btn {
		width: 100%;
		justify-content: center;
		box-sizing: border-box;
	}
}

/* ============================================================
   IT HERO SLIDER (v1.13.0)
   ============================================================ */

.it-hs {
	position: relative;
	overflow: hidden;
	background: var(--itc-navy);
	touch-action: pan-y;
}

.it-hs__track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
	.it-hs__track {
		transition: none;
	}
}

.it-hs__slide {
	position: relative;
	flex: 0 0 100%;
	min-width: 100%;
	min-height: 620px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.it-hs__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.it-hs__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--itc-navy) 0%, rgba(22, 54, 95, 0.85) 45%, rgba(22, 54, 95, 0.6) 100%);
	z-index: 1;
}

.it-hs__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: min(var(--it-hs-maxw, 1440px), calc(100% - 2 * var(--it-hs-edge, 5vw)));
	margin: 0 auto;
	padding: 64px 0;
}

.it-hs__content {
	max-width: 640px;
}

/* Dots */

.it-hs__dots {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 28px;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 10px;
}

.it-hs__dot {
	appearance: none;
	border: 0;
	padding: 0;
	width: 9px;
	height: 9px;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: width 0.25s ease, background-color 0.25s ease;
}

.it-hs__dot:hover {
	background: rgba(255, 255, 255, 0.7);
}

.it-hs__dot.is-active {
	width: 26px;
	background: var(--itc-gold);
}

.it-hs__dot:focus-visible {
	outline: 2px solid var(--itc-gold);
	outline-offset: 2px;
}

@media (max-width: 480px) {
	.it-hs__slide {
		min-height: 520px;
	}

	.it-hs__inner {
		padding: 48px 0 64px;
	}
}

/* ============================================================
   IT METRIKY PÁS – svetlá schéma + ikony (v1.13.0)
   ============================================================ */

.it-mp__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.it-mp__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	background: #FDEFC7;
	color: var(--itc-gold);
	flex-shrink: 0;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.it-mp__icon svg {
	width: 22px;
	height: 22px;
}

.it-mp__icon img {
	width: 22px;
	height: 22px;
	object-fit: contain;
	display: block;
}

.it-mp__body {
	min-width: 0;
}

/* Svetlá schéma */

.it-mp--light {
	background: #F4F6F9;
}

.it-mp--light .it-mp__value {
	color: var(--itc-navy);
}

.it-mp--light .it-mp__desc {
	color: #5B6B80;
}

.it-mp--light .it-mp__item + .it-mp__item {
	border-left-color: #DFE5EC;
}

/* v1.13.1 – zarovnanie obsahu hero slidera */

.it-hs__content .it-ph__actions {
	justify-content: var(--it-hs-just, flex-start);
}

.it-hs__content .it-ph__desc {
	display: inline-block;
	text-align: inherit;
}

/* ============================================================
   IT PREČO MY (v1.14.0)
   ============================================================ */

.it-pm {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
	gap: 48px 72px;
	align-items: center;
}

.it-pm__title {
	color: var(--itc-navy);
	font-size: clamp(28px, 3.4vw, 42px);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 18px;
}

.it-pm__desc {
	color: #5B6B80;
	font-size: 16px;
	line-height: 1.65;
	margin: 0 0 30px;
	max-width: 480px;
	text-align: left;
}

.it-pm__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px 56px;
}

.it-pm__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: #EDF1F7;
	color: var(--itc-navy);
	margin-bottom: 16px;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%);
}

.it-pm__icon svg {
	width: 22px;
	height: 22px;
}

.it-pm__icon img {
	width: 22px;
	height: 22px;
	object-fit: contain;
	display: block;
}

.it-pm__item-title {
	color: var(--itc-navy);
	font-size: 19px;
	font-weight: 700;
	margin: 0 0 8px;
}

.it-pm__item-text {
	color: #5B6B80;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	text-align: left;
}

@media (max-width: 1024px) {
	.it-pm {
		gap: 40px 48px;
	}

	.it-pm__grid {
		gap: 32px 36px;
	}
}

@media (max-width: 880px) {
	.it-pm {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ============================================================
   IT KATEGÓRIE GRID (v1.15.0)
   ============================================================ */

.it-kg {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.it-kg__card {
	display: block;
	background: var(--itc-white);
	border: 1px solid #E4E8EE;
	padding: 28px 26px;
	text-decoration: none;
	transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.2s ease;
}

a.it-kg__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 34px rgba(16, 42, 76, 0.1);
	border-color: #D3DAE4;
}

.it-kg__eyebrow {
	display: block;
	color: var(--itc-gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.it-kg__title {
	color: var(--itc-navy);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 10px;
	transition: color 0.2s ease;
}

a.it-kg__card:hover .it-kg__title {
	color: #0F2647;
}

.it-kg__text {
	color: #5B6B80;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	text-align: left;
}

@media (max-width: 1024px) {
	.it-kg {
		gap: 18px;
	}
}

/* v1.15.1 – tlačidlo pod gridom realizácií */

.it-rg__more {
	margin-top: 36px;
	text-align: center;
}

/* v1.15.3 – navy variant tlačidla */

.it-ph__btn--navy {
	background: var(--itc-navy);
	color: var(--itc-white);
}

.it-ph__btn--navy:hover {
	background: #0F2647;
	color: var(--itc-white);
}

/* ============================================================
   IT SHOWROOM (v1.16.0)
   ============================================================ */

.it-sr {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px 80px;
	align-items: center;
}

.it-sr * {
	box-sizing: border-box;
}

.it-sr--img-left .it-sr__intro {
	order: 2;
}

.it-sr--img-left .it-sr__figure {
	order: 1;
}

.it-sr__title {
	color: var(--itc-navy);
	font-size: clamp(28px, 3.6vw, 50px);
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 22px;
	overflow-wrap: break-word;
}

.it-sr__title--upper {
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.it-sr__desc {
	color: #5B6B80;
	font-size: 17px;
	line-height: 1.7;
	margin: 0 0 36px;
	text-align: left;
}

.it-sr__desc p {
	margin: 0 0 12px;
}

.it-sr__desc p:last-child {
	margin-bottom: 0;
}

.it-sr__desc strong {
	color: var(--itc-navy);
	font-weight: 700;
}

.it-sr__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.it-sr__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.it-sr__bullet {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-top: 6px;
	background: var(--itc-gold);
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%);
}

.it-sr__item-text {
	color: var(--itc-navy);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
}

/* Fotografia */

.it-sr__figure {
	position: relative;
}

.it-sr__media {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #F3F4F6;
}

.it-sr__media--cut {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 72px 100%, 0 calc(100% - 72px));
}

.it-sr__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.it-sr__media[style*="aspect-ratio: auto"] img {
	height: auto;
}

.it-sr__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #7B8794;
	font-size: 15px;
	font-weight: 600;
	border: 1px dashed #C7D0DC;
}

.it-sr__placeholder svg {
	width: 40px;
	height: 40px;
	color: #B0BAC7;
}

/* Badge */

.it-sr__badge {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 32px;
	background: var(--itc-gold);
	color: var(--itc-navy);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	max-width: calc(100% - 36px);
}

.it-sr__badge span {
	overflow: hidden;
	text-overflow: ellipsis;
}

a.it-sr__badge:hover {
	background: #E4A500;
	color: var(--itc-navy);
}

.it-sr__badge-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.it-sr__badge--top-right {
	top: 72px;
	right: 0;
}

.it-sr__badge--top-left {
	top: 72px;
	left: 0;
}

.it-sr__badge--bottom-right {
	bottom: 72px;
	right: 0;
}

.it-sr__badge--bottom-left {
	bottom: 72px;
	left: 0;
}

@media (max-width: 1024px) {
	.it-sr {
		gap: 40px 48px;
	}

	.it-sr__item-text {
		font-size: 18px;
	}

	.it-sr__badge {
		padding: 14px 22px;
		font-size: 16px;
	}
}

@media (max-width: 880px) {
	.it-sr {
		grid-template-columns: minmax(0, 1fr);
	}

	/* Na mobile vždy text hore, fotka dole */
	.it-sr--img-left .it-sr__intro {
		order: 1;
	}

	.it-sr--img-left .it-sr__figure {
		order: 2;
	}

	.it-sr__media--cut {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 48px 100%, 0 calc(100% - 48px));
	}

	.it-sr__badge--top-right,
	.it-sr__badge--top-left {
		top: 32px;
	}

	.it-sr__badge--bottom-right,
	.it-sr__badge--bottom-left {
		bottom: 32px;
	}
}

@media (max-width: 480px) {
	.it-sr__list {
		gap: 18px;
	}

	.it-sr__item-text {
		font-size: 17px;
	}

	.it-sr__badge {
		padding: 12px 16px;
		font-size: 14px;
		white-space: normal;
	}
}
