.eks-programs {
	--eks-primary: #1559c5;
	--eks-primary-hover: #0f469e;
	--eks-text: #172033;
	--eks-muted: #667085;
	--eks-surface: #ffffff;
	--eks-soft: #f5f8fc;
	--eks-border: #e3e8f0;
	--eks-placeholder-start: #184b91;
	--eks-placeholder-end: #1a879c;
	width: 100%;
}

.eks-programs *,
.eks-single-program *,
.eks-catalog * {
	box-sizing: border-box;
}

.eks-programs__grid {
	display: grid;
	grid-template-columns: repeat(var(--eks-columns, 3), minmax(0, 1fr));
	gap: 28px;
	align-items: stretch;
}

.eks-program-card {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	background: var(--eks-surface);
	border: 1px solid var(--eks-border);
	border-radius: 6px;
	box-shadow: 0 12px 34px rgba(20, 38, 70, 0.08);
	transition: box-shadow 220ms ease, transform 220ms ease;
	width: 100%;
}

.eks-program-card:hover,
.eks-program-card:focus-within {
	z-index: 20;
	box-shadow: 0 18px 42px rgba(20, 38, 70, 0.15);
	transform: translateY(-3px);
}

.eks-program-card[hidden] {
	display: none;
}

.eks-programs .eks-program-card__image-link {
	display: block;
	position: relative;
	width: 100%;
	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 5px 5px 0 0;
	background: #edf2f8;
}

.eks-programs .eks-program-card__image {
	display: block;
	width: 100%;
	height: 100% !important;
	min-height: 0 !important;
	max-height: none !important;
	object-fit: contain !important;
	object-position: center;
	background: #edf2f8;
	transition: transform 220ms ease;
}

.eks-program-card:hover .eks-program-card__image,
.eks-program-card:focus-within .eks-program-card__image {
	transform: scale(1.025);
}

.eks-programs .eks-program-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100% !important;
	min-height: 0 !important;
	max-height: none !important;
	background: linear-gradient(135deg, var(--eks-placeholder-start), var(--eks-placeholder-end));
	color: #ffffff;
}

.eks-program-card__placeholder svg {
	width: 64px;
	height: 64px;
}

.eks-program-card__type {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-self: flex-start;
	margin: -18px 22px 0;
	padding: 7px 12px;
	background: var(--eks-text);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.eks-program-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.eks-program-card__title {
	margin: 0 0 12px;
	padding-bottom: 13px;
	color: var(--eks-text);
	font-size: 21px;
	font-weight: 600;
	line-height: 1.3;
}
.eks-program-card__title a {
	color: inherit;
	background-image: linear-gradient(var(--eks-primary), var(--eks-primary));
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 0 2px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	padding-bottom: 5px;
	text-decoration: none;
	transition: background-size 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.eks-program-card:hover .eks-program-card__title a,
.eks-program-card:focus-within .eks-program-card__title a {
	background-size: 100% 2px;
}

.eks-program-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 0;
	margin: 0 0 16px;
	color: var(--eks-muted);
	font-size: 14px;
}

.eks-program-card__meta span + span::before {
	content: "•";
	margin: 0 9px;
	color: var(--eks-border);
}

.eks-program-card__price {
	display: flex;
	align-items: baseline;
	gap: 9px;
	margin: 0 0 20px;
	color: var(--eks-text);
	font-size: 20px;
	font-weight: 700;
}

.eks-program-card__price span {
	color: var(--eks-muted);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.eks-program-card__price strong {
	color: var(--eks-text);
	font-size: inherit;
	font-weight: 700;
}

.eks-program-card__price del {
	color: var(--eks-muted);
	font-size: 15px;
	font-weight: 500;
}

.eks-program-card__price--promotion {
	flex-wrap: wrap;
}

.eks-program-card__price--promotion strong {
	color: #c22032;
}

.eks-program-card__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9px;
	margin-top: auto;
}

.eks-program-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid var(--eks-primary);
	border-radius: 3px;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease;
}

.eks-program-card__button--primary {
	background: var(--eks-primary);
	color: #ffffff;
}

