:root {
	--text-main: #f2f6ff;
	--accent-outline: rgba(125, 179, 255, 0.35);
	--radius-md: 12px;
	--radius-sm: 8px;
}

#header {
	position: relative;
	z-index: 100000;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body.person {
	background: rgba(18, 23, 28, 1);
	overflow-x: clip;
}

.person-page-shell {
	color: var(--text-main);
}

img {
	max-width: 100%;
	display: block;
}

.person-page-shell {
	min-height: 100vh;
	position: relative;
	z-index: 0;
	overflow-x: clip;
	background: rgba(18, 23, 28, 1);
}

.interactiveInfographic {
	background: rgba(18, 23, 28, 1);
}

.person-page-shell::before,
.person-page-shell::after {
	/* content: ""; */
	position: fixed;
	width: 140px;
	height: 140px;
	border: 1px solid rgba(144, 97, 255, 0.5);
	border-radius: 42% 58% 57% 43% / 44% 41% 59% 56%;
	opacity: 0.35;
	pointer-events: none;
	z-index: 0;
}

.person-page-shell::before {
	left: -45px;
	top: 40%;
}

.person-page-shell::after {
	right: -45px;
	top: 70%;
}

.person-container {
	/* width: min(1040px, calc(100% - 56px)); */
	/* margin-inline: auto; */
	position: relative;
	z-index: 1;
}

.person-hero {
	background-color: rgba(18, 23, 28, 1);
	min-height: clamp(560px, 85vh, 800px);
	padding: clamp(30px, 4vw, 60px) 0 clamp(40px, 5vw, 80px);
	position: fixed;
	top: 22px;
	left: 0;
	right: 0;
	z-index: 1;
	overflow: hidden;
}

.person-hero-video {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	pointer-events: none;
}

.person-hero-gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: clamp(120px, 14vw, 200px);
	background: linear-gradient(180deg, rgba(15, 11, 48, 0) 40%, #12171C 100%);
	z-index: 1;
	pointer-events: none;
}

.person-hero-gradient-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(0deg, rgba(15, 11, 48, var(--gradient-alpha, 0)) 0%, #12171C var(--gradient-end, 100%));
	z-index: 1;
	pointer-events: none;
}

.person-hero-toggle {
	position: absolute;
	bottom: 80px;
	left: 72px;
	z-index: 4;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (min-width: 1600px) {
	.person-hero-toggle {
		left: calc(50% - 714px);
	}
}

.person-hero-toggle svg {
	width: 26px;
	height: 26px;
	fill: #ffffff;
}

.person-hero-toggle:hover {
	background: rgba(0, 0, 0, 0.6);
}

.person-hero-toggle:focus-visible {
	outline: 2px solid #5ea8ff;
	outline-offset: 2px;
}

.person-hero-toggle svg:nth-child(2) {
	display: none;
}

.person-hero-toggle.is-paused svg:nth-child(1) {
	display: none;
}

.person-hero-toggle.is-paused svg:nth-child(2) {
	display: block;
}

.person-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 80px;
	background: linear-gradient(180deg, rgba(18, 23, 28, 0) 0%, #12171C 100%);
	pointer-events: none;
}

.person-hero-inner {
	text-align: center;
	max-width: none;
	overflow: visible;
	position: relative;
	z-index: 3;
	padding-top: 80px;
	margin-left: 78px;
	margin-right: 78px;
}

.person-line-tiles {
	padding: 50px 0 clamp(60px, 8vw, 120px);
	position: relative;
	overflow: visible;
	/* background: rgba(18, 23, 28, 1); */
	z-index: 9;
	margin-top: clamp(520px, 70vh, 690px);
}

.person-line-tiles::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -10px;
	height: clamp(350px, 40vw, 600px);
	background: linear-gradient(180deg, rgba(18, 23, 28, 0) 0%, #12171C 50%);
	pointer-events: none;
	z-index: 2;
}

.person-line-tiles::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 120px;
	background: linear-gradient(360deg, #12171C 0%, rgba(18, 23, 28, 0) 100%);
	pointer-events: none;
	z-index: 2;
}

.person-line-tiles-inner {
	text-align: center;
	position: relative;
	z-index: 3;
	background: linear-gradient(180deg, rgba(18, 23, 28, 0) 0%, rgba(18, 23, 28, 1) 8%);
	padding-left: 78px;
	padding-right: 78px;
}

.person-line-tiles-inner.is-overflowing {
	padding-right: 0;
}

.person-announcement {
	display: flex;
	width: calc(100% - 144px);
	max-width: 1428px;
	margin: 20px auto 24px;
	padding: 8px 16px;
	align-items: flex-start;
	gap: 8px;
	border-radius: 8px;
	border: 1px solid #7BCFFF;
	background:  #E1F4FF;
	color: #1f2f47;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	position: relative;
	z-index: 2;
	text-align: left;
}

.person-announcement-text {
	display: inline;
}

.person-announcement::before {
	content: "";
	width: 16px;
	height: 16px;
	background: url("/content/dam/site/sapcom/infographics/dynamic-components/misc/sap-connect/overview/images/info.svg") center / contain no-repeat;
	flex-shrink: 0;
}

.person-announcement-link,
.person-announcement-link:visited {
	color: #0064d9;
	font-size: var(--Font-Size-sapFontSize, 14px);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-decoration: none;
	cursor: pointer;
}

.person-announcement-link:hover {
	text-decoration: underline;
}

.person-announcement-link:focus-visible {
	outline: 2px solid #2b68b7;
	outline-offset: 2px;
	border-radius: 2px;
}

.person-hero-meta {
	font-size: clamp(18px, 1.3vw, 28px);
	color: #f0f5ff;
	margin-bottom: 24px;
	animation: person-float-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.2s;
}

#heroTitle {
	--hero-title-scale: 1;
	--hero-title-translate-y: 0px;
	font-size: 120px;
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1;
	white-space: nowrap;
	background: linear-gradient(90deg, #89D1FF 0%, #8248C1 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 20px;
	transform: scale(var(--hero-title-scale)) translateY(var(--hero-title-translate-y));
	transform-origin: center;
	will-change: transform;
	transition: transform 0.3s ease-out;
	animation: person-float-up-title 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.35s;
}

.person-hero-description {
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: rgba(245, 246, 247, 1);
	max-width: 860px;
	margin: 0 auto;
	animation: person-float-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.6s;
}

#heroCta {
	margin-top: 34px;
	padding: 12px 14px;
	animation: person-float-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 0.75s;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.1;
	text-align: center;
	color: rgba(0, 87, 210, 1);
	background: white;
	border: 1px solid white;
	border-radius: 8px;
	gap: 8px;
	cursor: pointer;
	box-shadow: none;
	display: inline-block;
	text-decoration: none;
}

