.specialneecv-hero {
	--specialneecv-accent: #eeba2c;
	--specialneecv-background: #212121;
	box-sizing: border-box;
	position: relative;
	min-height: 1000px;
	overflow: hidden;
	background: var(--specialneecv-background);
	color: #fff;
	isolation: isolate;
}

.specialneecv-hero *,
.specialneecv-hero *::before,
.specialneecv-hero *::after {
	box-sizing: border-box;
}

.specialneecv-hero__inner {
	position: relative;
	z-index: 2;
	width: min(1240px, calc(100% - 40px));
	min-height: 1000px;
	margin: 0 auto;
}

.specialneecv-hero__content {
	position: absolute;
	z-index: 5;
	top: 170px;
	left: 50px;
	width: 390px;
}

.specialneecv-hero__eyebrow {
	position: relative;
	z-index: 6;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin: 0 0 25px;
	padding: 8px 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	background: rgba(33, 33, 33, 0.94);
	color: #fff;
	font-family: "Epilogue", Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0;
	text-transform: uppercase;
	white-space: nowrap;
	visibility: visible;
}

.specialneecv-hero__eyebrow span {
	color: var(--specialneecv-accent);
}

.specialneecv-hero__title {
	width: 346px;
	margin: 0 0 8px;
	padding: 0;
	color: #fff;
	font-family: "Epilogue", Arial, sans-serif;
	font-size: 72px;
	font-weight: 600;
	line-height: 1.11;
	letter-spacing: -2.2px;
	text-align: left;
}

.specialneecv-hero__title span {
	display: block;
}

.specialneecv-hero__title strong {
	color: var(--specialneecv-accent);
	font: inherit;
}

.specialneecv-hero__text {
	width: 263px;
	margin: 0 0 17px;
	color: rgba(255, 255, 255, 0.78);
	font-family: "Inter", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.625;
}

.specialneecv-hero__button {
	display: inline-flex;
	min-height: 55px;
	align-items: center;
	justify-content: center;
	padding: 18px 24px;
	border: 0;
	border-radius: 12px;
	background: var(--specialneecv-accent);
	box-shadow: none;
	color: #fff;
	font-family: "Inter", Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	margin-left: -4px;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease, outline-color 160ms ease;
}

.specialneecv-hero__button:hover {
	background: #ffc300;
	color: #fff;
	text-decoration: none;
}

.specialneecv-hero__button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 4px;
	background: #ffc300;
	color: #171717;
}

.specialneecv-hero__visual {
	position: absolute;
	z-index: 2;
	top: 0;
	right: calc((1240px - 100vw) / 2);
	width: min(80.1vw, 993px);
	margin: 0;
}

.specialneecv-hero__visual img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}

.specialneecv-hero__ring {
	position: absolute;
	z-index: 1;
	display: block;
	width: 800px;
	height: 800px;
	max-width: none;
	opacity: 0.48;
	pointer-events: none;
}

.specialneecv-hero__ring--left {
	left: -745px;
	top: 155px;
	animation: specialneecv-hero-ring-from-left 1000ms ease both;
}

.specialneecv-hero__ring--right {
	right: -650px;
	top: 520px;
	transform: rotate(16deg);
	animation: specialneecv-hero-ring-from-bottom 1000ms ease both;
}

.specialneecv-hero__eyebrow {
	animation: specialneecv-hero-from-top 1000ms ease both;
}

.specialneecv-hero__title,
.specialneecv-hero__text {
	animation: specialneecv-hero-from-left 1000ms ease both;
}

.specialneecv-hero__button {
	animation: specialneecv-hero-from-bottom 1000ms ease both;
}

.specialneecv-hero__visual {
	animation: specialneecv-hero-from-right 1000ms ease both;
}

@keyframes specialneecv-hero-ring-from-left {
	from {
		transform: translateX(-50px);
	}

	to {
		transform: translateX(0);
	}
}

@keyframes specialneecv-hero-ring-from-bottom {
	from {
		transform: translateY(50px) rotate(16deg);
	}

	to {
		transform: translateY(0) rotate(16deg);
	}
}