.eks-program-card__button--secondary {
	background: transparent;
	color: var(--eks-primary);
}

.eks-program-card__button--primary:hover,
.eks-program-card__button--primary:focus-visible {
	background: var(--eks-primary-hover);
	color: #ffffff;
}

.eks-program-card__button--secondary:hover,
.eks-program-card__button--secondary:focus-visible {
	background: var(--eks-primary);
	color: #ffffff;
}

.eks-program-card__popover {
	position: absolute;
	top: 54px;
	left: calc(100% - 18px);
	z-index: 30;
	width: min(330px, calc(100vw - 48px));
	padding: 26px;
	border: 1px solid var(--eks-border);
	border-radius: 6px;
	background: var(--eks-surface);
	box-shadow: 0 18px 50px rgba(20, 38, 70, 0.2);
	color: var(--eks-muted);
	font-size: 15px;
	line-height: 1.7;
	opacity: 0;
	visibility: hidden;
	transform: translateX(12px);
	transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
}

.eks-program-card__popover::before {
	content: "";
	position: absolute;
	top: 42%;
	left: -11px;
	width: 20px;
	height: 20px;
	border-bottom: 1px solid var(--eks-border);
	border-left: 1px solid var(--eks-border);
	background: var(--eks-surface);
	transform: rotate(45deg);
}

.eks-program-card:nth-child(3n) .eks-program-card__popover {
	right: calc(100% - 18px);
	left: auto;
	transform: translateX(-12px);
}

.eks-program-card:nth-child(3n) .eks-program-card__popover::before {
	right: -11px;
	left: auto;
	border: 0;
	border-top: 1px solid var(--eks-border);
	border-right: 1px solid var(--eks-border);
}

.eks-program-card:hover .eks-program-card__popover,
.eks-program-card:focus-within .eks-program-card__popover {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.eks-program-card__popover p {
	margin: 0;
}

.eks-program-card__popover .eks-program-card__popover-label {
	margin-bottom: 9px;
	color: var(--eks-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.eks-programs__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 28px;
}

.eks-programs__pagination[hidden] {
	display: none;
}

.eks-programs__arrow {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--eks-border);
	border-radius: 50%;
	background: var(--eks-surface);
	color: var(--eks-text);
	cursor: pointer;
	font-size: 19px;
}

.eks-programs__arrow:disabled {
	opacity: 0.4;
	cursor: default;
}

.eks-programs__dots {
	display: flex;
	align-items: center;
	gap: 7px;
}

.eks-programs__dot {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--eks-border);
}

.eks-programs__dot.is-active {
	background: var(--eks-primary);
}

.eks-programs__show-all-wrap {
	display: flex;
	justify-content: center;
	margin-top: 18px;
}

.eks-programs__show-all-wrap[hidden] {
	display: none;
}

.eks-programs__catalog-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid var(--eks-primary);
	border-radius: 3px;
	background: transparent;
	color: var(--eks-primary);
	cursor: pointer;
	font-size: 14px;
	font-weight: 650;
	text-align: center;
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease;
}

.eks-programs__catalog-link:hover,
.eks-programs__catalog-link:focus-visible {
	background: var(--eks-primary);
	color: #ffffff;
}

.eks-empty {
	margin: 0;
	color: #667085;
}

.eks-catalog {
	--eks-primary: #1559c5;
	--eks-primary-hover: #0f469e;
	--eks-text: #172033;
	--eks-muted: #667085;
	--eks-border: #e3e8f0;
	--eks-soft: #f5f8fc;
	width: 100%;
	color: var(--eks-text);
}

.eks-catalog__header {
	background: var(--eks-soft);
}

.eks-catalog__header-inner,
.eks-catalog__inner {
	width: min(1180px, 100%);
	margin: 0 auto;
	padding-right: 28px;
	padding-left: 28px;
}

.eks-catalog__header-inner {
	padding-top: 72px;
	padding-bottom: 72px;
}