#heroCta:visited {
	color: rgba(0, 87, 210, 1);
}

#heroCta:hover {
	background: #a9b4be;
}

#heroCta:active {
	background: #CFCFCF;
	border-color: #CFCFCF;
}

#heroCta:focus-visible {
	outline: 2px solid #5ea8ff;
	outline-offset: 2px;
}

.person-btn-primary {
	border: 1px solid #d5e1f8;
	background: #f1f6ff;
	color: #0c1d3a;
	margin-top: 16px;
	transition: background 0.2s, color 0.2s, transform 0.25s ease;
}

.person-btn-primary:hover {
	background: #a9b4be;
}

.person-btn-primary:active {
	background: #CFCFCF;
}

.person-btn-primary:visited {
	color: #0c1d3a;
}

.person-line-tiles-title {
	margin-top: 0;
	margin-bottom: 40px;
	font-weight: 400;
	font-size: clamp(16px, 2.5vw, 24px);
	line-height: 1.3;
	text-align: center;
	color: white;
	word-wrap: break-word;
	overflow-wrap: break-word;
	animation: person-float-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 1s;
}

.person-line-grid {
	display: flex;
	gap: 24px;
	margin-top: 0;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	animation: person-float-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
	animation-delay: 1s;
}

.person-line-grid::-webkit-scrollbar {
	display: none;
}

.person-line-card {
	flex: 0 0 clamp(148px, 15vw, 230px);
	height: clamp(200px, 19.6vw, 300px);
	scroll-snap-align: start;
	border-radius: 8px;
	padding: clamp(10px, 1vw, 14px);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	font-size: clamp(20px, 1.7vw, 36px);
	font-weight: 600;
	line-height: 1.1;
	color: #f6fbff;
	text-decoration: none;
	background-size: cover;
	border: none;
	cursor: pointer;
	position: relative;
	transition:
		filter 0.28s ease,
		opacity 0.28s ease,
		box-shadow 0.3s ease;
}

.person-line-card:visited {
	color: #f6fbff;
}

.person-line-card-title {
	white-space: pre-line;
	pointer-events: none;
	transform: translateY(0);
	transition: transform 0.28s ease;
	font-weight: 500;
	font-size: 28px;
	line-height: 1.1;
	text-align: center;
	color: white;
}

.person-line-card:hover {
	box-shadow:
		inset 0 -36px 50px rgba(6, 10, 21, 0.72),
		0 12px 30px rgba(6, 12, 27, 0.52);
}

.person-line-card:focus-visible {
	outline: 2px solid #5ea8ff;
	outline-offset: -3px;
	box-shadow:
		inset 0 -36px 50px rgba(6, 10, 21, 0.72),
		0 12px 30px rgba(6, 12, 27, 0.52);
}

.person-line-grid:hover .person-line-card,
.person-line-grid:focus-within .person-line-card {
	filter: brightness(0.6);
	opacity: 0.74;
}

.person-line-grid:hover .person-line-card:hover,
.person-line-grid:focus-within .person-line-card:focus-visible {
	filter: none;
	opacity: 1;
}

.person-line-card:hover .person-line-card-title,
.person-line-card:focus-visible .person-line-card-title {
	transform: translateY(-15px);
}

.person-timeline {
	background: rgba(18, 23, 28, 1);
	position: relative;
	z-index: 10;
}

.person-timeline>.person-container {
	width: 100%;
	padding-left: max(72px, calc((100% - 1431px) / 2));
	padding-right: max(72px, calc((100% - 1431px) / 2));
	box-sizing: border-box;
	position: relative;
}

