.idaa-section,
.idaa-section * {
	box-sizing: border-box;
}

.idaa-section {
	--idaa-navy: #00264b;
	--idaa-blue: #075fbd;
	--idaa-gold: #d9a63e;
	--idaa-text: #647184;
	--idaa-columns: 6;
	--idaa-gap: 22px;
	--idaa-card-width-desktop: calc(16.666667% - 18.3333px);
	--idaa-card-width-tablet: calc(33.333333% - 12px);
	--idaa-card-width-mobile: 100%;
	--idaa-duration: 650ms;
	--idaa-stagger: 85ms;
	position: relative;
	width: 100%;
	padding: 32px 28px 48px;
	background: #fff;
	color: var(--idaa-navy);
	overflow: hidden;
	isolation: isolate;
}

.idaa-section--full {
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
}

.idaa-container {
	width: 100%;
	max-width: 1740px;
	margin: 0 auto;
}

.idaa-header {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 74px;
	margin: 0 0 20px;
}

.idaa-heading-copy {
	width: min(900px, 76%);
	text-align: center;
}

.idaa-kicker {
	margin: 0 0 6px;
	color: #c99438;
	font-family: inherit;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.idaa-title {
	margin: 0;
	color: var(--idaa-navy);
	font-family: inherit;
	font-size: clamp(27px, 2vw, 38px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.025em;
}

.idaa-description {
	margin: 7px 0 0;
	color: var(--idaa-text);
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

.idaa-archive-link {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 0;
	color: #00366d;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none !important;
	transition: color 220ms ease, gap 220ms ease;
}

.idaa-archive-link svg {
	display: block;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}

.idaa-archive-link:hover,
.idaa-archive-link:focus-visible {
	gap: 10px;
	color: var(--idaa-gold);
}

.idaa-archive-link:focus-visible,
.idaa-card-click:focus-visible,
.idaa-name a:focus-visible,
.idaa-arrow:focus-visible {
	outline: 3px solid rgba(7, 95, 189, 0.38);
	outline-offset: 3px;
}

.idaa-slider-shell {
	position: relative;
	min-width: 0;
}

.idaa-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--idaa-gap);
	width: 100%;
	padding: 0;
	outline: none;
}

.idaa-card {
	--idaa-accent: #d9a63e;
	--idaa-pointer-x: 0px;
	--idaa-pointer-y: 0px;
	position: relative;
	display: flex;
	width: var(--idaa-card-width-desktop);
	max-width: var(--idaa-card-width-desktop);
	min-width: 0;
	flex: 0 1 var(--idaa-card-width-desktop);
	flex-direction: column;
	background: #fff;
	border: 1px solid #e1e6ec;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(0, 38, 75, 0.1);
	transform: translateZ(0);
	transition: transform 320ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 320ms ease, border-color 320ms ease;
}

.idaa-card::after {
	content: "";
	position: absolute;
	top: -35%;
	bottom: -35%;
	left: -65%;
	z-index: 5;
	width: 24%;
	background: linear-gradient(90deg, transparent, rgba(217, 166, 62, 0.2), transparent);
	transform: rotate(17deg);
	opacity: 0;
	pointer-events: none;
}

.idaa-card-click {
	position: absolute;
	inset: 0;
	z-index: 6;
	border-radius: inherit;
}

.idaa-card-media {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 250px;
	margin: 0;
	background: #e7edf3;
	overflow: hidden;
	isolation: isolate;
}

.idaa-section .idaa-card-media img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	object-fit: cover;
	object-position: center;
	transform: scale(1.015) translate3d(var(--idaa-pointer-x), var(--idaa-pointer-y), 0);
	transform-origin: center;
	transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 420ms ease;
}

.idaa-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(0, 38, 75, 0.08);
	pointer-events: none;
	transition: background-color 300ms ease;
}

.idaa-photo-motion .idaa-card:hover .idaa-card-media img {
	transform: scale(1.075) translate3d(var(--idaa-pointer-x), var(--idaa-pointer-y), 0);
	filter: saturate(1.05) contrast(1.025);
}

.idaa-hover-lift .idaa-card:hover {
	transform: translateY(-7px);
	border-color: rgba(217, 166, 62, 0.55);
	box-shadow: 0 20px 42px rgba(0, 38, 75, 0.2);
}

.idaa-hover-glow .idaa-card:hover {
	border-color: var(--idaa-accent);
	box-shadow: 0 0 0 1px rgba(217, 166, 62, 0.22), 0 18px 40px rgba(0, 38, 75, 0.2);
}

.idaa-gold-sweep .idaa-card:hover::after {
	animation: idaa-sweep 850ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.idaa-orbit {
	position: absolute;
	right: 13px;
	bottom: 12px;
	z-index: 4;
	display: block;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(217, 166, 62, 0.72);
	border-radius: 50%;
	opacity: 0.92;
	pointer-events: none;
	filter: drop-shadow(0 2px 4px rgba(0, 38, 75, 0.18));
}

.idaa-orbit::before {
	content: "";
	position: absolute;
	inset: 7px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: inherit;
}

.idaa-orbit span {
	position: absolute;
	inset: -4px;
	display: block;
	border-radius: 50%;
	animation: idaa-orbit calc(3.2s + var(--idaa-item-index, 1) * 0.16s) linear infinite;
}

.idaa-orbit span::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -1px;
	width: 7px;
	height: 7px;
	margin-top: -3.5px;
	background: var(--idaa-accent);
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(217, 166, 62, 0.14), 0 0 10px rgba(217, 166, 62, 0.8);
}

.idaa-card-body {
	position: relative;
	z-index: 3;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	min-height: 112px;
	padding: 16px 14px 15px;
	text-align: center;
}

