.chi-programs-scene {
	position: relative;
	height: 42vw;
	overflow: hidden;
	border-radius: 32px;
}

.chi-programs-scene .chi-card {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 32px;
	background: #d6f5ef;
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: row;
}

#chi-c0 {
	background: #EBFFFC;
}

#chi-c1 {
	background: #D5F3F3;
}

#chi-c2 {
	background: #BFEFEB;
}

#chi-c3 {
	background: #8CE6DE;
}

.chi-card__left {
	width: 50%;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	padding: 40px;
	min-width: 0;
}

.chi-card__title-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 60px;
	flex-shrink: 0;
}

.chi-card__title {
	font-size: 2.34vw;
	font-weight: 500;
	color: var(--e-global-color-accent) !important;
	line-height: 1.25;
	flex: 1;
	margin: 0;
}

.chi-card__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #ffffff;
	flex-shrink: 0;
}

.chi-card__toggle svg {
	width: 18px !important;
	height: 18px !important;
}

.chi-card__toggle svg line {
	stroke: #333333 !important;
}

.chi-card__img {
	border-radius: 32px !important;
	object-fit: cover;
	display: block;
	width: 100%;
	flex: 1;
	min-height: 0;
}

.chi-card__right {
	width: 50%;
	flex-shrink: 0;
	padding: 40px 40px 40px 0;
	display: flex;
	flex-direction: column;
	justify-content: start;
	overflow-y: auto;
	/* desktop: hidden by default, shown via GSAP */
	opacity: 0;
	visibility: hidden;
}

.chi-card__right-inner {
	padding-top: 10vw;
}

.chi-card__right h4 {
	font-weight: 500;
	color: #1a2a1a;
	margin-bottom: 24px;
}

.chi-card__right p {
	margin-top: 0px;
}

.chi-card__right p:last-child {
	margin-bottom: 0px;
}

.chi-card__right ul {
	padding-left: 1rem;
	margin-bottom: 0.85rem;
}

.chi-card__right ul li {
	font-size: 12.5px;
	color: #3a5a4a;
	line-height: 1.7;
	margin-bottom: 2px;
}

.chi-card__btn {
	padding: 8px 20px;
	border-radius: 8px;
	background: #c0363d;
	color: #fff;
	font-size: 12.5px;
	font-weight: 500;
	border: none;
	cursor: pointer;
	width: fit-content;
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.chi-card__close {
	position: absolute;
	top: 40px;
	right: 40px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	border: 0.5px solid rgba(0, 0, 0, 0.12);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	/* hidden by default */
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 20;
	transition: all .35s;
}

.chi-card__close svg {
	width: 18px !important;
	height: 18px !important;
}

.chi-card__close:hover {
	transform: scale(1.1);
}

.chi-card__close svg line {
	transition: all .35s;
}

.chi-card__close:hover svg line {
	stroke: #DB5460;
}

@media (max-width:1280px) {
	.chi-programs-scene {
		height: 50vw;
	}
}

@media (max-width:1024px) {
	.chi-programs-scene {
		height: 60vw;
	}

	.chi-card__title {
		font-size: 28px !important;
	}
	
	.chi-card__right-inner {
        padding-top: 12vw;
    }
}

/*ACCORDION at 992px width */
@media (max-width: 992px) {
	.chi-card__right-inner {
		padding-top: 0px;
		padding-bottom: 80px;
	}

	.chi-programs-scene {
		position: static !important;
		height: auto !important;
		overflow: visible !important;
		display: flex;
		flex-direction: column;
	}

	.chi-programs-scene .chi-card {
		position: relative !important;
		width: 100% !important;
		height: auto !important;
		flex-direction: column;
		overflow: hidden;
		box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
		/* clear any desktop transform GSAP may have set */
		transform: none !important;
	}

	.chi-programs-scene .chi-card:not(:first-child) {
		margin-top: -20px;
	}

	.chi-programs-scene .chi-card:nth-child(1) {
		z-index: 1;
	}

	.chi-programs-scene .chi-card:nth-child(2) {
		z-index: 2;
	}

	.chi-programs-scene .chi-card:nth-child(3) {
		z-index: 3;
	}

	.chi-programs-scene .chi-card:nth-child(4) {
		z-index: 4;
	}

	.chi-card__left {
		width: 100% !important;
		height: auto !important;
	}

	.chi-card__title-row {
		margin-bottom: 32px;
	}

	.chi-card__img {
		width: 100% !important;
		height: 320px !important;
		flex: none;
	}

	.chi-card__right {
		width: 100% !important;
		/* accordion: CSS sets these, GSAP only controls height */
		padding: 0 40px;
		overflow: hidden;
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
		justify-content: flex-start;
	}

	.chi-card__toggle {
		display: flex;
	}

	.chi-card__close {
		display: none !important;
	}

	.chi-card__title {
		font-size: 32px !important;
	}
}

@media (max-width: 576px) {
	.chi-card__left {
		padding: 60px 20px 40px !important;
	}

	.chi-card__right {
		padding: 0 20px;
	}

	.chi-programs-scene .chi-card:not(:first-child) {
		margin-top: -20px;
	}

	.chi-card__img {
		height: 250px !important;
	}

	.chi-card__title {
		font-size: 16px;
	}

	.chi-card__title {
		font-size: 28px !important;
	}
}