.person-timeline-item {
	display: flex;
	align-items: center;
	gap: 160px;
	margin-bottom: 0;
	background: rgba(18, 23, 28, 1);
	position: relative;
	z-index: 10;
	padding-top: clamp(48px, 6vw, 96px);
	padding-bottom: clamp(48px, 6vw, 96px);
	overflow: clip;
	will-change: opacity;
}

.person-timeline-copy {
	flex: 2;
	min-width: 0;
	transform: translateY(12rem);
	will-change: transform;
}

.person-timeline-copy h3,
.person-story-copy h3 {
	font-weight: 500;
	font-size: 40px;
	line-height: 1.1;
	color: white;
	margin-bottom: 16px;
}

.person-story-subtitle {
	margin-top: 0;
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 1.5;
	color: #D5DADD;
}
.person-story-subtitle.person-story-subtitle.person-story-subtitle {
	font-weight: 700;
}

.person-story-description {
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 1.5;
	color: #D5DADD;
}

.person-story-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 20px;
	color: #A6E0FF;
	font-size: 16px;
	line-height: 24px;
	text-decoration: none;
}

.person-story-link:focus,
.person-story-link:active,
.person-story-link:visited {
	color: #A6E0FF;
}

.person-story-link:hover {
	text-decoration: underline;
	color: #FFF;
}

.person-story-link:hover svg path {
	fill: #FFF;
}

.person-story-link:focus-visible {
	outline: 2px solid #5ea8ff;
	outline-offset: 2px;
}

.person-story-link svg {
	flex-shrink: 0;
}

.person-timeline-copy p,
.person-story-copy p,
.person-connect-intro p,
.person-connect-content p {
	max-width: none;
	margin-bottom: 60px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: #D5DADD;
}

.person-connect-content p {
	margin: 0;
}

.person-timeline-media {
	flex: 3;
	min-width: 0;
	position: relative;
}

.person-timeline-step {
	position: absolute;
	right: 20px;
	top: -24px;
	font-size: 112px;
	font-weight: 600;
	line-height: 0.86;
	color: rgba(163, 88, 255, 0.62);
}

.person-timeline-image,
.person-story-image {
	border-radius: var(--radius-md);
	overflow: hidden;
	/* border: 1px solid rgba(154, 180, 235, 0.24); */
	/* box-shadow: 0 24px 52px rgba(0, 4, 13, 0.6); */
}

.person-timeline-image img,
.person-story-image img,
.person-connect-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	z-index: 1;
}

.person-timeline-image {
	position: relative;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
}

.person-timeline-pill {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: -18px;
	font-size: 11px;
	color: #eef4ff;
	border: 1px solid var(--accent-outline);
	border-radius: 999px;
	background: rgba(216, 233, 255, 0.95);
	color: #23395d;
	padding: 8px 12px;
	text-align: center;
}

.person-timeline-item:nth-of-type(1) {
	margin-bottom: 72px;
}

.person-timeline-item:nth-of-type(1) .person-timeline-copy,
.person-timeline-item:nth-of-type(2) .person-timeline-copy,
.person-timeline-item:nth-of-type(3) .person-timeline-copy {
	padding-left: 0;
	padding-right: 0;
}

.person-timeline-item:nth-of-type(1) .person-timeline-step,
.person-timeline-item:nth-of-type(1) .person-timeline-pill {
	display: none;
}

.person-timeline-item:nth-of-type(2) {
	margin-bottom: 72px;
}

.person-timeline-item:nth-of-type(2) .person-timeline-step,
.person-timeline-item:nth-of-type(2) .person-timeline-pill {
	display: none;
}

.person-timeline-item:nth-of-type(3) {
	margin-bottom: 72px;
}

.person-timeline-item:nth-of-type(3) .person-timeline-step,
.person-timeline-item:nth-of-type(3) .person-timeline-pill {
	display: none;
}

.person-timeline-item:nth-of-type(1) .person-timeline-copy p,
.person-timeline-item:nth-of-type(2) .person-timeline-copy p,
.person-timeline-item:nth-of-type(3) .person-timeline-copy p {
	max-width: none;
	font-size: 16px;
	line-height: 24px;
	color: #D5DADD;
}

.person-timeline-item:nth-of-type(1) .person-timeline-image {
	width: 100%;
	border: none;
	box-shadow: none;
}

.person-timeline-item:nth-of-type(2) .person-timeline-image {
	width: 100%;
	border: none;
	box-shadow: none;
}

.person-timeline-item:nth-of-type(3) .person-timeline-image {
	width: 100%;
	border: none;
	box-shadow: none;
}

.person-timeline-item:nth-of-type(1) .person-timeline-image img {
	border-radius: 12px;
}

.person-timeline-item:nth-of-type(2) .person-timeline-image img {
	border-radius: 12px;
}

.person-timeline-item:nth-of-type(3) .person-timeline-image img {
	border-radius: 12px;
}

.person-connect {
	padding: 60px 0;
	position: relative;
	background: rgba(18, 23, 28, 1);
	z-index: 10;
}