@keyframes specialneecv-hero-from-top {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes specialneecv-hero-from-left {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes specialneecv-hero-from-bottom {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes specialneecv-hero-from-right {
	from {
		transform: translateX(50px);
	}

	to {
		transform: translateX(0);
	}
}

@media (max-width: 1239px) {
	.specialneecv-hero,
	.specialneecv-hero__inner {
		min-height: 960px;
	}

	.specialneecv-hero__content {
		left: 30px;
		width: 360px;
	}

	.specialneecv-hero__title {
		font-size: clamp(56px, 6vw, 72px);
		line-height: 1.1;
	}

	.specialneecv-hero__visual {
		right: -20px;
		width: min(80.1vw, 993px);
	}
}

/*
 * Medzipásmo medzi tabletovým a veľkým desktopovým rozložením.
 * Fotografia rastie plynulo a žltý riadok nadpisu zostáva na tmavom pozadí.
 */
@media (min-width: 901px) and (max-width: 1439px) {
	.specialneecv-hero__visual {
		width: min(993px, calc(88.5vw - 197px));
	}
}

@media (min-width: 901px) and (max-width: 1279px) {
	.specialneecv-hero__visual {
		right: calc(11.13vw - 180.3px);
	}
}

@media (min-width: 1280px) and (max-width: 1439px) {
	.specialneecv-hero__visual {
		right: calc(459.7px - 38.87vw);
	}
}

@media (max-width: 900px) {
	.specialneecv-hero__inner {
		width: 100%;
	}

	.specialneecv-hero__visual {
		right: 0;
		width: 500px;
	}

	.specialneecv-hero__content {
		top: 318px;
		left: 50%;
		width: min(680px, calc(100% - 44px));
		transform: translateX(-50%);
		text-align: center;
	}

	.specialneecv-hero__eyebrow {
		margin-bottom: 22px;
	}

	.specialneecv-hero__title {
		width: 100%;
		margin-bottom: 24px;
		font-size: clamp(54px, 9vw, 72px);
		text-align: center;
	}

	.specialneecv-hero__text {
		width: min(440px, 100%);
		margin-right: auto;
		margin-left: auto;
	}
}

@media (max-width: 767px) {
	.specialneecv-hero,
	.specialneecv-hero__inner {
		min-height: 700px;
	}

	.specialneecv-hero__visual {
		top: -10px;
		right: -10px;
		width: min(108.7vw, 424px);
	}

	.specialneecv-hero__content {
		top: 325px;
		left: 22px;
		width: calc(100% - 44px);
		transform: none;
		text-align: left;
	}

	.specialneecv-hero__eyebrow {
		gap: 4px;
		margin-bottom: 14px;
		padding: 6px 11px;
		font-size: 13px;
	}

	.specialneecv-hero__title {
		margin-bottom: 18px;
		font-size: clamp(40px, 11.8vw, 46px);
		line-height: 1.1;
		letter-spacing: -1.3px;
		text-align: left;
	}

	.specialneecv-hero__text {
		width: min(260px, 72vw);
		margin: 0 0 18px;
		font-size: 14px;
		line-height: 1.3;
	}

	.specialneecv-hero__button {
		min-width: 122px;
		margin-left: 0;
		min-height: 48px;
		padding: 16px 20px;
		font-size: 16px;
	}

	.specialneecv-hero__ring--left {
		left: -770px;
		top: 70px;
	}

	.specialneecv-hero__ring--right {
		right: -730px;
		top: 480px;
	}
}

@media (max-width: 374px) {
	.specialneecv-hero__content {
		top: 300px;
	}

	.specialneecv-hero__visual {
		width: 390px;
	}

	.specialneecv-hero__title {
		font-size: 32px;
		letter-spacing: -0.8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.specialneecv-hero__eyebrow,
	.specialneecv-hero__title,
	.specialneecv-hero__text,
	.specialneecv-hero__button,
	.specialneecv-hero__visual,
	.specialneecv-hero__ring--left,
	.specialneecv-hero__ring--right {
		animation: none;
	}

	.specialneecv-hero__button {
		transition: none;
	}
}