.eks-catalog__eyebrow {
	margin: 0 0 14px;
	color: var(--eks-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.eks-catalog__header h1 {
	margin: 0;
	color: var(--eks-text);
	font-size: clamp(40px, 6vw, 64px);
	font-weight: 650;
	letter-spacing: -0.035em;
	line-height: 1.06;
}

.eks-catalog__description {
	max-width: 760px;
	margin: 20px 0 0;
	color: var(--eks-muted);
	font-size: 17px;
	line-height: 1.7;
}

.eks-catalog__inner {
	padding-top: 46px;
	padding-bottom: 84px;
}

.eks-catalog__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 38px;
}

.eks-catalog__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid var(--eks-border);
	background: #ffffff;
	color: var(--eks-text);
	font-size: 14px;
	font-weight: 650;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.eks-catalog__category:hover,
.eks-catalog__category:focus-visible,
.eks-catalog__category.is-active {
	border-color: var(--eks-primary);
	background: var(--eks-primary);
	color: #ffffff;
}

.eks-program-archive__more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}

.eks-program-archive__more-wrap[hidden] {
	display: none;
}

.eks-program-archive__more {
	min-height: 52px;
	padding: 13px 28px;
	border: 1px solid var(--eks-primary);
	border-radius: 3px;
	background: var(--eks-primary);
	color: #ffffff;
	cursor: pointer;
	font-size: 15px;
	font-weight: 650;
	transition: background-color 160ms ease, border-color 160ms ease;
}

.eks-program-archive__more:hover,
.eks-program-archive__more:focus-visible {
	border-color: var(--eks-primary-hover);
	background: var(--eks-primary-hover);
}

.eks-catalog__empty {
	margin: 0;
	padding: 32px;
	background: var(--eks-soft);
	color: var(--eks-muted);
	text-align: center;
}

.eks-single-program {
	--eks-primary: #1559c5;
	--eks-primary-hover: #0f469e;
	--eks-text: #172033;
	--eks-muted: #667085;
	--eks-border: #e3e8f0;
	--eks-soft: #f5f8fc;
	width: 100%;
	margin: 0;
	color: var(--eks-text);
}

.eks-single-program__intro {
	min-height: 390px;
	background: var(--eks-soft);
}

.eks-single-program__intro-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 72px;
	width: min(1180px, 100%);
	margin: 0 auto;
	padding: 42px 28px 70px;
}

.eks-single-program__intro-copy {
	max-width: 760px;
}

.eks-single-program__intro .eks-single-program__back {
	margin-bottom: 58px;
	color: var(--eks-muted);
}

.eks-single-program__intro .eks-single-program__back:hover,
.eks-single-program__intro .eks-single-program__back:focus-visible {
	color: var(--eks-primary);
}

.eks-single-program__intro .eks-single-program__title {
	color: var(--eks-text);
	font-size: clamp(40px, 5vw, 64px);
}

.eks-single-program__intro .eks-single-program__lead {
	color: var(--eks-muted);
}