.person-connect-grid {
	display: grid;
	grid-template-columns: 45fr 55fr;
	gap: 160px;
	align-items: start;
	width: 100%;
	max-width: none;
	padding-left: max(72px, calc((100% - 1431px) / 2));
	padding-right: max(72px, calc((100% - 1431px) / 2));
	box-sizing: border-box;
}

#agendaTitle,
#joinTitle {
	font-size: clamp(30px, 4vw, 46px);
	margin-bottom: 12px;
}

#agendaTitle {
	font-weight: 500;
	font-size: 40px;
	line-height: 1.1;
	color: white;
	margin-bottom: 24px;
}

#agendaDescription {
	margin-top: 24px;
	margin-bottom: 56px;
}

.person-connect-intro {
	padding-right: 20%;
	align-self: start;
}

#connectTitle {
	font-weight: 500;
	font-size: 40px;
	line-height: 1.1;
	margin-bottom: 16px;
}

.person-connect-cards {
	display: flex;
	flex-direction: column;
	gap: 120px;
}

.person-connect-card {
	background: #1A2733;
	border: none;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: 0;
	gap: 0;
	height: auto;
}

.person-connect-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	padding: 40px 40px 4px 40px;
}

.person-connect-content h3 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	color: white;
	margin: 0;
}

.person-btn-ghost {
	display: inline-block;
	text-decoration: none;
	border: 1px solid white;
	color: white;
	background: transparent;
	border-radius: 8px;
	padding: 12px 14px;
	gap: 8px;
	cursor: pointer;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.1;
	text-align: center;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.person-card-actions .person-btn-ghost:hover {
	color: rgba(166, 224, 255, 1);
	border: 1px solid rgba(166, 224, 255, 1);
	transform: none;
}

.person-card-actions .person-btn-ghost:active {
	background: rgba(166, 224, 255, 0.1);
}

.person-card-actions .person-btn-ghost:focus-visible {
	outline: 2px solid #5ea8ff;
	outline-offset: 2px;
}


.person-connect-card:nth-child(n) .person-btn-ghost {
	padding: 9px 14px;
	white-space: nowrap;
	line-height: 1;
}

.person-connect-card:nth-child(n) .person-btn-ghost.is-active {
	background: transparent;
	border: 1px solid white;
	color: white;
}

.person-connect-card .person-btn-ghost:hover,
.person-connect-card .person-btn-ghost.is-active:hover {
	color: rgba(166, 224, 255, 1);
	border: 1px solid rgba(166, 224, 255, 1);
	background: transparent;
}

.person-connect-card .person-btn-ghost:active,
.person-connect-card .person-btn-ghost.is-active:active {
	background: rgba(166, 224, 255, 0.1);
}

.person-connect-card .person-btn-ghost:focus-visible {
	outline: 2px solid #5ea8ff;
	outline-offset: 2px;
}

.person-connect-image {
	flex: 0 0 auto;
	margin-top: auto;
	padding-top: 40px;
	position: relative;
	background: #1A2733;
	overflow: hidden;
	border-radius: 0 0 12px 12px;
}

.person-connect-image img {
	position: relative;
	width: 100%;
	height: auto;
	display: block;
	z-index: 1;
	border-radius: 0 0 12px 12px;
}


.person-agenda {
	padding: clamp(40px, 6vw, 80px) 0 120px;
	position: relative;
	background: rgba(18, 23, 28, 1);
	z-index: 10;
}

.person-agenda .person-container {
	padding-left: max(72px, calc((100% - 1431px) / 2));
	padding-right: max(72px, calc((100% - 1431px) / 2));
}

.person-agenda-tabs {
	position: relative;
	display: flex;
	gap: clamp(16px, 2.2vw, 32px);
	margin-bottom: clamp(28px, 3.6vw, 56px);
	padding-bottom: 12px;
}

.person-agenda-tabs::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 11px;
	height: 1px;
	background: #475E75;
}

.person-agenda-tab {
	position: relative;
	border: 0;
	background: transparent;
	color: white;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.1;
	text-align: center;
	vertical-align: middle;
	padding: 0 0 12px;
	cursor: pointer;
}

.person-agenda-tab::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: transparent;
	transition: background-color 0.2s ease;
}

#agendaCta {
	border-radius: 8px;
}

.person-agenda-tab.is-active {
	color: rgba(166, 224, 255, 1);
}

.person-agenda-tab.is-active::after {
	background: #8cbdfb;
}

.person-agenda-tab:focus-visible {
	outline: 2px solid #8cbdfb;
	outline-offset: 4px;
	border-radius: 2px;
}

.person-agenda-table-wrap {
	border: 1px solid rgba(71, 94, 117, 1);
	border-radius: 8px;
	padding: clamp(14px, 1.6vw, 24px);
	background: rgba(26, 39, 51, 1);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 8px 0px rgba(0, 0, 0, 0.16);
}

.person-agenda-day {
	color: rgba(234, 236, 238, 1);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.1;
	margin-bottom: 8px;
	padding: 15px 16px;
	height: 50px;
	display: flex;
	align-items: center;
}

.person-agenda-table {
	width: 100%;
	border-collapse: collapse;
}

.person-agenda-table th,
.person-agenda-table td {
	text-align: left;
	border-bottom: 1px solid #3C4549;
	padding: 16px;
	vertical-align: top;
	font-size: 16px;
	line-height: 1.5;
	color: rgba(234, 236, 238, 1);
}

