/* PTE Alumni Journeys Carousel — peek-around style matching Astro design */

.pte-alumni {
	position: relative;
}

.pte-alumni__bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #f4faf5;
	padding: clamp(64px, 9vw, 120px) 0 40px;
}

.pte-alumni__head {
	max-width: 1100px;
	margin: 0 auto clamp(32px, 5vw, 56px);
	text-align: center;
}
.pte-alumni__eyebrow {
	font-size: 1rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
	color: var(--pte-green, #00a576); margin: 0 0 1rem;
}
.pte-alumni__title {
	font-size: clamp(2.5rem, 5.2vw, 4.5rem); line-height: 1.0; font-weight: 800;
	color: var(--pte-ink, #251e20); margin: 0 0 1rem;
}
.pte-alumni__intro { font-size: clamp(1.25rem, 2.6vw, 2.25rem); line-height: 1.42; color: var(--pte-ink, #251e20); }

/* ── Stage (full width, no container) ─────────────────────────── */
.pte-alumni__stage {
	position: relative;
}

/* ── Track (the overflow-hidden peek viewport) ─────────────────── */
.pte-alumni__track {
	position: relative;
	width: 100%;
	height: 446px;
	overflow: hidden;
}

/* ── Cards (absolute positioned, peek-around) ─────────────────── */
.pte-alumni__card {
	position: absolute;
	left: 100%;
	top: 0;
	width: 760px;
	height: 446px;
	background: #c3df6c;
	border-radius: 25px;
	overflow: hidden;
	transition: left .45s cubic-bezier(.4,0,.2,1), opacity .45s ease;
}
.pte-alumni__card.is-active {
	left: calc((100% - 760px) / 2);
	z-index: 2;
	opacity: 1;
}
.pte-alumni__card.is-prev {
	left: -560px;
	opacity: .40;
	z-index: 1;
}
.pte-alumni__card.is-next {
	left: calc(100% - 200px);
	opacity: .40;
	z-index: 1;
}

/* ── Card body (text left, photo right) ────────────────────────── */
.pte-alumni__card-body {
	padding: 53px 0 48px 51px;
	width: 350px;
}
.pte-alumni__by { margin-bottom: 0; font-style: normal; }
.pte-alumni__name {
	display: block;
	font-size: 32px; font-weight: 700; color: #251e20; line-height: 33px;
}
.pte-alumni__meta {
	display: block;
	font-size: 22px; font-style: italic; font-weight: 400;
	margin-top: 0; margin-bottom: 25px; color: #251e20; line-height: 29px;
}
.pte-alumni__quote {
	font-size: 18px; line-height: 24px; font-weight: 300; color: #251e20;
	margin: 0 0 17px;
}

/* ── Photo ─────────────────────────────────────────────────────── */
.pte-alumni__photo {
	position: absolute;
	right: 77px; top: 44px;
	width: 212px; height: 292px;
	object-fit: cover;
	object-position: top center;
	border-radius: 20px;
}

/* ── Read more link ─────────────────────────────────────────────── */
.pte-alumni__readmore-wrap { margin-top: 17px; }
.pte-alumni__readmore {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(0,0,0,0.15);
	color: #fff;
	border-radius: 100px;
	padding: 10px 20px;
	font-size: 14px; font-weight: 600;
	text-decoration: none;
	transition: background .2s;
}
.pte-alumni__readmore:hover { background: rgba(0,0,0,0.3); color: #fff; }

/* ── Prev / Next arrows ─────────────────────────────────────────── */
.pte-alumni__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: none;
	border: 0;
	padding: 0 20px;
	font-size: 26px;
	color: #1d4d4f;
	cursor: pointer;
	line-height: 1;
	user-select: none;
	transition: opacity .2s;
}
.pte-alumni__arrow--prev { left: 0; }
.pte-alumni__arrow--next { right: 0; }
.pte-alumni__arrow:hover { opacity: .7; }
.pte-alumni__arrow:focus-visible { outline: 3px solid var(--pte-blue, #006db9); outline-offset: 2px; }

/* ── Dots (below stage) ──────────────────────────────────────────── */
.pte-alumni__nav {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 24px;
}
.pte-alumni__dots {
	display: flex;
	gap: 8px;
}
.pte-alumni__dot {
	width: 9px; height: 9px;
	border-radius: 50%;
	border: 0; padding: 0; cursor: pointer;
	background: #c9d2ce;
	transition: background-color .2s ease, transform .2s ease;
}
.pte-alumni__dot[aria-selected="true"],
.pte-alumni__dot.on {
	background: #0f7a3a;
	transform: scale(1.2);
}
.pte-alumni__dot:focus-visible { outline: 2px solid var(--pte-blue, #006db9); outline-offset: 2px; }

/* ── CTA ─────────────────────────────────────────────────────────── */
.pte-alumni__cta { text-align: center; margin-top: 4px; }

@media (max-width: 900px) {
	.pte-alumni__track { height: 380px; }
	.pte-alumni__card { height: 380px; width: 600px; }
	.pte-alumni__card.is-active { left: calc((100% - 600px) / 2); }
	.pte-alumni__card.is-prev { left: -440px; }
	.pte-alumni__card.is-next { left: calc(100% - 160px); }
}

@media (max-width: 640px) {
	.pte-alumni__track { height: auto; min-height: 320px; overflow: visible; }
	.pte-alumni__card { position: static; width: 100%; height: auto; border-radius: 20px; display: none; }
	.pte-alumni__card.is-active { display: block; left: auto; opacity: 1; }
	.pte-alumni__card.is-prev,
	.pte-alumni__card.is-next { display: none; }
	.pte-alumni__card-body { width: auto; padding: 32px; }
	.pte-alumni__photo { position: static; width: 100%; height: 200px; border-radius: 16px; margin-top: 16px; }
	.pte-alumni__arrow { position: static; transform: none; padding: 0 12px; }
	.pte-alumni__nav { gap: 12px; }
}