.eks-single-program__hero {
	position: relative;
	display: grid;
	min-height: 560px;
	overflow: hidden;
	background: linear-gradient(135deg, #10233f, #1559c5);
}

.eks-single-program__hero-media {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eks-single-program__hero-overlay {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	width: 100%;
	background: linear-gradient(90deg, rgba(9, 25, 48, 0.93) 0%, rgba(9, 25, 48, 0.72) 52%, rgba(9, 25, 48, 0.24) 100%);
}

.eks-single-program__hero-inner {
	width: min(1180px, 100%);
	margin: 0 auto;
	padding: 70px 28px;
	color: #ffffff;
}

.eks-single-program__back {
	display: inline-block;
	margin-bottom: 56px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	text-decoration: none;
}

.eks-single-program__back:hover,
.eks-single-program__back:focus-visible {
	color: #ffffff;
}

.eks-single-program__eyebrow,
.eks-single-program__section-label,
.eks-single-program__info-label {
	margin: 0 0 12px;
	color: var(--eks-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.eks-single-program__hero .eks-single-program__eyebrow {
	color: #9dc1ff;
}

.eks-single-program__title {
	max-width: 920px;
	margin: 0;
	color: #ffffff;
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 650;
	letter-spacing: -0.035em;
	line-height: 1.06;
}

.eks-single-program__lead {
	max-width: 760px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: 19px;
	line-height: 1.65;
}

.eks-single-program__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 72px;
	width: min(1180px, 100%);
	margin: 0 auto;
	padding: 76px 28px;
}

.eks-single-program__main {
	min-width: 0;
}

.eks-single-program__section {
	padding: 0 0 56px;
	border-bottom: 1px solid var(--eks-border);
}

.eks-single-program__section + .eks-single-program__section {
	padding-top: 56px;
}

.eks-single-program__section:last-child {
	border-bottom: 0;
}

.eks-single-program__section h2 {
	margin: 0 0 24px;
	color: var(--eks-text);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 650;
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.eks-single-program__content,
.eks-single-program__audience {
	color: var(--eks-muted);
	font-size: 17px;
	line-height: 1.75;
	hyphens: auto;
	text-align: justify;
	text-justify: inter-word;
}

.eks-single-program__content > *:first-child {
	margin-top: 0;
}

.eks-single-program__scope ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eks-single-program__scope li {
	position: relative;
	padding: 15px 16px 15px 42px;
	background: var(--eks-soft);
	color: var(--eks-text);
	line-height: 1.5;
}

.eks-single-program__scope li::before {
	content: "→";
	position: absolute;
	top: 15px;
	left: 16px;
	color: var(--eks-primary);
	font-weight: 700;
}

.eks-single-program__sidebar {
	align-self: stretch;
	margin-top: -318px;
}

.eks-single-program__info-card {
	position: sticky;
	top: 28px;
	overflow: hidden;
	border: 1px solid var(--eks-border);
	border-top: 4px solid var(--eks-primary);
	background: #ffffff;
	box-shadow: 0 18px 45px rgba(20, 38, 70, 0.12);
}

.eks-single-program__panel-media {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: var(--eks-soft);
	border-bottom: 1px solid var(--eks-border);
}

.eks-single-program__panel-media img,
.eks-single-program__panel-media video {
	display: block;
	width: 100%;
	height: 100%;
}

.eks-single-program__panel-media img {
	object-fit: cover;
	object-position: center;
}

.eks-single-program__panel-media video {
	background: #000000;
	object-fit: contain;
}

.eks-single-program__info-body {
	padding: 24px;
}

.eks-single-program__price {
	margin: 0 0 22px;
	color: var(--eks-text);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.1;
}

.eks-single-program__regular-price {
	margin: -18px 0 7px;
	color: var(--eks-muted);
	font-size: 17px;
}

.eks-single-program__regular-price + .eks-single-program__price {
	color: #c22032;
}

.eks-single-program__details {
	margin: 0 0 22px;
}

.eks-single-program__details div {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	padding: 12px 0;
	border-top: 1px solid var(--eks-border);
}

.eks-single-program__details dt {
	color: var(--eks-muted);
	font-size: 14px;
}

.eks-single-program__details dd {
	margin: 0;
	color: var(--eks-text);
	font-size: 14px;
	font-weight: 650;
	text-align: right;
}

.eks-single-program__recruit-button,
.eks-single-program__bottom-link,
.eks-single-program__document-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 22px;
	border: 1px solid var(--eks-primary);
	background: var(--eks-primary);
	color: #ffffff;
	font-weight: 650;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease;
}

.eks-single-program__recruit-button {
	width: 100%;
}

.eks-single-program__document-link {
	border-color: var(--eks-border);
	background: #ffffff;
	color: var(--eks-primary);
}

.eks-single-program__recruit-button:hover,
.eks-single-program__recruit-button:focus-visible,
.eks-single-program__bottom-link:hover,
.eks-single-program__bottom-link:focus-visible,
.eks-single-program__document-link:hover,
.eks-single-program__document-link:focus-visible {
	border-color: var(--eks-primary-hover);
	background: var(--eks-primary-hover);
	color: #ffffff;
}

.eks-single-program__bottom-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	width: min(1180px, calc(100% - 56px));
	margin: 0 auto 80px;
	padding: 44px 48px;
	background: var(--eks-text);
	color: #ffffff;
}

.eks-single-program__bottom-cta h2 {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.15;
}

.eks-single-program__bottom-cta p:not(.eks-single-program__section-label) {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

.eks-single-program__bottom-link {
	flex: 0 0 auto;
}

@media (max-width: 1024px) {
	.eks-programs__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}

	.eks-program-card__popover,
	.eks-program-card:nth-child(3n) .eks-program-card__popover {
		top: 56px;
		right: 20px;
		left: 20px;
		width: auto;
		transform: translateY(10px);
	}

	.eks-program-card__popover::before,
	.eks-program-card:nth-child(3n) .eks-program-card__popover::before {
		display: none;
	}

	.eks-program-card:hover .eks-program-card__popover,
	.eks-program-card:focus-within .eks-program-card__popover {
		transform: translateY(0);
	}

	.eks-single-program__hero {
		min-height: 500px;
	}

	.eks-single-program__intro {
		min-height: 0;
	}

	.eks-single-program__intro-inner {
		grid-template-columns: 1fr;
		padding-bottom: 54px;
	}

	.eks-single-program__layout {
		grid-template-columns: 1fr;
		gap: 48px;
		padding-top: 56px;
	}

	.eks-single-program__info-card {
		position: static;
	}

	.eks-single-program__sidebar {
		order: -1;
		margin-top: 0;
	}

	.eks-single-program__info-card {
		width: min(620px, 100%);
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	.eks-program-card__popover,
	.eks-program-card:nth-child(3n) .eks-program-card__popover {
		display: none !important;
	}

	.eks-programs__grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.eks-program-card__body {
		padding: 20px;
	}

	.eks-program-card__actions {
		grid-template-columns: 1fr;
	}

	.eks-single-program__scope ul {
		grid-template-columns: 1fr;
	}

	.eks-single-program__hero {
		min-height: 440px;
	}

	.eks-single-program__hero-inner {
		padding: 46px 20px;
	}

	.eks-single-program__intro-inner {
		padding: 30px 20px 42px;
	}

	.eks-single-program__back {
		margin-bottom: 38px;
	}

	.eks-single-program__intro .eks-single-program__back {
		margin-bottom: 38px;
	}

	.eks-single-program__title {
		font-size: 38px;
	}

	.eks-single-program__lead {
		font-size: 16px;
	}

	.eks-single-program__layout {
		padding: 46px 20px;
	}

	.eks-single-program__section {
		padding-bottom: 42px;
	}

	.eks-single-program__section + .eks-single-program__section {
		padding-top: 42px;
	}

	.eks-single-program__content,
	.eks-single-program__audience {
		font-size: 16px;
	}

	.eks-single-program__bottom-cta {
		align-items: flex-start;
		width: calc(100% - 40px);
		margin-bottom: 48px;
		padding: 32px 24px;
		flex-direction: column;
	}

	.eks-single-program__bottom-link {
		width: 100%;
	}
}

@media (max-width: 420px) {
	.eks-program-card__actions {
		gap: 8px;
	}

	.eks-programs__pagination {
		gap: 9px;
	}

	.eks-programs__arrow {
		width: 40px;
		height: 40px;
	}

	.eks-programs__catalog-link,
	.eks-program-archive__more {
		width: 100%;
	}

	.eks-catalog__header-inner {
		padding: 52px 20px;
	}

	.eks-catalog__inner {
		padding: 34px 20px 60px;
	}

	.eks-catalog__categories {
		display: grid;
		grid-template-columns: 1fr;
		margin-bottom: 28px;
	}

	.eks-single-program__intro .eks-single-program__title {
		font-size: 34px;
	}

	.eks-single-program__info-body {
		padding: 24px 20px;
	}

	.eks-single-program__details div {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 12px;
	}

	.eks-single-program__recruit-button,
	.eks-single-program__bottom-link,
	.eks-single-program__document-link {
		width: 100%;
	}
}

@media (hover: none) {
	.eks-program-card__popover,
	.eks-program-card:nth-child(3n) .eks-program-card__popover {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.eks-program-card__image,
	.eks-program-card__button,
	.eks-program-card,
	.eks-program-card__title a,
	.eks-program-card__popover {
		transition: none;
	}
}