.person-agenda-table th:nth-child(1),
.person-agenda-table td:nth-child(1) {
	white-space: nowrap;
	width: 14rem;
	font-size: 14px;
	line-height: 1.5;
}

.person-agenda-table th {
	color: white;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.1;
	padding: 12px 16px;
	border-top: 1px solid #3C4549;
	border-bottom: 1px solid #3C4549;
}

.person-centered-cta {
	text-align: center;
	margin-top: 40px;
}

.person-stories {
	padding: 0 0 120px;
	position: relative;
	background: rgba(18, 23, 28, 1);
	z-index: 10;
}

#storiesContainer {
	display: block;
	position: relative;
	width: 100%;
	max-width: none;
	box-sizing: border-box;
	overflow: hidden;
}

#storiesContainer::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.person-story-cover {
	background: rgba(18, 23, 28, 1);
	padding-left: max(72px, calc((100% - 1431px) / 2));
	padding-right: max(72px, calc((100% - 1431px) / 2));
}

.person-story-item {
	display: flex;
	gap: 160px;
	align-items: center;
	padding: clamp(40px, 5.5vw, 84px) 0;
	border-top: 1px solid #3C4549;
}

.person-story-item .person-story-copy {
	flex: 2;
	min-width: 0;
}

.person-story-item .person-story-copy h3 {
	max-width: none;
	margin-bottom: 20px;
}

.person-story-item .person-story-copy p {
	max-width: none;
	font-size: 16px;
	line-height: 24px;
	color: #D5DADD;
	margin-bottom: 0;
}

.person-story-image {
	flex: 3;
	min-width: 0;
	position: relative;
}

.person-zipper-wrapper {
	position: relative;
	overflow-x: clip;
	overflow-y: visible;
	background: #1C0C6E;
	z-index: 10;
	padding-top: clamp(240px, 30vw, 370px);
	margin-bottom: 0;
	display: none;
}

.person-zipper-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: clamp(240px, 30vw, 460px);
	background: #12171C;
	z-index: 0;
}

.person-zipper-wrapper>section {
	position: relative;
	z-index: 200;
}

.person-decor-line {
	height: 15px;
	border-top: none;
	margin: 0 auto -1px;
	position: relative;
	z-index: 100;
	overflow: visible;
	background: #1C0C6E;
}

.person-decor-line::before {
	content: "";
	width: min(var(--icon-size, 280px), 100vw);
	height: min(var(--icon-size, 280px), 100vw);
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='281' height='276' viewBox='0 0 281 276' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M139.176 276C139.176 275.972 139.199 275.949 139.227 275.949H140.614C141.336 275.949 141.946 275.41 142.045 274.694C151.787 204.598 208.273 149.119 279.657 139.476C280.422 139.373 281 138.721 281 137.949C281 137.177 280.421 136.526 279.656 136.423C208.302 126.834 151.834 71.3972 142.058 1.34232C141.951 0.577043 141.298 0 140.526 0C139.753 0 139.101 0.576558 138.994 1.34141C129.167 71.4465 72.6983 126.835 1.34386 136.473C0.578566 136.576 0 137.228 0 138C0 138.772 0.578564 139.424 1.34386 139.527C73.1528 149.227 129.886 205.312 139.176 276Z' fill='%231C0C6E'/%3E%3C/svg%3E") center / contain no-repeat;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 100;
	clip-path: inset(0 0 50% 0);
}

.person-decor-line::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	min-width: 100vw;
	height: 185px;
	background: #1C0C6E;
	pointer-events: none;
	z-index: 99;
}