.idaa-name {
	display: -webkit-box;
	max-width: 100%;
	margin: 0;
	color: var(--idaa-navy);
	font-family: inherit;
	font-size: 16px;
	font-weight: 750;
	line-height: 1.2;
	letter-spacing: -0.012em;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.idaa-name a {
	position: relative;
	z-index: 7;
	color: inherit;
	text-decoration: none !important;
}

.idaa-job-title {
	display: -webkit-box;
	max-width: 100%;
	margin: 5px 0 0;
	color: #6c7787;
	font-family: inherit;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.idaa-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 0;
	margin: 8px 0 0;
	font-family: inherit;
	font-size: 11px;
	line-height: 1;
}

.idaa-stars {
	position: relative;
	display: inline-block;
	width: 62px;
	height: 13px;
	flex: 0 0 62px;
	font-size: 13px;
	line-height: 13px;
	letter-spacing: 0;
	white-space: nowrap;
}

.idaa-stars-base,
.idaa-stars-fill {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.idaa-stars-base {
	color: #d7dee7;
}

.idaa-stars-fill {
	z-index: 2;
	color: #e1a827;
	overflow: hidden;
}

.idaa-rating-text,
.idaa-course-count {
	color: #6c7787;
	font-family: inherit;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.25;
	white-space: nowrap;
}

.idaa-course-count {
	margin: 6px 0 0;
}

.idaa-empty {
	width: 100%;
	padding: 28px;
	color: var(--idaa-text);
	background: #f5f7fa;
	border: 1px solid #e1e6ec;
	border-radius: 10px;
	font-family: inherit;
	font-size: 14px;
	text-align: center;
}

.idaa-arrows {
	display: none;
}

.idaa-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	color: #fff;
	background: var(--idaa-navy);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0, 38, 75, 0.22);
}

.idaa-arrow svg {
	display: block;
	width: 19px;
	height: 19px;
}

.idaa-arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.idaa-entry-fade_up.idaa-ready .idaa-animate-item,
.idaa-entry-fade.idaa-ready .idaa-animate-item {
	opacity: 0;
	transition: opacity var(--idaa-duration) ease, transform var(--idaa-duration) cubic-bezier(0.2, 0.75, 0.25, 1);
	transition-delay: calc(var(--idaa-item-index, 0) * var(--idaa-stagger));
}

.idaa-entry-fade_up.idaa-ready .idaa-animate-item {
	transform: translateY(22px);
}

.idaa-entry-fade_up.is-visible .idaa-animate-item,
.idaa-entry-fade.is-visible .idaa-animate-item {
	opacity: 1;
	transform: translateY(0);
}

.idaa-header.idaa-animate-item {
	--idaa-item-index: 0;
}

@keyframes idaa-orbit {
	to { transform: rotate(360deg); }
}

@keyframes idaa-sweep {
	0% { opacity: 0; transform: rotate(17deg) translateX(0); }
	18% { opacity: 1; }
	100% { opacity: 0; transform: rotate(17deg) translateX(730%); }
}

@media (max-width: 1024px) {
	.idaa-section {
		--idaa-columns: 3;
		padding: 32px 22px 42px;
	}

	.idaa-grid {
		--idaa-gap: 18px;
	}

	.idaa-card {
		width: var(--idaa-card-width-tablet);
		max-width: var(--idaa-card-width-tablet);
		flex-basis: var(--idaa-card-width-tablet);
	}

	.idaa-card-media {
		height: 270px;
	}

	.idaa-heading-copy {
		width: min(760px, 78%);
	}
}

@media (max-width: 767px) {
	.idaa-section {
		--idaa-columns: 1;
		padding: 34px 16px 38px;
	}

	.idaa-header {
		display: block;
		min-height: 0;
		margin-bottom: 20px;
		text-align: center;
	}

	.idaa-heading-copy {
		width: 100%;
	}

	.idaa-title {
		font-size: clamp(27px, 8.2vw, 34px);
	}

	.idaa-description {
		font-size: 14px;
	}

	.idaa-archive-link {
		position: static;
		justify-content: center;
		margin-top: 8px;
	}

	.idaa-grid {
		--idaa-gap: 16px;
		width: calc(100% + 12px);
		margin-left: -6px;
	}

	.idaa-card {
		width: var(--idaa-card-width-mobile);
		max-width: var(--idaa-card-width-mobile);
		flex-basis: var(--idaa-card-width-mobile);
	}

	.idaa-card-media {
		height: 360px;
	}

	.idaa-card-body {
		min-height: 118px;
	}

	.idaa-name {
		font-size: 18px;
	}

	.idaa-job-title {
		font-size: 13px;
	}

	.idaa-mobile-carousel .idaa-grid {
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
		width: calc(100% + 12px);
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.idaa-mobile-carousel .idaa-grid::-webkit-scrollbar {
		display: none;
	}

	.idaa-mobile-carousel .idaa-card {
		width: 100%;
		min-width: 100%;
		flex: 0 0 100%;
		scroll-snap-align: start;
	}

	.idaa-mobile-carousel.idaa-has-arrows .idaa-arrows {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		margin-top: 16px;
	}
}

@media (max-width: 420px) {
	.idaa-card-media {
		height: min(112vw, 390px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.idaa-section *,
	.idaa-section *::before,
	.idaa-section *::after {
		scroll-behavior: auto !important;
		animation: none !important;
		transition-duration: 0.01ms !important;
		transition-delay: 0ms !important;
	}

	.idaa-ready .idaa-animate-item {
		opacity: 1 !important;
		transform: none !important;
	}
}