/* Decorative stars on blue background and tiles */
.person-decor-star-large,
.person-decor-star-small {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

.person-decor-star-large {
	left: 0px;
	top: clamp(-500px, -26vw, -350px);
	width: clamp(80px, 8vw, 120px);
	height: auto;
	animation: person-sparkle-1 3.5s ease-in-out infinite;
}

.person-decor-star-small {
	right: clamp(40px, 5vw, 80px);
	top: clamp(-650px, -34vw, -450px);
	width: clamp(40px, 4.2vw, 64px);
	height: auto;
	animation: person-sparkle-2 3.0s ease-in-out infinite 0.5s;
}

.person-decor-star-tiles-large {
	left: 10px;
	top: -30%;
	right: auto;
	bottom: auto;
	animation: person-sparkle-3 4.0s ease-in-out infinite 0.8s;
}

.person-decor-star-tiles-small {
	right: 60px;
	top: -70%;
	left: auto;
	bottom: auto;
	animation: person-sparkle-1 3.2s ease-in-out infinite 1.0s;
}

.person-decor-star-hero-large {
	left: 0px;
	top: -30%;
	right: auto;
	bottom: auto;
	width: 220px;
	height: auto;
	animation: none;
}

.person-decor-star-hero-small {
	right: 20px;
	top: -50%;
	left: auto;
	bottom: auto;
	width: 150px;
	height: auto;
	animation: none;
}

/* Sparkle point overlays */
.person-star-wrapper {
	overflow: visible;
	position: fixed;
	z-index: 11;
	pointer-events: none;
}

@keyframes person-float-up {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes person-float-up-title {
	0% {
		opacity: 0;
		transform: scale(1) translateY(30px);
	}

	100% {
		opacity: 1;
		transform: scale(var(--hero-title-scale)) translateY(var(--hero-title-translate-y));
	}
}

@keyframes person-sparkle-1 {

	0%,
	100% {
		filter: brightness(1) drop-shadow(0 0 0px rgba(255, 255, 255, 0.1));
	}

	25% {
		filter: brightness(1.1) drop-shadow(0 0 2px rgba(255, 255, 255, 0.2));
	}

	50% {
		filter: brightness(1) drop-shadow(0 0 0px rgba(255, 255, 255, 0.1));
	}

	75% {
		filter: brightness(1.08) drop-shadow(0 0 1px rgba(200, 220, 255, 0.15));
	}
}

@keyframes person-sparkle-2 {

	0%,
	100% {
		filter: brightness(1) drop-shadow(0 0 0px rgba(255, 255, 255, 0.1));
	}

	30% {
		filter: brightness(1.12) drop-shadow(0 0 2px rgba(255, 255, 255, 0.2));
	}

	60% {
		filter: brightness(1.05) drop-shadow(0 0 1px rgba(255, 255, 255, 0.1));
	}

	80% {
		filter: brightness(1.15) drop-shadow(0 0 2px rgba(200, 220, 255, 0.25));
	}
}

@keyframes person-sparkle-3 {

	0%,
	100% {
		filter: brightness(1) drop-shadow(0 0 0px rgba(255, 255, 255, 0.1));
	}

	20% {
		filter: brightness(1.15) drop-shadow(0 0 2px rgba(255, 255, 255, 0.25));
	}

	45% {
		filter: brightness(1) drop-shadow(0 0 0px rgba(255, 255, 255, 0.1));
	}

	70% {
		filter: brightness(1.08) drop-shadow(0 0 1px rgba(255, 255, 255, 0.15));
	}
}

@keyframes person-sparkle-dot {

	0%,
	100% {
		opacity: 0;
		transform: scale(0.3);
	}

	50% {
		opacity: 1;
		transform: scale(1);
	}
}

@media (width < 1440px) {
	#heroTitle {
		font-size: 110px;
		margin-bottom: 15px;
	}

	.person-timeline-item {
		gap: 48px;
	}

	.person-timeline-item:last-child {
		margin-bottom: 0;
	}

	.person-story-item {
		gap: 48px;
	}

	.person-timeline-copy h3,
	.person-story-copy h3 {
		font-size: 32px;
		line-height: 38px;
	}

	.person-connect-grid {
		max-width: none;
		padding-left: 72px;
		padding-right: 72px;
		gap: 48px;
	}

	.person-line-card {
		flex: 0 0 clamp(180px, 17.5vw, 268px);
	}

	.person-agenda .person-container {
		padding-left: 72px;
		padding-right: 72px;
	}

	.person-story-cover {
		padding-left: 72px;
		padding-right: 72px;
	}
}

@media (width < 1280px) {

	.person-connect-cards {
		gap: 40px;
	}
	.person-container {
		margin-inline: auto;
	}

	.person-line-tiles-inner {
		padding-left: 72px;
		padding-right: 72px;
	}

	.person-line-card {
		flex: 0 0 148px;
		height: 200px;
	}

	.person-hero-inner {
		padding-top: 40px;
		margin-left: 78px;
		margin-right: 78px;
	}

	.person-hero-description {
		font-size: clamp(16px, 2vw, 20px);
		line-height: 1.5;
	}

	/* From 980px block */
	.person-hero-meta,
	#heroTitle,
	.person-hero-description,
	#heroCta,
	.person-line-tiles-title,
	.person-line-grid {
		animation: none;
	}

	.person-hero {
		min-height: 55vh;
		padding: 8vh 0 5vh;
	}

	.person-announcement {
		max-width: 100%;
		margin-bottom: 18px;
	}

	.person-hero-meta {
		font-size: 20px;
		margin-bottom: 14px;
	}

	#heroTitle {
		font-size: 80px;
		margin-bottom: 18px;
		white-space: normal;
	}

	#heroCta {
		margin-top: 24px;
		font-size: 16px;
		line-height: 18px;
	}

	.person-hero-description {
		font-size: 18px;
		line-height: 27px;
		max-width: 690px;
		margin-left: auto;
		margin-right: auto;
	}

	.person-line-tiles {
		margin-top: 480px;
		padding: 50px 0 60px;
	}

	.person-line-tiles::before {
		height: clamp(350px, 70vw, 600px);
	}

	.person-line-tiles-title {
		font-size: 20px;
		line-height: 1.1;
		margin-bottom: 24px;
	}

	.person-line-card-title {
		font-size: 20px;
		line-height: 1.1;
	}

	#storiesContainer {
		overflow: hidden;
	}

	.person-timeline>.person-container {
		padding-left: 72px;
		padding-right: 72px;
	}

	.person-timeline-copy h3,
	.person-story-copy h3 {
		font-size: 32px;
		line-height: 1.1;
	}

	.person-timeline-copy {
		transform: none;
	}

	.person-timeline-item {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.person-timeline-item:nth-of-type(1) {
		margin-bottom: 0;
	}

	.person-timeline-item:nth-of-type(2) {
		margin-bottom: 0;
	}

	.person-timeline {
		overflow: hidden;
	}

	.person-agenda .person-container {
		padding-left: 72px;
		padding-right: 72px;
	}

	.person-agenda {
		padding-bottom: 84px;
	}

	#agendaTitle {
		font-size: 32px;
	}

	.person-agenda-tabs {
		margin-bottom: 28px;
		gap: 32px;
	}

	.person-agenda-table-wrap {
		padding: 24px;
	}

	.person-agenda-day {
		margin-bottom: 0;
	}

	.person-story-item .person-story-copy h3 {
		margin-bottom: 24px;
	}

	.person-story-item {
		padding: 40px 0;
	}

	.person-stories {
		padding: 0 0 2px;
	}

	.person-zipper-wrapper {
		padding-top: 180px;
	}

	.person-connect-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.person-connect-grid {
		min-height: auto;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
		padding-left: 72px;
		padding-right: 72px;
		gap: 60px;
	}

	#connectTitle {
		font-size: 32px;
	}

	#connectText {
		margin-bottom: 0;
	}

	.person-connect-content h3 {
		font-size: 28px;
		line-height: 31px;
	}

	.person-connect-content {
		flex-shrink: 0;
		gap: 0;
	}

	.person-connect-content p {
		margin-top: 24px;
	}

	.person-connect-content .person-card-actions {
		margin-top: 40px;
	}

	.person-connect-card:first-child .person-btn-ghost {
		padding: 12px 14px;
	}

	.person-story-image {
		margin-left: 0;
		width: 100%;
	}

	.person-connect-intro {
		padding-right: 0;
	}

	.person-decor-star-large,
	.person-decor-star-small,
	.person-decor-star-tiles-large,
	.person-decor-star-tiles-small,
	.person-decor-star-hero-large,
	.person-decor-star-hero-small,
	.person-star-wrapper {
		display: none;
	}

	#joinTitle {
		font-size: 32px;
		line-height: normal;
		margin-bottom: 0;
	}
}

@media (width < 980px) {
	.person-line-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 12px;
	}

	.person-line-card {
		flex: 0 0 148px;
		scroll-snap-align: start;
		height: 200px;
		padding-bottom: 24px;
	}

	#joinTitle {
		font-size: 28px;
		margin-bottom: 0;
	}

	#connectTitle,
	#agendaTitle {
		font-size: 28px;
	}

	.person-connect-content h3 {
		font-size: 24px;
		line-height: 32px;
	}

	.person-line-card-title {
		font-size: 16px;
		line-height: 20px;
	}

	.person-line-tiles-title {
		font-size: 16px;
	}

	.person-hero {
		min-height: auto;
		padding: 10vh 0 5vh;
		background: linear-gradient(180deg, #0F0736 0%, #12171C 56.63%);
		position: static;
	}

	.person-hero-video,
	.person-hero-toggle {
		display: none;
	}

	.person-announcement {
		font-size: 12px;
		padding: 8px 16px 8px 16px;
		width: calc(100% - 96px);
		margin-left: 48px;
		margin-right: 48px;
	}

	.person-line-tiles-inner {
		padding-left: 48px;
		padding-right: 48px;
	}

	.person-hero-inner {
		margin-left: 48px;
		margin-right: 48px;
		padding-top: 0;
	}

	.person-hero-meta {
		font-size: 20px;
		margin-bottom: 16px;
	}

	#heroCta {
		margin-top: 16px;
		font-size: 16px;
		line-height: 18px;
	}

	.person-container:not(.person-hero-inner):not(.person-line-tiles-inner) {
		width: 100%;
	}

	.person-topbar {
		padding-inline: 12px;
	}

	.person-line-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 12px;
	}

	.person-line-card {
		flex: 0 0 148px;
		scroll-snap-align: start;
		height: 200px;
	}

	.person-line-card {
		min-height: 0;
	}

	.person-timeline {
		padding-top: 0;
	}

	.person-timeline>.person-container {
		padding-left: 48px;
		padding-right: 48px;
		width: 100%;
	}

	.person-timeline-copy h3,
	.person-story-copy h3 {
		font-size: 28px;
		line-height: 31px;
	}

	.person-timeline-copy p,
	.person-story-copy p,
	.person-connect-intro p {
		margin-bottom: 40px;
	}

	.person-timeline-copy p:last-child {
		margin-bottom: 0;
	}

	.person-timeline-item {
		flex-direction: column;
		gap: 40px;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.person-timeline-copy {
		width: 100%;
	}

	.person-timeline-image {
		width: 100%;
	}

	.person-timeline-step {
		right: 4px;
	}

	.person-timeline-item:nth-of-type(1) .person-timeline-copy,
	.person-timeline-item:nth-of-type(2) .person-timeline-copy,
	.person-timeline-item:nth-of-type(3) .person-timeline-copy {
		padding-left: 0;
		max-width: none;
	}

	.person-timeline-item:nth-of-type(1) .person-timeline-copy h3,
	.person-timeline-item:nth-of-type(1) .person-timeline-copy p,
	.person-timeline-item:nth-of-type(2) .person-timeline-copy h3,
	.person-timeline-item:nth-of-type(2) .person-timeline-copy p,
	.person-timeline-item:nth-of-type(3) .person-timeline-copy h3,
	.person-timeline-item:nth-of-type(3) .person-timeline-copy p {
		max-width: none;
	}

	.person-timeline-item:nth-of-type(1) .person-timeline-image,
	.person-timeline-item:nth-of-type(2) .person-timeline-image,
	.person-timeline-item:nth-of-type(3) .person-timeline-image {
		width: 100%;
		height: auto;
		margin-right: 0;
	}

	.person-timeline-copy p {
		max-width: none;
	}

	.person-timeline-step {
		font-size: 82px;
	}

	.person-agenda-table-wrap {
		overflow-x: auto;
	}

	.person-hero-description {
		font-size: 16px;
		line-height: 1.5;
	}

	.person-line-tiles {
		margin-top: 0;
		padding: 60px 0 40px;
	}

	.person-connect {
		padding: 40px 0;
	}

	.person-connect-grid {
		padding-left: 48px;
		padding-right: 48px;
		gap: 40px;
	}

	.person-connect-card:first-child .person-connect-content {
		padding: 24px 24px 0;
	}

	.person-connect-card:nth-child(n+2) .person-connect-content {
		padding: 24px 24px 0;
	}

	#heroTitle {
		font-size: 57px;
		margin-bottom: 16px;
		white-space: normal;
	}

	.person-topbar {
		padding-inline: 3vw;
	}

	.person-line-card {
		flex: 0 0 148px;
		height: 200px;
	}

	.person-story-cover {
		padding-left: 48px;
		padding-right: 48px;
	}

	.person-story-item {
		flex-direction: column;
	}

	.person-story-item .person-story-copy,
	.person-story-item .person-story-image {
		width: 100%;
	}

	.person-agenda .person-container {
		padding-left: 48px;
		padding-right: 48px;
	}

	.person-agenda {
		padding-bottom: 40px;
	}
}

@media (width < 640px) {
	.person-agenda-table {
		min-width: 620px;
	}

	#joinTitle {
		font-size: 24px;
		margin-bottom: 0;
	}

	.person-announcement {
		width: calc(100% - 48px);
		margin-left: 24px;
		margin-right: 24px;
	}

	.person-line-tiles-inner {
		padding-left: 24px;
		padding-right: 24px;
	}

	.person-hero-inner {
		margin-left: 24px;
		margin-right: 24px;
	}

	.person-hero {
		min-height: auto;
		padding: 24px 0 40px;
	}

	#heroTitle {
		font-size: 34px;
	}

	.person-hero-meta {
		font-size: 16px;
		margin-bottom: 16px;
	}

	.person-hero-description {
		font-size: 16px;
		line-height: 1.5;
	}

	.person-line-tiles {
		margin-top: 0;
		padding: 0 0 28px;
	}

	.person-line-card {
		flex: 0 0 148px;
		height: 200px;
	}

	.person-timeline-item {
		flex-direction: column;
		gap: 40px;
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.person-timeline-copy h3,
	.person-story-copy h3 {
		font-size: 24px;
		line-height: 31px;
	}

	.person-connect {
		padding: 28px 0;
	}

	#connectTitle {
		font-size: 24px;
		line-height: 1.3;
	}

	.person-connect-content p {
		margin-top: 16px;
	}

	.person-connect-content .person-card-actions {
		margin-top: 24px;
	}

	.person-connect-image {
		padding-top: 16px;
	}

	.person-connect-grid {
		padding-left: 24px;
		padding-right: 24px;
		gap: 40px;
	}

	.person-story-cover {
		padding-left: 24px;
		padding-right: 24px;
	}

	.person-timeline>.person-container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.person-agenda .person-container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.person-agenda {
		padding-bottom: 28px;
	}

	#agendaTitle {
		font-size: 24px;
		margin-bottom: 16px;
	}

	#agendaDescription {
		margin-top: 0;
		margin-bottom: 28px;
	}

	.person-agenda-tabs {
		margin-bottom: 24px;
		gap: 28px;
	}

	.person-agenda-table-wrap {
		padding: 0 16px;
	}

	.person-agenda-table th:nth-child(1) {
		font-size: 16px;
		line-height: 18px;
	}

	.person-agenda-table th,
	.person-agenda-table td {
		padding: 8px 16px;
	}

	.person-story-item .person-story-copy h3 {
		margin-bottom: 16px;
	}

	.person-zipper-wrapper {
		padding-top: 140px;
	}
}

@media (min-width: 1280px) {
	.person-line-card {
		flex: 1 1 100%;
		aspect-ratio: 218 / 300;
		/* max-width: calc((100% - 24px * 5) / 6); */
		height: auto;
	}
	.person-connect-intro div {
		max-width: 420px;
		transition: top .2s linear;
		top: 0;
	}
	.person-connect[data-sticky-title="true"] .person-connect-intro div {
		position: fixed;
		top: 80px
	}
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

[data-component="PageRating"] {
	position: relative;
}