﻿@font-face {
	font-family: "NotoSansKR";
	src: url("/font/NotoSansKR-VariableFont_wght.ttf") format("truetype");
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
}

:root {
	--surface-bg: #f4f3f0;
	--surface-line: rgba(21, 24, 29, 0.12);
	--text-main: #15181d;
	--text-muted: #626b76;
	--footer-bg: #ffffff;
	--footer-text: var(--text-main);
	--footer-muted: var(--text-muted);
	--footer-line: var(--surface-line);
	--site-header-height: 76px;
	--site-footer-height: 96px;
	--header-logo-shift: clamp(0px, calc((100vw - 1000px) * 0.08), 70px);
	--footer-logo-shift: var(--header-logo-shift);
	--footer-inline-padding: clamp(112px, 9vw, 170px);
	--page-inline-padding: 80px;
}

* {
	box-sizing: border-box;
}

html {
	max-width: 100%;
	font-family: "NotoSansKR";
	overflow-x: hidden;
	scrollbar-gutter: stable;
	scroll-behavior: smooth;
}

html:has(body.home-page) {
	scroll-snap-type: y mandatory;
}

html:has(body.ceo-message-page),
html:has(body.principles-page),
html:has(body.careers-page) {
	scroll-snap-type: y mandatory;
}

html:has(body.hiring-guide-page) {
	scroll-snap-type: none;
}

body {
	margin: 0;
	font-family: "NotoSansKR";
	background: #ffffff;
	color: #15181d;
	overflow-x: hidden;
}

body.error-body,
body.admin-login-body {
	min-height: 100svh;
}

body.error-body {
	background: #ffffff;
}

.error-page,
.error-page * {
	-webkit-touch-callout: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	user-select: none;
}

.error-page {
	min-height: 100svh;
	display: grid;
	place-items: center;
	padding: 42px 24px;
	background: #ffffff;
	color: #15181d;
	text-align: center;
}

.error-content {
	width: min(100%, 980px);
	display: grid;
	justify-items: center;
}

.error-logo {
	display: block;
	width: 154px;
	height: auto;
	margin-bottom: clamp(38px, 6vw, 56px);
	pointer-events: none;
}

.error-message {
	width: min(100%, 860px);
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(34px, 6vw, 62px);
	align-items: start;
}

.error-lang {
	display: grid;
	gap: 13px;
	justify-items: center;
}

.error-lang + .error-lang {
	position: relative;
}

.error-lang + .error-lang::before {
	position: absolute;
	top: 4px;
	bottom: 4px;
	left: calc(clamp(34px, 6vw, 62px) / -2);
	width: 1px;
	background: #d9dee5;
	content: "";
}

.error-lang-label {
	color: #667085;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
}

.error-title {
	margin: 0;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 900;
	line-height: 1.36;
	letter-spacing: 0;
}

.error-copy {
	margin: 0;
	color: #4b5563;
	font-size: clamp(15px, 1.6vw, 19px);
	font-weight: 500;
	line-height: 1.78;
	letter-spacing: 0;
}

.error-actions {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: clamp(36px, 6vw, 50px);
}

.error-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 132px;
	height: 42px;
	padding: 0 18px;
	border: 1px solid #15181d;
	border-radius: 4px;
	background: transparent;
	color: #15181d;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: background 0.16s ease, color 0.16s ease;
}

.error-link:hover,
.error-link:focus-visible {
	background: #15181d;
	color: #ffffff;
}

body.admin-login-body {
	--admin-bg: #f7f8fa;
	--admin-side: #eceff3;
	--admin-side-muted: #626b76;
	--admin-text: #15181d;
	--admin-muted: #626b76;
	--admin-line: #d9dee5;
	--admin-input: #fbfcfd;
	--admin-button: #15181d;
	--admin-button-hover: #2a3038;
	--admin-error: #b42318;

	color: var(--admin-text);
	background: var(--admin-bg);
	-webkit-touch-callout: none;
	-webkit-user-drag: none;
}

.admin-login-body * {
	-webkit-user-select: none;
	user-select: none;
}

.admin-login-body input {
	-webkit-user-select: text;
	user-select: text;
}

.admin-login-body img {
	-webkit-user-drag: none;
}

.admin-login-page {
	display: grid;
	grid-template-columns: minmax(280px, 38%) minmax(360px, 1fr);
	min-height: 100svh;
}

.admin-login-side {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 48px;
	color: var(--admin-text);
	background: var(--admin-side);
	border-right: 1px solid #d9dee5;
}

.admin-side-brand img {
	display: block;
	width: 126px;
	height: auto;
	pointer-events: none;
}

.admin-side-brand a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}

.admin-side-copy {
	max-width: 320px;
}

.admin-side-copy strong {
	display: block;
	margin-bottom: 12px;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: 0;
}

.admin-side-copy span {
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
	color: var(--admin-side-muted);
}

.admin-side-foot {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	color: var(--admin-side-muted);
}

.admin-login-content {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
}

.admin-login-box {
	width: min(100%, 390px);
}

.admin-login-heading {
	margin-bottom: 30px;
}

.admin-login-heading h1 {
	margin: 0 0 8px;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0;
}

.admin-login-heading p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--admin-muted);
}

.admin-login-form {
	display: grid;
	gap: 18px;
}

.admin-field {
	display: grid;
	gap: 8px;
}

.admin-field label {
	font-size: 14px;
	font-weight: 700;
	color: var(--admin-text);
}

.admin-field input {
	width: 100%;
	height: 48px;
	border: 1px solid var(--admin-line);
	border-radius: 4px;
	padding: 0 14px;
	color: var(--admin-text);
	background: var(--admin-input);
	outline: none;
	transition: border-color 0.16s ease, background 0.16s ease;
}

.admin-field input:focus {
	border-color: var(--admin-text);
	background: #ffffff;
}

.admin-login-button {
	width: 100%;
	height: 50px;
	margin-top: 6px;
	border: 0;
	border-radius: 4px;
	color: #ffffff;
	background: var(--admin-button);
	font-weight: 800;
	cursor: pointer;
	transition: background 0.16s ease;
}

.admin-login-button:hover {
	background: var(--admin-button-hover);
}

.admin-login-button:active {
	transform: translateY(1px);
}

.admin-login-notice {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--admin-line);
	font-size: 12px;
	line-height: 1.7;
	color: var(--admin-muted);
	word-break: keep-all;
}

.admin-login-notice p {
	margin: 0;
}

.admin-login-notice p + p {
	margin-top: 4px;
}

.admin-login-notice a {
	color: #15181d;
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 760px) {
	.admin-login-page {
		grid-template-columns: 1fr;
	}

	.admin-login-side {
		min-height: 210px;
		padding: 30px 24px;
	}

	.admin-side-copy {
		margin-top: 38px;
	}

	.admin-side-copy strong {
		font-size: 21px;
	}

	.admin-side-foot {
		display: none;
	}

	.admin-login-content {
		align-items: flex-start;
		padding: 34px 22px 44px;
	}

	.admin-login-heading h1 {
		font-size: 24px;
	}
}

@media (max-width: 700px) {
	.error-logo {
		width: 132px;
		margin-bottom: 36px;
	}

	.error-message {
		width: min(100%, 560px);
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.error-lang + .error-lang {
		padding-top: 30px;
		border-top: 1px solid #d9dee5;
	}

	.error-lang + .error-lang::before {
		display: none;
	}
}

@media (max-width: 460px) {
	.error-page {
		padding-inline: 20px;
	}

	.error-title {
		font-size: 23px;
	}

	.error-copy {
		font-size: 16px;
	}

	.error-actions,
	.error-link {
		width: 100%;
	}
}

body.sub-page {
	display: flex;
	flex-direction: column;
	min-height: 100svh;
}

.content-protected,
.content-protected * {
	-webkit-touch-callout: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	user-select: none;
}

.home-page {
	scroll-snap-type: y mandatory;
}

button,
input,
textarea,
select {
	font: inherit;
}

.page-main {
	min-height: 60vh;
}

.home-hero {
	position: relative;
	min-height: 100svh;
	width: 100%;
	overflow: hidden;
	background: #111722;
	isolation: isolate;
}

.home-snap-section,
.home-page .site-footer {
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.home-hero-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-hero-shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(8, 13, 22, 0.76), rgba(8, 13, 22, 0.28) 58%, rgba(8, 13, 22, 0.54)),
		linear-gradient(180deg, rgba(8, 13, 22, 0.1), rgba(8, 13, 22, 0.42));
	pointer-events: none;
}

.home-hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100svh;
	max-width: 940px;
	padding: 84px 80px 120px 150px;
	color: #ffffff;
}

.home-hero-content h1 {
	margin: 0;
	font-size: 78px;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0;
}

.home-hero-content > p {
	max-width: 620px;
	margin: 24px 0 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.7;
}

.home-page-en .home-hero-content {
	max-width: 1180px;
}

.home-page-en .home-hero-content > p {
	max-width: 900px;
}

.home-scroll-cue {
	position: absolute;
	left: 50%;
	bottom: 30px;
	z-index: 2;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transform: translateX(-50%);
}

.home-scroll-line {
	position: relative;
	display: block;
	width: 1px;
	height: 46px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.36);
}

.home-scroll-line::after {
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffffff;
	content: "";
	animation: scrollCue 1.55s ease-in-out infinite;
}

.main-popup {
	position: fixed;
	inset: 0;
	z-index: 130;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 112px 0 0 72px;
	pointer-events: none;
}

.main-popup[hidden] {
	display: none;
}

.main-popup-panel {
	position: relative;
	width: fit-content;
	max-width: min(520px, calc(100vw - 144px));
	max-height: calc(100vh - 150px);
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #d9dee5;
	border-radius: 4px;
	box-shadow: 0 16px 40px rgba(21, 24, 29, 0.18);
	pointer-events: auto;
}

.main-popup-panel a,
.main-popup-panel img {
	display: block;
}

.main-popup-panel img {
	height: auto;
	width: auto;
	max-width: min(520px, calc(100vw - 144px));
	max-height: calc(100vh - 210px);
	aspect-ratio: auto;
	object-fit: contain;
	background: #eef1f5;
}

.main-popup-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 13px 16px;
	background: #ffffff;
	border-top: 1px solid #e4e8ee;
}

.main-popup-actions button {
	min-height: auto;
	padding: 0;
	color: #15181d;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.4;
	background: transparent;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	transition:
		color 160ms ease,
		text-decoration-color 160ms ease;
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 3px;
}

.main-popup-actions button:hover,
.main-popup-actions button:focus-visible {
	color: #034ba9;
	text-decoration-color: currentColor;
}

.main-popup-actions button:last-child {
	color: #15181d;
}

.main-popup-actions button:last-child:hover,
.main-popup-actions button:last-child:focus-visible {
	color: #034ba9;
}

.home-media-notice {
	position: absolute;
	right: 28px;
	bottom: 24px;
	z-index: 2;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.34);
}

.sub-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 430px;
	padding: 116px 40px 82px;
	overflow: hidden;
	color: #ffffff;
	background-position: center 30%;
	background-size: cover;
	isolation: isolate;
}

.sub-hero-company {
	background-image: url("/images/company/1/algrin25-busan-night-scene-1747130.jpg");
}

.sub-hero-business {
	background-image: url("/images/company/1/algrin25-busan-night-scene-1747130.jpg");
}

.sub-hero-products {
	position: relative;
	overflow: hidden;
	background: #e6e8ec;
}

.sub-hero-products::before {
	position: absolute;
	right: clamp(12px, 2.8vw, 42px);
	bottom: clamp(10px, 2.4vw, 34px);
	color: rgba(21, 24, 29, 0.08);
	font-size: clamp(84px, 13vw, 210px);
	font-weight: 900;
	line-height: 0.8;
	letter-spacing: 0;
	content: "GAON";
}

.sub-hero-game-services {
	background-image: url("/images/business/image_ai_1.png");
	background-position: center 70%;
}

.sub-hero-ecommerce-retail {
	background-image: url("/images/e-commerce_retail/image_ai_1.png");
	background-position: center;
}

.commerce-content {
	width: min(1480px, calc(100% - 96px));
	padding-top: var(--site-header-height);
	padding-bottom: 118px;
}

.commerce-content h2 {
	max-width: 1040px;
	margin: 0;
	color: #111722;
	font-size: 54px;
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: 0;
	word-break: keep-all;
}

.commerce-line-break {
	display: block;
}

.commerce-lead {
	max-width: 1040px;
	margin: 20px 0 0;
	color: #4f5967;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.78;
	word-break: keep-all;
}

.commerce-feature {
	display: grid;
	grid-template-columns: minmax(420px, 0.96fr) minmax(420px, 1.04fr);
	align-items: center;
	gap: clamp(56px, 6vw, 98px);
	margin-top: 58px;
	padding-top: 54px;
	border-top: 2px solid #111722;
}

.commerce-feature-image {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 4 / 3;
	background: #eef1f5;
}

.commerce-feature-image::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(17, 23, 34, 0.12);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.commerce-feature-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.commerce-feature-copy {
	min-width: 0;
}

.commerce-feature-copy span,
.commerce-section-heading span {
	display: block;
	margin-bottom: 16px;
	color: #3154a3;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.commerce-feature-copy h3,
.commerce-section-heading h3 {
	margin: 0;
	color: #111722;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.24;
	letter-spacing: 0;
	word-break: keep-all;
}

.commerce-feature-copy p,
.commerce-section-heading p {
	margin: 22px 0 0;
	color: #4f5967;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.82;
	word-break: keep-all;
}

.commerce-flow-section {
	margin-top: 96px;
}

.commerce-section-heading {
	max-width: 920px;
}
.commerce-flow-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 46px;
	border-top: 2px solid #111722;
}

.commerce-flow-list div {
	display: flex;
	flex-direction: column;
	min-height: 390px;
	padding: 42px 34px 32px;
	border-right: 1px solid rgba(17, 23, 34, 0.16);
}

.commerce-flow-list div:last-child {
	border-right: 0;
}

.commerce-flow-list strong {
	display: block;
	color: #111722;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.35;
	word-break: keep-all;
}

.commerce-flow-list p {
	margin: 24px 0 0;
	color: #4f5967;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.78;
	word-break: keep-all;
}

.commerce-flow-list img {
	display: block;
	width: min(100%, 220px);
	height: 150px;
	margin: auto auto 0;
	object-fit: contain;
}

.commerce-cta {
	display: grid;
	justify-items: center;
	margin-top: 76px;
	padding-top: 62px;
	border-top: 1px solid rgba(17, 23, 34, 0.16);
	text-align: center;
}

.commerce-cta p {
	margin: 0 0 34px;
	color: #4f5967;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.7;
	word-break: keep-all;
}

.commerce-cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.commerce-cta-actions .product-inquiry-button {
	margin-top: 0;
}

.commerce-shop-button {
	background: #ffffff;
	color: #15181d;
}

.commerce-shop-button:hover,
.commerce-shop-button:focus-visible {
	background: #15181d;
	color: #ffffff;
}

.sub-hero-with-video {
	background: #111722;
}

.sub-hero-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.sub-hero-newsroom {
	background-image: url("/images/company/2/sweetlouise-newspapers-4565916.jpg");
	background-position: center 80%;
}

.sub-hero-contact-business,
.sub-hero-contact-service {
	background-image: url("/images/contact/2/stocksnap-sticky-2586309.jpg");
	background-position: center 48%;
}

.sub-hero-careers {
	background-image: url("/images/careers/1/pexels-lights-1285111.jpg");
	background-position: center 45%;
}

.sub-hero-shade {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(90deg, rgba(20, 32, 58, 0.82), rgba(20, 32, 58, 0.36) 54%, rgba(20, 32, 58, 0.18)),
		rgba(10, 18, 35, 0.18);
	pointer-events: none;
}

.sub-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.sub-hero-content h1 {
	margin: 0;
	font-size: 70px;
	font-weight: 500;
	line-height: 1.16;
	letter-spacing: 0;
}

.sub-hero-ai-notice {
	position: absolute;
	right: 28px;
	bottom: 24px;
	z-index: 1;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
	white-space: nowrap;
}

.sub-page-main {
	flex: 1 0 auto;
	background: #ffffff;
}

.site-locked-page {
	min-height: 100svh;
	margin: 0;
	background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
	user-select: none;
	-webkit-user-select: none;
}

.site-locked-main {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100svh;
	padding: 48px 24px;
	box-sizing: border-box;
}

.site-locked-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: min(100%, 680px);
	padding: clamp(42px, 6vw, 64px);
	background: #ffffff;
	border: 1px solid #d9e1ec;
	border-left: 8px solid #034ba9;
	border-radius: 0;
	box-shadow: 0 20px 56px rgba(17, 23, 34, 0.08);
	text-align: left;
	overflow: hidden;
}

.site-locked-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(3, 75, 169, 0.36), transparent);
	content: "";
}

.site-locked-card img {
	display: block;
	width: min(154px, 48vw);
	height: auto;
	margin-bottom: 36px;
	pointer-events: none;
}

.site-locked-card span {
	margin-bottom: 18px;
	color: #034ba9;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.site-locked-card h1 {
	margin: 0;
	color: #111722;
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0;
	word-break: keep-all;
}

.site-locked-card p {
	margin: 28px 0 0;
	color: #4f5967;
	font-size: clamp(16px, 2vw, 20px);
	font-weight: 700;
	line-height: 1.75;
	word-break: keep-all;
}

.site-locked-card strong {
	margin-top: 28px;
	color: #111722;
	font-size: clamp(17px, 2vw, 21px);
	font-weight: 900;
	line-height: 1.45;
}

.site-locked-language {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	margin-top: 38px;
	padding-top: 30px;
	border-top: 1px solid #e2e8f0;
}

.site-locked-language-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	min-width: 172px;
	padding: 0 24px;
	color: #ffffff;
	background: #003f95;
	border: 2px solid #003f95;
	border-radius: 4px;
	box-shadow: 0 12px 24px rgba(3, 75, 169, 0.18);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.site-locked-language-link:hover,
.site-locked-language-link:focus-visible {
	color: #ffffff;
	background: #111722;
	border-color: #111722;
	box-shadow: 0 18px 38px rgba(17, 23, 34, 0.28);
	outline: none;
	transform: translateY(-2px);
}

@media (max-width: 560px) {
	.site-locked-main {
		padding: 28px 18px;
	}

	.site-locked-card {
		padding: 36px 26px;
	}

	.site-locked-language-link {
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}
}

.ceo-message-page .sub-hero,
.ceo-message-page .ceo-message-content,
.principles-page .sub-hero,
.principles-page .principle-content,
.principles-page .site-footer,
.careers-page .sub-hero,
.careers-page .careers-content,
.careers-page .site-footer,
.ceo-message-page .site-footer {
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.hiring-guide-page .sub-hero,
.hiring-guide-page .careers-content,
.hiring-guide-page .site-footer {
	scroll-snap-align: none;
	scroll-snap-stop: normal;
}

.sub-content {
	width: min(1120px, calc(100% - 160px));
	margin: 0 auto;
	padding: 82px 0 126px;
}

.sub-content h2 {
	margin: 0;
	color: #1f3974;
	font-size: 60px;
	font-weight: 800;
	line-height: 1.18;
	text-align: center;
	letter-spacing: 0;
}

.sub-text {
	max-width: 860px;
	margin: 56px auto 0;
	color: #2c333d;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.9;
}

.sub-text p {
	margin: 0;
}

.sub-text p + p {
	margin-top: 22px;
}

.business-content {
	width: min(1280px, calc(100% - 160px));
	padding-top: 88px;
}

.business-content .section-eyebrow {
	text-align: left;
}

.business-content h2 {
	max-width: 940px;
	margin: 0;
	color: #15181d;
	font-size: 50px;
	font-weight: 900;
	line-height: 1.22;
	text-align: left;
	word-break: keep-all;
}

.business-lead {
	max-width: 880px;
	margin: 24px 0 0;
	color: #5b6572;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.82;
	word-break: keep-all;
}

.business-intro {
	margin-top: 56px;
	padding: 34px 40px 38px;
	background: #f6f7f9;
	border-top: 2px solid #15181d;
	border-bottom: 1px solid rgba(21, 24, 29, 0.14);
}

.business-intro strong {
	display: block;
	color: #15181d;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.45;
	word-break: keep-all;
}

.business-intro p {
	max-width: 940px;
	margin: 16px 0 0;
	color: #4f5967;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.8;
	word-break: keep-all;
}

.business-section-title {
	margin: 64px 0 0;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(21, 24, 29, 0.14);
	color: #15181d;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.business-list {
	border-top: 3px solid #15181d;
}

.business-section-title + .business-list {
	margin-top: 0;
}

.business-list div {
	display: grid;
	grid-template-columns: 88px minmax(220px, 0.44fr) minmax(0, 1fr);
	align-items: center;
	gap: 32px;
	min-height: 112px;
	padding: 30px 36px;
	border-bottom: 1px solid rgba(21, 24, 29, 0.14);
}

.business-list span {
	color: #034ba9;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}

.business-list strong {
	color: #15181d;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.business-list p {
	margin: 0;
	color: #4f5967;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.75;
	word-break: keep-all;
}

.product-content {
	width: min(1280px, calc(100% - 160px));
	padding-top: var(--site-header-height);
}

.product-content h2 {
	max-width: 980px;
	margin: 0;
	color: #111722;
	font-size: 46px;
	font-weight: 900;
	line-height: 1.18;
	text-align: left;
	letter-spacing: 0;
	word-break: keep-all;
}

.product-lead {
	max-width: 900px;
	margin: 18px 0 0;
	color: #4f5967;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.82;
	word-break: keep-all;
}

.product-main {
	display: grid;
	grid-template-columns: minmax(320px, 460px) minmax(420px, 1fr);
	gap: clamp(40px, 5vw, 76px);
	align-items: center;
	margin-top: 44px;
	padding-top: 46px;
	border-top: 2px solid #111722;
}

.product-main-image {
	position: relative;
	justify-self: start;
	width: min(100%, 460px);
	aspect-ratio: 1 / 1;
	background: #f4f6f8;
	border-radius: 10px;
	overflow: hidden;
}

.product-main-image::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(17, 23, 34, 0.1);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.product-main-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-main-image p {
	position: absolute;
	right: 18px;
	bottom: 16px;
	z-index: 1;
	margin: 0;
	padding: 0;
	background: transparent;
	color: #000000;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.35;
	word-break: keep-all;
}

.hardware-line-break {
	display: block;
}

.hardware-copy-break {
	display: block;
}

.game-service-line-break,
.game-service-copy-break {
	display: block;
}

.hardware-main {
	grid-template-columns: minmax(520px, 640px) minmax(420px, 1fr);
	gap: clamp(48px, 6vw, 96px);
}

.hardware-main .product-main-image {
	width: min(100%, 640px);
}

.hardware-main .product-main-copy span {
	font-size: 15px;
}

.hardware-main .product-main-copy h3 {
	font-size: 38px;
}

.hardware-main .product-main-copy p {
	font-size: 18px;
	line-height: 1.88;
}

.hardware-scope span {
	font-size: 36px;
	line-height: 1.18;
}

.product-main-copy span {
	color: #034ba9;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.product-main-copy h3 {
	margin: 14px 0 0;
	color: #15181d;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.28;
	letter-spacing: 0;
	word-break: keep-all;
}

.product-main-copy p {
	margin: 18px 0 0;
	color: #4f5967;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.76;
	word-break: keep-all;
}

.hardware-scope {
	margin: 34px 0 0;
	padding: 28px 0 0;
	border-top: 2px solid #111722;
}

.hardware-scope > div {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 32px;
}

.hardware-scope span {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 58px;
	padding: 0 0 0 18px;
	border-bottom: 1px solid rgba(17, 23, 34, 0.16);
	color: #111722;
	font-weight: 800;
	word-break: keep-all;
}

.hardware-scope span::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: auto;
	height: auto;
	background: transparent;
	color: #034ba9;
	content: "-";
	font-weight: 900;
	line-height: 1;
	transform: translateY(-50%);
}

.hardware-scope span:nth-child(n + 3) {
	margin-top: 16px;
}


.product-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 32px 0 0;
	padding: 24px 0;
	border-top: 1px solid rgba(17, 23, 34, 0.16);
	border-bottom: 1px solid rgba(17, 23, 34, 0.16);
}

.product-meta div {
	min-width: 0;
	padding-right: 22px;
}

.product-meta div + div {
	padding-left: 22px;
	border-left: 1px solid rgba(17, 23, 34, 0.12);
}

.product-meta dt {
	margin: 0;
	color: #6b7280;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.product-meta dd {
	margin: 8px 0 0;
	color: #111722;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.product-inquiry-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	height: 52px;
	margin-top: 32px;
	padding: 0 26px;
	border: 1px solid #15181d;
	background: #15181d;
	color: #ffffff;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.16s ease, color 0.16s ease;
}

.product-inquiry-button:hover,
.product-inquiry-button:focus-visible {
	background: #ffffff;
	color: #15181d;
}

.section-eyebrow {
	margin: 0 0 14px;
	color: #034ba9;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	text-align: left;
	letter-spacing: 0;
	text-transform: uppercase;
}

.ceo-message-content {
	width: min(1220px, calc(100% - 160px));
	min-height: 100svh;
	margin: 0 auto;
	padding-top: var(--site-header-height);
	padding-bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	box-sizing: border-box;
}

.ceo-message-content h2 {
	max-width: 860px;
	margin: 0;
	font-size: 40px;
	text-align: left;
	word-break: keep-all;
}

.ceo-message-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
	align-items: center;
	justify-content: space-between;
	gap: clamp(42px, 5vw, 74px);
	margin-top: clamp(18px, 2.2svh, 26px);
	padding-top: clamp(22px, 2.5svh, 34px);
	padding-bottom: clamp(22px, 2.5svh, 34px);
	border-top: 1px solid rgba(21, 24, 29, 0.14);
	border-bottom: 1px solid rgba(21, 24, 29, 0.14);
}

.ceo-message-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 500px;
	height: clamp(330px, 32vw, 470px);
	justify-self: stretch;
	padding: clamp(36px, 4.2vw, 56px);
	background:
		linear-gradient(135deg, rgba(3, 75, 169, 0.08), rgba(255, 255, 255, 0.96) 42%),
		#f7f9fc;
	border: 1px solid rgba(21, 24, 29, 0.12);
	box-shadow: 0 22px 54px rgba(21, 24, 29, 0.08);
	overflow: hidden;
}

.ceo-message-visual::before {
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(3, 75, 169, 0.14);
	content: "";
	pointer-events: none;
}

.ceo-message-visual::after {
	position: absolute;
	right: -72px;
	bottom: -72px;
	width: 190px;
	height: 190px;
	background: rgba(3, 75, 169, 0.08);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.ceo-message-visual img {
	position: relative;
	z-index: 1;
	display: block;
	width: min(230px, 72%);
	height: auto;
	object-fit: contain;
}

.ceo-message-copy {
	max-width: 680px;
	margin: 0;
	padding-left: clamp(22px, 2.8vw, 38px);
	font-size: 17px;
	line-height: 1.68;
	border-left: 4px solid rgba(3, 75, 169, 0.18);
	word-break: keep-all;
}

.ceo-message-copy p + p {
	margin-top: 14px;
}

.ceo-message-signature {
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	gap: 14px;
	width: min(680px, calc((100% - clamp(42px, 5vw, 72px)) * 0.515));
	margin: 18px 0 0 auto;
	color: #15181d;
}

.ceo-message-signature span {
	color: var(--text-muted);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.ceo-message-signature strong {
	font-size: 26px;
	font-weight: 900;
	line-height: 1.2;
}

.principle-content {
	width: min(1580px, calc(100% - 96px));
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 76px;
	padding-bottom: 0;
}

.principle-heading {
	position: relative;
	max-width: 860px;
	margin: 0 auto clamp(28px, 4svh, 48px);
	text-align: center;
}

.principle-heading .section-eyebrow {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	margin: 0 0 14px;
	text-align: center;
}

.principle-heading h2 {
	margin: 0;
	color: #15181d;
	font-size: 50px;
	font-weight: 900;
	line-height: 1.2;
	word-break: keep-all;
}

html:lang(en) .principle-heading {
	max-width: 1180px;
}

html:lang(en) .principle-heading h2 {
	white-space: nowrap;
}

html:lang(en) .sub-content h2,
html:lang(en) .business-content h2,
html:lang(en) .careers-content h2,
html:lang(en) .ceo-message-content h2,
html:lang(en) .principle-heading h2,
html:lang(en) .inquiry-content h2 {
	word-break: normal;
	overflow-wrap: normal;
	text-wrap: balance;
}

html:lang(en) .sub-content p,
html:lang(en) .business-content p,
html:lang(en) .careers-content p,
html:lang(en) .ceo-message-copy p,
html:lang(en) .principle-content p,
html:lang(en) .inquiry-content p,
html:lang(en) .sub-content strong,
html:lang(en) .sub-content em {
	word-break: normal;
	overflow-wrap: normal;
	text-wrap: pretty;
}

html:lang(en) .business-lead,
html:lang(en) .business-intro p,
html:lang(en) .ceo-message-copy {
	max-width: 760px;
}

html:lang(en) .business-intro strong {
	max-width: 920px;
}

html:lang(en) .principle-content .principle-copy h2 {
	white-space: normal;
}

.principle-heading > p:last-child {
	max-width: 720px;
	margin: 16px auto 0;
	color: #5b6572;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.8;
	word-break: keep-all;
}

.principle-statement {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: clamp(22px, 2vw, 32px);
	text-align: center;
}

.principle-visual {
	--principle-offset-y: 0px;

	position: relative;
	flex: 0 1 500px;
	min-width: 0;
	padding: 12px;
	background: #ffffff;
	border: 1px solid rgba(21, 24, 29, 0.12);
	container-type: inline-size;
	transform: translateY(var(--principle-offset-y));
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		filter 180ms ease,
		transform 180ms ease;
}

.principle-visual-user {
	--principle-offset-y: 0px;
}

.principle-image {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid rgba(21, 24, 29, 0.12);
	border-radius: 2px;
	object-fit: contain;
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease;
}

.principle-visual:hover,
.principle-visual:focus-within {
	border-color: rgba(3, 75, 169, 0.24);
	box-shadow: 0 28px 70px rgba(21, 24, 29, 0.16);
	filter: saturate(1.04);
	transform: translateY(calc(var(--principle-offset-y) - 12px));
}

.principle-visual:hover .principle-image,
.principle-visual:focus-within .principle-image {
	border-color: rgba(3, 75, 169, 0.3);
	box-shadow: none;
}

.principle-number {
	position: absolute;
	top: 24px;
	left: 24px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	color: #034ba9;
	font-size: 17px;
	font-weight: 900;
	line-height: 1;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(3, 75, 169, 0.22);
}

.principle-copy {
	position: absolute;
	inset: 0;
	color: #111111;
	pointer-events: none;
}

.principle-content .principle-copy h2 {
	position: absolute;
	top: 55.6%;
	left: 50%;
	width: 90%;
	margin: 0;
	color: #111111;
	font-size: 40px;
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: 0;
	white-space: nowrap;
	transform: translateX(-50%);
}

.principle-content .principle-copy p {
	position: absolute;
	top: 75.5%;
	left: 50%;
	width: 92%;
	margin: 0;
	color: #111111;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.62;
	letter-spacing: 0;
	transform: translateX(-50%);
}

.principle-media-notice {
	position: absolute;
	right: 25px;
	bottom: 23px;
	margin: 0;
	color: rgba(21, 24, 29, 0.48);
	font-size: 11px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0;
	white-space: nowrap;
}

.inquiry-content {
	width: min(1280px, calc(100% - 160px));
	padding-top: 88px;
}

.inquiry-content .section-eyebrow {
	text-align: left;
}

.inquiry-content h2 {
	max-width: 860px;
	margin: 0;
	color: #15181d;
	font-size: 50px;
	font-weight: 900;
	line-height: 1.22;
	text-align: left;
	word-break: keep-all;
}

.inquiry-lead {
	max-width: 760px;
	margin: 22px 0 0;
	color: #5b6572;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.8;
	text-align: left;
	word-break: keep-all;
}

.inquiry-grid {
	display: grid;
	gap: 22px;
	margin-top: 58px;
}

.inquiry-summary {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 48px;
	border-top: 2px solid #15181d;
	border-bottom: 1px solid rgba(21, 24, 29, 0.16);
}

.inquiry-summary div {
	min-width: 0;
	padding: 30px 34px;
	border-left: 1px solid rgba(21, 24, 29, 0.12);
}

.inquiry-summary div:first-child {
	border-left: 0;
}

.inquiry-summary strong {
	display: block;
	color: #15181d;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.3;
}

.inquiry-summary span {
	display: block;
	margin-top: 10px;
	color: #2c333d;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	overflow-wrap: break-word;
	word-break: keep-all;
}

.inquiry-section-title {
	margin: 58px 0 0;
	padding-bottom: 18px;
	color: #15181d;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.35;
	border-bottom: 1px solid rgba(21, 24, 29, 0.14);
}

.inquiry-directory {
	margin-top: 58px;
	border-top: 3px solid #15181d;
}

.inquiry-section-title + .inquiry-directory {
	margin-top: 0;
}

.inquiry-row {
	display: grid;
	grid-template-columns: 88px minmax(180px, 0.42fr) minmax(0, 1fr);
	align-items: center;
	gap: 32px;
	min-height: 104px;
	padding: 26px 36px;
	border-bottom: 1px solid rgba(21, 24, 29, 0.14);
}

.inquiry-row-head {
	min-height: 54px;
	padding-top: 14px;
	padding-bottom: 14px;
	background: #f6f7f9;
}

.inquiry-row-head span {
	justify-self: start;
	color: #15181d;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
}

.inquiry-row-number {
	justify-self: start;
	color: #034ba9;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}

.inquiry-row strong {
	color: #15181d;
	font-size: 21px;
	font-weight: 650;
	line-height: 1.35;
	white-space: pre-line;
	word-break: keep-all;
}

.inquiry-row p {
	margin: 0;
	color: #4f5967;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.7;
	white-space: pre-line;
	word-break: keep-all;
}

.inquiry-row a {
	color: #1f3974;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.45;
	text-decoration: none;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.inquiry-row a:hover,
.inquiry-row a:focus-visible {
	color: #034ba9;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.inquiry-note {
	margin-top: 44px;
	padding: 28px 32px;
	background: #f6f7f9;
	border-left: 4px solid #034ba9;
}

.inquiry-note h3 {
	margin: 0;
	color: #15181d;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.35;
}

.inquiry-note p {
	margin: 12px 0 0;
	color: #4f5967;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	word-break: keep-all;
}

.inquiry-grid-business {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inquiry-grid-service {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 980px;
	margin-right: auto;
	margin-left: auto;
}

.inquiry-card {
	position: relative;
	min-width: 0;
	min-height: 246px;
	padding: 34px 32px 36px;
	background: #ffffff;
	border: 1px solid rgba(21, 24, 29, 0.14);
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.inquiry-card:hover,
.inquiry-card:focus-within {
	border-color: rgba(3, 75, 169, 0.28);
	box-shadow: 0 24px 54px rgba(21, 24, 29, 0.12);
	transform: translateY(-8px);
}

.inquiry-card-large {
	min-height: 360px;
}

.inquiry-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	color: #034ba9;
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
	border: 1px solid rgba(3, 75, 169, 0.22);
}

.inquiry-card h3 {
	margin: 28px 0 0;
	color: #15181d;
	font-size: 26px;
	font-weight: 900;
	line-height: 1.25;
	word-break: keep-all;
}

.inquiry-card p {
	margin: 18px 0 0;
	color: #4f5967;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.75;
	word-break: keep-all;
}

.inquiry-list {
	margin: 24px 0 0;
	padding: 22px 0 0;
	list-style: none;
	border-top: 1px solid rgba(21, 24, 29, 0.12);
}

.inquiry-list li {
	position: relative;
	padding-left: 16px;
	color: #2c333d;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.7;
	word-break: keep-all;
}

.inquiry-list li + li {
	margin-top: 8px;
}

.inquiry-list li::before {
	position: absolute;
	top: 0.78em;
	left: 0;
	width: 5px;
	height: 5px;
	background: #034ba9;
	content: "";
	transform: translateY(-50%);
}

.careers-content {
	width: min(1480px, calc(100% - 96px));
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 0;
	padding-bottom: 0;
}

.careers-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
	align-items: end;
	gap: 56px;
}

.careers-content .section-eyebrow {
	text-align: left;
}

.careers-content h2 {
	max-width: 980px;
	margin: 0;
	color: #111722;
	font-size: 52px;
	font-weight: 900;
	line-height: 1.18;
	text-align: left;
	word-break: keep-all;
}

.careers-lead {
	margin: 0;
	color: #4f5967;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.82;
	word-break: keep-all;
}

.careers-talent-content > .careers-lead {
	max-width: 900px;
	margin-top: 18px;
}

.careers-talent-content h2 {
	font-size: 46px;
}

.talent-layout {
	display: grid;
	grid-template-columns: minmax(380px, 0.96fr) minmax(560px, 1.04fr);
	align-items: center;
	justify-content: center;
	gap: clamp(44px, 4.8vw, 76px);
	width: min(1360px, 100%);
	margin: 38px auto 0;
}

.talent-visual {
	position: relative;
	justify-self: center;
	width: min(560px, 100%);
	min-width: 0;
	margin: 0;
	overflow: hidden;
	background: #ffffff;
	border: 1px solid rgba(21, 24, 29, 0.1);
	container-type: inline-size;
	transform: none;
}

.talent-visual img {
	display: block;
	width: 100%;
	height: auto;
}

.talent-visual-copy {
	position: absolute;
	top: 48.6%;
	left: 50%;
	width: 34%;
	color: #07182f;
	text-align: center;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.talent-visual-copy strong {
	display: block;
	font-size: clamp(36px, 6.6cqw, 78px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0;
}

.talent-keyword {
	position: absolute;
	font-size: clamp(18px, 4.2cqw, 56px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
	word-break: keep-all;
	pointer-events: none;
}

.talent-keyword-persistence {
	top: 12.2%;
	left: 9.4%;
	color: #856cc5;
}

.talent-keyword-growth {
	top: 12.2%;
	left: 81.8%;
	color: #fe8223;
}

.talent-keyword-insight {
	top: 84.4%;
	left: 7.7%;
	color: #256dc0;
}

.talent-keyword-collaboration {
	top: 84.4%;
	left: 81.3%;
	color: #2da09b;
}

.careers-page-en .talent-keyword {
	font-size: clamp(13px, 2.6cqw, 34px);
}

.careers-page-en .talent-keyword-growth {
	left: 78%;
}

.careers-page-en .talent-keyword-collaboration {
	left: 72%;
}

@container (max-width: 680px) {
	.talent-keyword {
		font-size: clamp(17px, 4cqw, 30px);
	}

	.talent-keyword-persistence {
		left: 8.4%;
	}

	.talent-keyword-growth {
		left: 82.2%;
	}

	.talent-keyword-insight {
		left: 6.8%;
	}

	.talent-keyword-collaboration {
		left: 81.8%;
	}
}

.talent-media-notice {
	position: absolute;
	right: 18px;
	bottom: 16px;
	margin: 0;
	color: rgba(21, 24, 29, 0.46);
	font-size: 11px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0;
	pointer-events: none;
}

.talent-description {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 44px;
	width: min(740px, 100%);
	align-self: center;
	align-content: center;
	justify-self: center;
	border-top: 0;
	transform: none;
}

.talent-description-item {
	position: relative;
	display: block;
	min-width: 0;
	padding: 18px 0 0;
	border-top: 1px solid rgba(21, 24, 29, 0.14);
	border-bottom: 0;
}

.talent-description-item::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: 64px;
	height: 3px;
	background: #856cc5;
	content: "";
}

.talent-description-item:nth-child(2)::before {
	background: #fe8223;
}

.talent-description-item:nth-child(3)::before {
	background: #256dc0;
}

.talent-description-item:nth-child(4)::before {
	background: #2da09b;
}

.talent-description-item strong {
	display: block;
	color: #15181d;
	font-size: 32px;
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: 0;
	word-break: keep-all;
}

.talent-description-item em {
	display: block;
	margin-top: 16px;
	color: #15181d;
	font-size: 20px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.35;
	word-break: keep-all;
}

.talent-description-item p {
	max-width: 340px;
	margin: 10px 0 0;
	color: #5b6572;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.7;
	word-break: keep-all;
}

.careers-visual-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.62fr);
	align-items: stretch;
	gap: 0;
	min-height: 360px;
	margin-top: 64px;
	overflow: hidden;
	background: #101722;
	border-top: 4px solid #034ba9;
}

.careers-visual-panel::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(16, 23, 34, 0.98), rgba(16, 23, 34, 0.78) 55%, rgba(16, 23, 34, 0.2)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 86px);
	content: "";
}

.careers-visual-copy {
	position: relative;
	z-index: 1;
	padding: 54px 58px 58px;
	color: #ffffff;
}

.careers-visual-copy span,
.careers-message span,
.careers-notice span {
	display: block;
	color: #5ba2ff;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.careers-visual-copy strong {
	display: block;
	margin-top: 18px;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.18;
	word-break: keep-all;
}

.careers-visual-copy p {
	max-width: 560px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.8;
	word-break: keep-all;
}

.careers-building-graphic {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(52px, 1fr));
	gap: 16px;
	align-content: end;
	padding: 54px 58px;
	background:
		linear-gradient(135deg, rgba(3, 75, 169, 0.18), rgba(255, 255, 255, 0.04)),
		linear-gradient(180deg, transparent 16%, rgba(255, 255, 255, 0.08));
}

.careers-building-graphic span {
	display: block;
	height: 54px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: inset 0 -14px 0 rgba(3, 75, 169, 0.18);
}

.careers-building-graphic span:nth-child(2),
.careers-building-graphic span:nth-child(5),
.careers-building-graphic span:nth-child(8) {
	height: 82px;
}

.careers-building-graphic span:nth-child(3),
.careers-building-graphic span:nth-child(6),
.careers-building-graphic span:nth-child(9) {
	height: 118px;
}

.careers-principles {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 34px;
	border-top: 3px solid #15181d;
	border-bottom: 1px solid rgba(21, 24, 29, 0.14);
}

.careers-principle-card {
	min-width: 0;
	min-height: 330px;
	padding: 32px 28px 34px;
	border-left: 1px solid rgba(21, 24, 29, 0.12);
}

.careers-principle-card:first-child {
	border-left: 0;
}

.careers-principle-card span,
.careers-process span {
	color: #034ba9;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}

.careers-principle-card strong {
	display: block;
	margin-top: 34px;
	color: #697380;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
}

.careers-principle-card h3 {
	margin: 10px 0 0;
	color: #15181d;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.32;
	word-break: keep-all;
}

.careers-principle-card p,
.careers-info-table p,
.careers-guide-grid p {
	margin: 18px 0 0;
	color: #4f5967;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.76;
	word-break: keep-all;
}

.careers-standard {
	margin-top: 74px;
}

.careers-guide-content .careers-standard {
	margin-top: 42px;
}

.careers-talent-content,
.careers-guide-content {
	box-sizing: border-box;
	min-height: 100svh;
	justify-content: center;
	padding-top: var(--site-header-height);
	padding-bottom: 0;
}

.careers-talent-content {
	width: min(1280px, calc(100% - 160px));
	min-height: 100svh;
	justify-content: center;
	padding-top: var(--site-header-height);
	padding-bottom: 0;
}

.hiring-guide-page .careers-guide-content {
	width: min(1280px, calc(100% - 160px));
	min-height: auto;
	justify-content: flex-start;
	padding-top: 88px;
	padding-bottom: 0;
}

.careers-guide-content .careers-heading {
	grid-template-columns: 1fr;
	align-items: start;
	gap: 20px;
	max-width: 980px;
}

.careers-guide-content .careers-lead {
	max-width: 860px;
	margin-right: 0;
	margin-left: 0;
}

.careers-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 20px;
	border-bottom: 2px solid #15181d;
}

.careers-section-head .section-eyebrow {
	margin-bottom: 10px;
}

.careers-section-title {
	margin: 0;
	color: #15181d;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.34;
	word-break: keep-all;
}

.careers-guide-content .careers-section-head {
	padding-bottom: 14px;
}

.careers-guide-content .careers-section-title {
	font-size: 26px;
}

.careers-info-table {
	border-bottom: 1px solid rgba(21, 24, 29, 0.14);
}

.careers-info-table div {
	display: grid;
	grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
	align-items: start;
	gap: 34px;
	padding: 30px 34px;
	border-bottom: 1px solid rgba(21, 24, 29, 0.12);
}

.careers-info-table div:last-child {
	border-bottom: 0;
}

.careers-info-table strong,
.careers-guide-grid strong {
	color: #15181d;
	font-size: 21px;
	font-weight: 900;
	line-height: 1.35;
	word-break: keep-all;
}

.careers-info-table p {
	margin-top: 0;
}

.careers-message {
	margin-top: 76px;
	padding: 42px 46px 46px;
	background: #f4f7fb;
	border-left: 5px solid #034ba9;
}

.careers-message h3 {
	max-width: 820px;
	margin: 14px 0 0;
	color: #15181d;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.35;
	word-break: keep-all;
}

.careers-message p {
	max-width: 920px;
	margin: 18px 0 0;
	color: #4f5967;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.8;
	word-break: keep-all;
}

.careers-notice {
	display: grid;
	grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
	gap: 38px;
	margin-top: 58px;
	padding: 36px 42px;
	background: #f6f7f9;
	border-top: 3px solid #15181d;
	border-bottom: 1px solid rgba(21, 24, 29, 0.14);
}

.careers-notice strong {
	display: block;
	margin-top: 12px;
	color: #15181d;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.42;
	word-break: keep-all;
}

.careers-notice p {
	margin: 24px 0 0;
	color: #4f5967;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.82;
	word-break: keep-all;
}

.careers-process {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-bottom: 1px solid rgba(21, 24, 29, 0.14);
}

.hiring-guide-page .careers-process {
	border-bottom: 0;
}

.careers-process-step {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 350px;
	padding: 34px 38px 0;
	border-left: 1px solid rgba(21, 24, 29, 0.12);
}

.careers-guide-content .careers-process-step {
	padding: 34px 34px 0;
}

.careers-process-step:first-child {
	border-left: 0;
}

.careers-process-step::after {
	position: absolute;
	top: 46px;
	right: -12px;
	z-index: 1;
	width: 20px;
	height: 20px;
	background: #ffffff;
	border-top: 3px solid #31549d;
	border-right: 3px solid #31549d;
	content: "";
	transform: rotate(45deg);
}

.careers-process-step:last-child::after {
	display: none;
}

.careers-process strong {
	display: block;
	margin-top: 28px;
	color: #15181d;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.35;
	word-break: keep-all;
}

.careers-guide-content .careers-process strong {
	margin-top: 18px;
	font-size: 20px;
}

.careers-process p {
	margin: 14px 0 0;
	color: #4f5967;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	word-break: keep-all;
}

.careers-guide-content .careers-process p,
.careers-guide-content .careers-guide-grid p {
	margin-top: 10px;
	font-size: 16px;
	line-height: 1.62;
}

.careers-process-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 184px;
	margin: auto 0 0;
	padding: 22px 0 28px;
}

.careers-process-visual img {
	display: block;
	width: min(100%, 285px);
	max-height: 148px;
	object-fit: contain;
}

.careers-process-step:nth-child(2) .careers-process-visual img,
.careers-process-step:nth-child(3) .careers-process-visual img {
	width: min(100%, 298px);
	max-height: 158px;
}

.careers-process-step:nth-child(4) .careers-process-visual img {
	width: min(100%, 265px);
	max-height: 152px;
}

.careers-process-visual figcaption {
	position: absolute;
	right: -8px;
	bottom: 2px;
	margin: 0;
	color: rgba(21, 24, 29, 0.46);
	font-size: 10px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0;
	white-space: nowrap;
	pointer-events: none;
}

.careers-guide-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: rgba(21, 24, 29, 0.14);
	border-bottom: 1px solid rgba(21, 24, 29, 0.14);
}

.careers-guide-grid > div {
	min-width: 0;
	min-height: 190px;
	padding: 32px 30px 34px;
	background: #ffffff;
}

.careers-guide-content .careers-guide-grid > div {
	min-height: 150px;
	padding: 24px 24px 26px;
}

.careers-guide-image-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.careers-guide-image-grid .careers-guide-item {
	display: grid;
	grid-template-columns: minmax(128px, 0.9fr) minmax(148px, 1fr);
	align-items: center;
	gap: 20px;
	min-height: 330px;
	padding: 48px 18px 44px 16px;
}

.careers-guide-visual {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	margin: 0;
}

.careers-guide-visual img {
	display: block;
	width: min(100%, 176px);
	max-height: 170px;
	object-fit: contain;
}

.careers-guide-visual figcaption {
	margin: 4px 2px 0 0;
	color: rgba(21, 24, 29, 0.46);
	font-size: 10px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0;
	white-space: nowrap;
	pointer-events: none;
}

.careers-guide-copy {
	min-width: 0;
}

.careers-guide-copy p {
	max-width: 300px;
}

.careers-action {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 38px;
}

.hiring-guide-page .careers-action {
	min-height: 244px;
	margin-top: 0;
}

.careers-ready-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	height: 52px;
	padding: 0 28px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	background: #15181d;
	border: 0;
	cursor: pointer;
	transition:
		background-color 180ms ease,
		transform 180ms ease;
}

.careers-ready-button:hover,
.careers-ready-button:focus-visible {
	background: #034ba9;
	transform: translateY(-2px);
}

.newsroom-content {
	width: auto;
	margin: 0 var(--page-inline-padding) 0 calc(var(--page-inline-padding) + var(--header-logo-shift));
	padding-top: 74px;
}

.newsroom-tools {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 52px;
}

.newsroom-search {
	display: flex;
	align-items: center;
	width: min(360px, 100%);
	border-bottom: 1px solid rgba(21, 24, 29, 0.18);
}

.newsroom-search input {
	flex: 1 1 auto;
	min-width: 0;
	height: 48px;
	padding: 0 14px 0 0;
	color: var(--text-main);
	font: inherit;
	font-size: 17px;
	font-weight: 500;
	background: transparent;
	border: 0;
	outline: 0;
}

.newsroom-search input::placeholder {
	color: rgba(98, 107, 118, 0.35);
}

.newsroom-search-button {
	position: relative;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.newsroom-search-button::before {
	position: absolute;
	top: 11px;
	left: 10px;
	width: 16px;
	height: 16px;
	border: 3px solid #000000;
	border-radius: 50%;
	content: "";
}

.newsroom-search-button::after {
	position: absolute;
	top: 27px;
	left: 27px;
	width: 12px;
	height: 3px;
	background: #000000;
	border-radius: 999px;
	content: "";
	transform: rotate(45deg);
	transform-origin: left center;
}

.newsroom-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 48px 34px;
}

.news-card {
	min-width: 0;
}

.news-card-media {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #eeeeee;
}

.news-card-category {
	margin: 24px 0 20px;
	color: #000000;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
}

.news-card-title {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: #000000;
	font-size: 23px;
	font-weight: 800;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
}

.news-card-date {
	margin: 24px 0 0;
	color: var(--text-muted);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
}

.newsroom-empty {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	color: var(--text-muted);
	font-size: 20px;
	font-weight: 500;
	border-top: 1px solid rgba(21, 24, 29, 0.12);
	border-bottom: 1px solid rgba(21, 24, 29, 0.12);
}

.newsroom-more {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 54px;
}

.newsroom-more-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 128px;
	height: 46px;
	padding: 0 28px;
	color: var(--text-main);
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	background: #ffffff;
	border: 1px solid rgba(21, 24, 29, 0.25);
	border-radius: 0;
	cursor: pointer;
	transition:
		color 160ms ease,
		border-color 160ms ease,
		background-color 160ms ease;
}

.newsroom-more-button:hover,
.newsroom-more-button:focus-visible {
	color: #034ba9;
	border-color: #034ba9;
}

@keyframes scrollCue {
	0% {
		top: -100%;
	}

	58%,
	100% {
		top: 100%;
	}
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	width: 100%;
	background: var(--surface-bg);
	transition:
		background-color 180ms ease,
		color 180ms ease;
}

.home-page .site-header {
	position: fixed;
	left: 0;
	z-index: 40;
	background: transparent;
	color: #ffffff;
}

.home-page .site-header:has(.header-logo-link:hover),
.home-page .site-header:has(.header-nav:hover),
.home-page .site-header:has(.mobile-menu-toggle:hover),
.home-page .site-header:has(.mobile-menu-toggle:focus-visible),
.home-page .site-header.is-menu-open,
.home-page .site-header:has(.language-toggle:checked) {
	background: #ffffff;
	color: var(--text-main);
}

.home-page .site-header.is-scrolled {
	background: #ffffff;
	color: var(--text-main);
}

.sub-page .site-header {
	position: fixed;
	left: 0;
	z-index: 40;
	background: transparent;
	color: #ffffff;
}

.sub-page .site-header:has(.header-logo-link:hover),
.sub-page .site-header:has(.header-nav:hover),
.sub-page .site-header:has(.mobile-menu-toggle:hover),
.sub-page .site-header:has(.mobile-menu-toggle:focus-visible),
.sub-page .site-header.is-menu-open,
.sub-page .site-header:has(.language-toggle:checked) {
	background: #ffffff;
	color: var(--text-main);
}

.sub-page .site-header.is-scrolled {
	background: #ffffff;
	color: var(--text-main);
}

.header-inner {
	--header-logo-click-width: 148px;
	--header-logo-track-width: calc(var(--header-logo-click-width) + var(--header-logo-shift));
	--header-language-width: 86px;
	--header-gap: 18px;
	--header-inline-padding: 80px;

	display: grid;
	grid-template-columns: var(--header-logo-track-width) minmax(0, 1fr) var(--header-language-width);
	align-items: center;
	gap: var(--header-gap);
	min-height: 76px;
	margin: 0 auto;
	padding: 0 var(--header-inline-padding);
	border-bottom: 1px solid var(--surface-line);
	transition: border-color 180ms ease;
}

.home-page .header-inner {
	border-bottom-color: rgba(255, 255, 255, 0.24);
}

.sub-page .header-inner {
	border-bottom-color: rgba(255, 255, 255, 0.24);
}

.home-page .site-header:has(.header-logo-link:hover) .header-inner,
.home-page .site-header:has(.header-nav:hover) .header-inner,
.home-page .site-header:has(.mobile-menu-toggle:hover) .header-inner,
.home-page .site-header:has(.mobile-menu-toggle:focus-visible) .header-inner,
.home-page .site-header.is-menu-open .header-inner,
.home-page .site-header:has(.language-toggle:checked) .header-inner {
	border-bottom-color: var(--surface-line);
}

.home-page .site-header.is-scrolled .header-inner {
	border-bottom-color: var(--surface-line);
}

.sub-page .site-header:has(.header-logo-link:hover) .header-inner,
.sub-page .site-header:has(.header-nav:hover) .header-inner,
.sub-page .site-header:has(.mobile-menu-toggle:hover) .header-inner,
.sub-page .site-header:has(.mobile-menu-toggle:focus-visible) .header-inner,
.sub-page .site-header.is-menu-open .header-inner,
.sub-page .site-header:has(.language-toggle:checked) .header-inner {
	border-bottom-color: var(--surface-line);
}

.sub-page .site-header.is-scrolled .header-inner {
	border-bottom-color: var(--surface-line);
}

.header-logo-link {
	grid-column: 1;
	grid-row: 1;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	justify-self: end;
	width: var(--header-logo-click-width);
	height: 37px;
	line-height: 0;
	overflow: hidden;
}

.header-logo {
	display: block;
	flex: 0 0 auto;
	width: 148px;
	height: 37px;
	object-fit: contain;
	object-position: center;
	transition: filter 180ms ease;
}

.home-page .header-logo {
	filter:
		brightness(0)
		invert(1)
		drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}

.sub-page .header-logo {
	filter:
		brightness(0)
		invert(1)
		drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}

.home-page .site-header:has(.header-logo-link:hover) .header-logo,
.home-page .site-header:has(.header-nav:hover) .header-logo,
.home-page .site-header:has(.mobile-menu-toggle:hover) .header-logo,
.home-page .site-header:has(.mobile-menu-toggle:focus-visible) .header-logo,
.home-page .site-header.is-menu-open .header-logo,
.home-page .site-header:has(.language-toggle:checked) .header-logo {
	filter: none;
}

.home-page .site-header.is-scrolled .header-logo {
	filter: none;
}

.sub-page .site-header:has(.header-logo-link:hover) .header-logo,
.sub-page .site-header:has(.header-nav:hover) .header-logo,
.sub-page .site-header:has(.mobile-menu-toggle:hover) .header-logo,
.sub-page .site-header:has(.mobile-menu-toggle:focus-visible) .header-logo,
.sub-page .site-header.is-menu-open .header-logo,
.sub-page .site-header:has(.language-toggle:checked) .header-logo {
	filter: none;
}

.sub-page .site-header.is-scrolled .header-logo {
	filter: none;
}

.mobile-menu-toggle,
.mobile-menu {
	display: none;
}

.header-nav {
	--nav-item-width: 156px;

	grid-column: 2;
	grid-row: 1;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: stretch;
	gap: 0;
	min-width: 0;
}

.header-nav-item {
	position: static;
	display: flex;
	align-items: stretch;
	justify-content: center;
	width: var(--nav-item-width);
}

.header-nav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 76px;
	padding: 0;
	color: var(--text-main);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: color 180ms ease;
}

.home-page .header-nav-link {
	color: #ffffff;
}

.sub-page .header-nav-link {
	color: #ffffff;
}

.home-page .site-header:has(.header-logo-link:hover) .header-nav-link,
.home-page .site-header:has(.header-nav:hover) .header-nav-link,
.home-page .site-header:has(.mobile-menu-toggle:hover) .header-nav-link,
.home-page .site-header:has(.mobile-menu-toggle:focus-visible) .header-nav-link,
.home-page .site-header.is-menu-open .header-nav-link,
.home-page .site-header:has(.language-toggle:checked) .header-nav-link {
	color: var(--text-main);
}

.home-page .site-header.is-scrolled .header-nav-link {
	color: var(--text-main);
}

.sub-page .site-header:has(.header-logo-link:hover) .header-nav-link,
.sub-page .site-header:has(.header-nav:hover) .header-nav-link,
.sub-page .site-header:has(.mobile-menu-toggle:hover) .header-nav-link,
.sub-page .site-header:has(.mobile-menu-toggle:focus-visible) .header-nav-link,
.sub-page .site-header.is-menu-open .header-nav-link,
.sub-page .site-header:has(.language-toggle:checked) .header-nav-link {
	color: var(--text-main);
}

.sub-page .site-header.is-scrolled .header-nav-link {
	color: var(--text-main);
}

.header-nav-link::after {
	position: absolute;
	left: 50%;
	bottom: -1px;
	width: 0;
	height: 4px;
	background: #034ba9;
	content: "";
	transform: translateX(-50%);
	transition: width 180ms ease;
}

.header-nav-item:hover .header-nav-link,
.header-nav-link:focus-visible {
	color: #034ba9;
}

.home-page .site-header:has(.header-nav:hover) .header-nav-item:hover .header-nav-link,
.home-page .site-header:has(.language-toggle:checked) .header-nav-item:hover .header-nav-link {
	color: #034ba9;
}

.sub-page .site-header:has(.header-nav:hover) .header-nav-item:hover .header-nav-link,
.sub-page .site-header:has(.language-toggle:checked) .header-nav-item:hover .header-nav-link {
	color: #034ba9;
}

.header-nav-item:hover .header-nav-link::after,
.header-nav-link:focus-visible::after {
	width: 100%;
}

.header-submenu {
	position: absolute;
	top: 76px;
	left: 0;
	right: 0;
	z-index: 10;
	visibility: hidden;
	background: #ffffff;
	border-bottom: 1px solid var(--surface-line);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-10px);
	transition:
		opacity 180ms ease,
		transform 220ms ease,
		visibility 0s linear 180ms;
}

.header-nav-item:hover .header-submenu {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	transition:
		opacity 180ms ease,
		transform 220ms ease,
		visibility 0s;
}

.header-submenu-inner {
	display: grid;
	grid-template-columns: var(--header-logo-track-width) minmax(0, 1fr) var(--header-language-width);
	gap: var(--header-gap);
	margin: 0;
	padding: 34px var(--header-inline-padding) 42px;
}

.submenu-list {
	display: flex;
	grid-column: 2;
	flex-direction: column;
	align-items: flex-start;
	justify-self: center;
	gap: 22px;
	width: var(--nav-item-width);
	margin: 0;
	transform: translateX(var(--submenu-shift, 0));
}

.submenu-company .header-submenu-inner {
	--submenu-shift: calc(var(--nav-item-width) * -2);
}

.submenu-business .header-submenu-inner {
	--submenu-shift: calc(var(--nav-item-width) * -1);
}

.submenu-careers .header-submenu-inner {
	--submenu-shift: var(--nav-item-width);
}

.submenu-contact .header-submenu-inner {
	--submenu-shift: calc(var(--nav-item-width) * 2);
}

.submenu-list a {
	color: var(--text-main);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
}

.submenu-list a:hover,
.submenu-list a:focus-visible {
	color: #034ba9;
}

.language-selector {
	position: relative;
	grid-column: 3;
	grid-row: 1;
	z-index: 30;
	isolation: isolate;
	justify-self: end;
	width: var(--header-language-width);
	color: #000000;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	background: transparent;
	transition: color 180ms ease;
}

.home-page .language-selector {
	color: #ffffff;
}

.sub-page .language-selector {
	color: #ffffff;
}

.home-page .site-header:has(.header-logo-link:hover) .language-selector,
.home-page .site-header:has(.header-nav:hover) .language-selector,
.home-page .site-header:has(.mobile-menu-toggle:hover) .language-selector,
.home-page .site-header:has(.mobile-menu-toggle:focus-visible) .language-selector,
.home-page .site-header.is-menu-open .language-selector,
.home-page .site-header:has(.language-toggle:checked) .language-selector {
	color: #000000;
}

.home-page .site-header.is-scrolled .language-selector {
	color: #000000;
}

.sub-page .site-header:has(.header-logo-link:hover) .language-selector,
.sub-page .site-header:has(.header-nav:hover) .language-selector,
.sub-page .site-header:has(.mobile-menu-toggle:hover) .language-selector,
.sub-page .site-header:has(.mobile-menu-toggle:focus-visible) .language-selector,
.sub-page .site-header.is-menu-open .language-selector,
.sub-page .site-header:has(.language-toggle:checked) .language-selector {
	color: #000000;
}

.sub-page .site-header.is-scrolled .language-selector {
	color: #000000;
}

.language-selector::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 84px;
	background: #ffffff;
	border: 1px solid #d7d7d7;
	opacity: 0;
	content: "";
}

.language-toggle {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.language-current {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 7px;
	width: 100%;
	height: 42px;
	min-height: 42px;
	padding: 0 14px;
	cursor: pointer;
	user-select: none;
}

.language-arrow {
	display: block;
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	border-right: 3px solid #000000;
	border-bottom: 3px solid #000000;
	transform: rotate(45deg) translateY(-2px);
	transition:
		border-color 180ms ease,
		transform 180ms ease;
}

.home-page .language-arrow {
	border-right-color: #ffffff;
	border-bottom-color: #ffffff;
}

.sub-page .language-arrow {
	border-right-color: #ffffff;
	border-bottom-color: #ffffff;
}

.home-page .site-header:has(.header-logo-link:hover) .language-arrow,
.home-page .site-header:has(.header-nav:hover) .language-arrow,
.home-page .site-header:has(.mobile-menu-toggle:hover) .language-arrow,
.home-page .site-header:has(.mobile-menu-toggle:focus-visible) .language-arrow,
.home-page .site-header.is-menu-open .language-arrow,
.home-page .site-header:has(.language-toggle:checked) .language-arrow {
	border-right-color: #000000;
	border-bottom-color: #000000;
}

.home-page .site-header.is-scrolled .language-arrow {
	border-right-color: #000000;
	border-bottom-color: #000000;
}

.sub-page .site-header:has(.header-logo-link:hover) .language-arrow,
.sub-page .site-header:has(.header-nav:hover) .language-arrow,
.sub-page .site-header:has(.mobile-menu-toggle:hover) .language-arrow,
.sub-page .site-header:has(.mobile-menu-toggle:focus-visible) .language-arrow,
.sub-page .site-header.is-menu-open .language-arrow,
.sub-page .site-header:has(.language-toggle:checked) .language-arrow {
	border-right-color: #000000;
	border-bottom-color: #000000;
}

.sub-page .site-header.is-scrolled .language-arrow {
	border-right-color: #000000;
	border-bottom-color: #000000;
}

.language-panel {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 31;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-6px);
	transition:
		max-height 200ms ease,
		opacity 160ms ease,
		transform 200ms ease;
}

.language-toggle:checked + .language-current .language-arrow {
	transform: rotate(225deg) translate(-1px, -1px);
}

.language-selector:has(.language-toggle:checked) {
	background: transparent;
}

.language-selector:has(.language-toggle:checked)::before {
	opacity: 1;
}

.language-toggle:checked ~ .language-panel {
	max-height: 42px;
	opacity: 1;
	transform: translateY(0);
}

.language-option {
	display: flex;
	align-items: center;
	width: 100%;
	height: 42px;
	padding: 0 14px;
	color: #000000;
	text-decoration: none;
}

.site-footer {
	width: 100%;
	min-height: 96px;
	background: var(--footer-bg);
	color: var(--footer-text);
	border-top: 1px solid var(--footer-line);
}

.footer-inner {
	--footer-logo-box-width: 128px;

	display: grid;
	grid-template-columns: calc(var(--footer-logo-box-width) + var(--footer-logo-shift)) minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 20px;
	width: min(1510px, calc(100% - (var(--footer-inline-padding) * 2)));
	min-height: 95px;
	margin: 0 auto;
}

.footer-logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: end;
	width: var(--footer-logo-box-width);
	height: 42px;
	line-height: 0;
}

.footer-logo {
	display: block;
	width: 128px;
	height: 32px;
	object-fit: contain;
	object-position: center;
}

.footer-company {
	display: flex;
	align-items: flex-start;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
}

.footer-copyright {
	max-width: 100%;
	margin: 0;
	color: var(--footer-muted);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
}

.footer-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	min-width: 0;
	padding-right: var(--header-logo-shift);
}

.footer-links a {
	color: var(--footer-text);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.footer-links a:hover,
.footer-links a:focus-visible {
	color: #034ba9;
}

.privacy-page {
	background: #ffffff;
}

.privacy-main {
	width: min(1280px, calc(100% - 160px));
	margin: 0 auto;
	padding: 132px 0 96px;
}

.license-page .privacy-main {
	min-height: calc(100svh - var(--site-footer-height));
	padding-bottom: 56px;
}

.license-main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: min(1280px, calc(100% - 160px));
	min-height: calc(100svh - var(--site-footer-height));
	padding-top: 96px;
	padding-bottom: 96px;
}

.license-hero {
	padding-bottom: 28px;
	border-bottom: 2px solid #15181d;
}

.license-hero h1 {
	font-size: clamp(36px, 4.6vw, 54px);
}

.license-hero p:not(.section-eyebrow) {
	width: min(920px, 100%);
	margin-top: 18px;
	font-size: 16px;
	line-height: 1.72;
}

.license-hero span {
	margin-top: 16px;
	font-size: 13px;
}

.privacy-hero {
	padding-bottom: 34px;
	border-bottom: 2px solid #15181d;
}

.privacy-hero h1 {
	margin: 0;
	color: #15181d;
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 900;
	line-height: 1.18;
}

.privacy-hero p:not(.section-eyebrow) {
	width: min(1120px, 100%);
	margin: 22px 0 0;
	color: #4f5967;
	font-size: 17px;
	font-weight: 550;
	line-height: 1.8;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.privacy-hero span {
	display: block;
	margin-top: 18px;
	color: #626b76;
	font-size: 14px;
	font-weight: 800;
}

.privacy-section {
	padding: 38px 0;
	border-bottom: 1px solid #e2e6ec;
}

.privacy-section h2 {
	margin: 0 0 16px;
	color: #15181d;
	font-size: clamp(22px, 2.2vw, 30px);
	font-weight: 900;
	line-height: 1.35;
}

.privacy-section p {
	max-width: 1120px;
	margin: 0;
	color: #4f5967;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.85;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.privacy-section p + p {
	margin-top: 12px;
}

.privacy-list {
	display: grid;
	gap: 0;
	margin: 24px 0 0;
	padding: 0;
	border-top: 1px solid #15181d;
}

.privacy-list div {
	display: grid;
	grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
	gap: 28px;
	padding: 18px 0;
	border-bottom: 1px solid #e2e6ec;
}

.privacy-list dt {
	color: #15181d;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.7;
}

.privacy-list dd {
	max-width: 1120px;
	min-width: 0;
	margin: 0;
	color: #4f5967;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.privacy-lines span {
	display: block;
}

.privacy-lines span + span {
	margin-top: 6px;
}

.privacy-contact-list {
	margin-bottom: 18px;
}

.privacy-table-wrap {
	margin: 24px 0 0;
	overflow-x: auto;
	border-top: 1px solid #15181d;
}

.privacy-table {
	width: 100%;
	min-width: 880px;
	border-collapse: collapse;
	table-layout: auto;
}

.privacy-table th,
.privacy-table td {
	padding: 18px 20px;
	color: #4f5967;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.75;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #e2e6ec;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.privacy-table th {
	color: #15181d;
	font-weight: 900;
	background: #ffffff;
}

.license-card-section {
	position: relative;
	display: grid;
	gap: 12px;
	margin-top: 0;
	padding: 30px 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #e2e6ec;
	border-radius: 0;
}

.license-card-section p {
	max-width: 920px;
	line-height: 1.76;
}

.license-card-section h2 {
	margin-bottom: 4px;
	font-size: clamp(22px, 2.1vw, 28px);
}

.license-detail-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: start;
	min-height: 44px;
	margin-top: 4px;
	padding: 0 18px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	background: #15181d;
	border: 1px solid #15181d;
	border-radius: 4px;
	transition:
		background-color 160ms ease,
		color 160ms ease;
}

.license-detail-button:hover,
.license-detail-button:focus-visible {
	color: #15181d;
	background: #ffffff;
}

.privacy-section code {
	padding: 2px 6px;
	color: #1f3974;
	font-family: Consolas, "Courier New", monospace;
	font-size: 0.94em;
	font-weight: 800;
	background: #f3f5f8;
	border: 1px solid #e0e5ec;
	border-radius: 4px;
}

.privacy-table th:first-child,
.privacy-table td:first-child {
	width: 180px;
}

.privacy-table th:nth-child(2),
.privacy-table td:nth-child(2) {
	width: 28%;
}

@media (max-width: 1360px) {
	html:has(body.principles-page) {
		scroll-snap-type: none;
	}

	.principles-page .sub-hero,
	.principles-page .principle-content,
	.principles-page .site-footer {
		scroll-snap-align: none;
		scroll-snap-stop: normal;
	}

	.principle-statement {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: min(1020px, 100%);
		margin: 0 auto;
		gap: 56px 36px;
		justify-items: center;
	}

	.principle-content {
		padding-bottom: 96px;
	}

	.principle-visual {
		width: 100%;
		max-width: 490px;
		flex: none;
	}

	.principle-visual-user {
		--principle-offset-y: 0px;

		order: 1;
		grid-column: 1 / -1;
	}

	.principle-visual-future {
		order: 2;
	}

	.principle-visual-children {
		order: 3;
	}

	.careers-content {
		width: min(1180px, calc(100% - 56px));
		min-height: 100svh;
		padding-top: 0;
		padding-bottom: 0;
	}

	.hiring-guide-page .careers-guide-content {
		width: min(1280px, calc(100% - 160px));
		padding-top: 88px;
	}

	.careers-talent-content,
	.careers-guide-content {
		padding-top: var(--site-header-height);
		padding-bottom: 0;
	}

	.careers-talent-content {
		width: min(1280px, calc(100% - 160px));
		min-height: 100svh;
		justify-content: center;
		padding-top: var(--site-header-height);
	}

	.careers-content h2 {
		font-size: 44px;
	}

	.careers-lead {
		font-size: 17px;
	}

	.talent-layout {
		grid-template-columns: minmax(330px, 0.96fr) minmax(480px, 1.04fr);
		gap: clamp(34px, 4vw, 56px);
		width: min(1160px, 100%);
		margin-top: 38px;
	}

	.talent-visual {
		width: min(500px, 100%);
	}

	.talent-description {
		width: min(660px, 100%);
		gap: 22px 36px;
	}

	.talent-description-item {
		padding-top: 16px;
	}

	.talent-description-item strong {
		font-size: 30px;
	}

	.talent-description-item em {
		margin-top: 14px;
		font-size: 19px;
	}

	.talent-description-item p {
		max-width: 300px;
		font-size: 16px;
		line-height: 1.72;
	}
}

@media (max-width: 1180px) {
	:root {
		--page-inline-padding: 56px;
		--footer-inline-padding: 88px;
	}

	.home-hero-content {
		max-width: 820px;
		padding: 76px 56px 110px 104px;
	}

	.home-hero-content h1 {
		font-size: 64px;
	}

	.home-hero-content > p {
		font-size: 22px;
	}

	.commerce-content {
		width: calc(100% - 88px);
		padding-bottom: 96px;
	}

	.commerce-content h2 {
		font-size: 48px;
	}

	.commerce-lead,
	.commerce-feature-copy p,
	.commerce-section-heading p {
		font-size: 18px;
	}

	.commerce-feature {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.commerce-feature-image {
		width: min(720px, 100%);
	}

	.commerce-feature-copy h3,
	.commerce-section-heading h3 {
		font-size: 36px;
	}

	.commerce-flow-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.commerce-flow-list div:nth-child(2) {
		border-right: 0;
	}

	.commerce-flow-list div:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(17, 23, 34, 0.16);
	}

	.sub-hero {
		min-height: 390px;
	}

	.sub-hero-content h1 {
		font-size: 60px;
	}

	.sub-content h2 {
		font-size: 52px;
	}

	.ceo-message-content h2 {
		font-size: 42px;
	}

	.ceo-message-layout {
		grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
		gap: 34px;
	}

	.ceo-message-visual {
		height: clamp(300px, var(--ceo-copy-height, 440px), 540px);
		padding: clamp(34px, 4vw, 52px);
	}

	.header-inner {
		--header-logo-click-width: 129px;
		--header-gap: 20px;
		--header-inline-padding: 56px;

		grid-template-columns: var(--header-logo-track-width) minmax(0, 1fr) var(--header-language-width);
		min-height: 76px;
	}

	.header-logo {
		width: 129px;
		height: 32px;
	}

	.header-logo-link {
		height: 32px;
	}

	.header-nav {
		--nav-item-width: 122px;
	}

	.header-nav-link {
		font-size: 18px;
	}

	.header-submenu {
		top: 76px;
	}

	.header-submenu-inner {
		padding: 30px var(--header-inline-padding) 36px;
	}

	.submenu-list a {
		font-size: 18px;
	}
}

@media (max-width: 1145px) {
	.principle-statement {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		width: min(430px, 100%);
		margin: 0 auto;
		gap: 48px;
	}

	.principle-visual {
		width: 100%;
		max-width: none;
	}

	.principle-visual-user,
	.principle-visual-future,
	.principle-visual-children {
		grid-column: auto;
		width: 100%;
		max-width: none;
	}

}

@media (max-width: 999px) {
	html:has(body.ceo-message-page),
	html:has(body.principles-page),
	html:has(body.careers-page) {
		scroll-snap-type: none;
	}

	.ceo-message-page .sub-hero,
	.ceo-message-page .ceo-message-content,
	.principles-page .sub-hero,
	.principles-page .principle-content,
	.principles-page .site-footer,
	.careers-page .sub-hero,
	.careers-page .careers-content,
	.careers-page .site-footer,
	.ceo-message-page .site-footer {
		scroll-snap-align: none;
		scroll-snap-stop: normal;
	}

	:root {
		--header-logo-shift: 0px;
		--footer-logo-shift: 0px;
		--footer-inline-padding: 48px;
		--page-inline-padding: 28px;
		--site-header-height: 72px;
	}

	.home-hero {
		min-height: 100svh;
	}

	.home-hero-content {
		min-height: 100svh;
		padding: 68px 40px 104px 64px;
	}

	.home-hero-content h1 {
		font-size: 52px;
	}

	.home-hero-content > p {
		font-size: 20px;
	}

	.commerce-content {
		width: calc(100% - 56px);
		padding-top: 64px;
		padding-bottom: 84px;
	}

	.commerce-content .section-eyebrow,
	.commerce-content h2,
	.commerce-lead,
	.commerce-section-heading {
		text-align: center;
	}

	.commerce-content h2 {
		font-size: 42px;
	}

	.commerce-lead {
		margin-right: auto;
		margin-left: auto;
	}

	.commerce-feature {
		margin-top: 44px;
		padding-top: 40px;
	}

	.commerce-feature-image {
		margin: 0 auto;
	}

	.commerce-feature-copy {
		text-align: center;
	}

	.commerce-flow-section {
		margin-top: 74px;
	}

	.commerce-section-heading {
		margin: 0 auto;
	}
.sub-hero {
		min-height: 340px;
		padding: 102px 28px 64px;
	}

	.sub-hero-content h1 {
		font-size: 52px;
	}

	.sub-content {
		width: calc(100% - 56px);
		padding: 64px 0 96px;
	}

	.privacy-main {
		width: calc(100% - 56px);
	}

	.sub-content h2 {
		font-size: 46px;
	}

	.ceo-message-content {
		width: calc(100% - 56px);
		min-height: auto;
		text-align: center;
		padding-top: 72px;
		padding-bottom: 72px;
	}

	.ceo-message-content .section-eyebrow {
		text-align: center;
	}

	.ceo-message-content h2 {
		font-size: 40px;
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.ceo-message-layout {
		grid-template-columns: 1fr;
		align-items: center;
		justify-content: center;
		gap: 34px;
		margin-top: 48px;
		padding-top: 42px;
		padding-bottom: 42px;
	}

	.ceo-message-visual {
		width: min(420px, 100%);
		height: auto;
		aspect-ratio: 1 / 1;
		margin: 0 auto;
		padding: 42px;
	}

	.ceo-message-copy {
		max-width: 640px;
		margin: 0 auto;
		font-size: 18px;
		text-align: left;
	}

	.ceo-message-signature {
		justify-content: flex-end;
		width: min(640px, 100%);
		margin-right: auto;
		margin-left: auto;
		text-align: right;
	}

	.principle-content {
		width: calc(100% - 56px);
		min-height: auto;
		padding-top: 72px;
		padding-bottom: 96px;
	}

	.principle-heading {
		margin-bottom: 52px;
	}

	html:lang(en) .principle-heading {
		max-width: 860px;
	}

	html:lang(en) .principle-heading h2 {
		white-space: normal;
	}

	.principle-heading h2 {
		font-size: 40px;
	}

	.principle-heading > p:last-child {
		font-size: 17px;
	}

	.principle-statement {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		width: min(430px, 100%);
		margin: 0 auto;
		gap: 48px;
	}

	.principle-visual {
		width: 100%;
		max-width: none;
	}

	.principle-visual-user {
		--principle-offset-y: 0px;

		width: 100%;
		order: 1;
		grid-column: auto;
	}

	.principle-visual-future {
		order: 2;
	}

	.principle-visual-children {
		order: 3;
	}

	.principle-content .principle-copy h2 {
		font-size: 32px;
	}

	.principle-content .principle-copy p {
		font-size: 14px;
		line-height: 1.5;
	}

	.principle-media-notice {
		right: 23px;
		bottom: 21px;
		font-size: 10px;
	}

	.inquiry-content {
		width: calc(100% - 56px);
		padding-top: 72px;
	}

	.inquiry-content .section-eyebrow {
		text-align: center;
	}

	.inquiry-content h2 {
		font-size: 40px;
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.inquiry-lead {
		margin-right: auto;
		margin-left: auto;
		font-size: 17px;
		text-align: center;
	}

	.inquiry-grid,
	.inquiry-grid-business,
	.inquiry-grid-service {
		grid-template-columns: 1fr;
		max-width: 680px;
		margin-right: auto;
		margin-left: auto;
	}

	.inquiry-card,
	.inquiry-card-large {
		min-height: auto;
	}

	.inquiry-summary {
		grid-template-columns: 1fr;
	}

	.inquiry-summary div {
		padding: 26px 28px;
		border-top: 1px solid rgba(21, 24, 29, 0.12);
		border-left: 0;
	}

	.inquiry-summary div:first-child {
		border-top: 0;
	}

	.inquiry-section-title {
		margin-top: 46px;
		font-size: 24px;
		text-align: left;
	}

	.inquiry-row,
	.inquiry-row-head {
		min-height: auto;
	}

	.inquiry-row-head {
		display: none;
	}

	.inquiry-directory {
		display: grid;
		grid-template-columns: 1fr;
		gap: 14px;
		margin-top: 46px;
		border-top: 0;
	}

	.inquiry-row:not(.inquiry-row-head) {
		position: relative;
		display: block;
		padding: 34px 32px 36px;
		background: #ffffff;
		border: 1px solid rgba(21, 24, 29, 0.16);
		border-top: 2px solid #15181d;
	}

	.inquiry-row-number {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: auto;
		height: auto;
		color: #31549d;
		font-size: 15px;
		font-weight: 800;
		line-height: 1;
		border: 0;
	}

	.inquiry-row strong {
		display: block;
		margin-top: 16px;
		color: #15181d;
		font-size: 22px;
		font-weight: 650;
		line-height: 1.35;
	}

	.inquiry-row p {
		margin-top: 18px;
		padding-top: 18px;
		color: #4f5967;
		font-size: 17px;
		line-height: 1.72;
		overflow-wrap: break-word;
		border-top: 1px solid rgba(21, 24, 29, 0.1);
	}

	.inquiry-row a {
		font-size: 15px;
	}

	.business-content {
		width: calc(100% - 56px);
		padding-top: 72px;
	}

	.business-content .section-eyebrow {
		text-align: center;
	}

	.business-content h2 {
		margin-right: auto;
		margin-left: auto;
		font-size: 40px;
		text-align: center;
	}

	.business-lead {
		margin-right: auto;
		margin-left: auto;
		font-size: 17px;
		text-align: center;
	}

	.business-intro {
		margin-top: 46px;
		padding: 30px 28px 34px;
	}

	.business-intro strong {
		font-size: 22px;
	}

	.business-list div {
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 10px 18px;
		min-height: auto;
		padding: 28px 0;
	}

	.business-list p {
		grid-column: 2;
		font-size: 16px;
	}

	.business-list strong {
		font-size: 20px;
	}

	.product-content {
		width: min(1280px, calc(100% - 160px));
		padding-top: var(--site-header-height);
	}

	.product-content .section-eyebrow,
	.product-content h2,
	.product-lead {
		text-align: center;
	}

	.product-content h2 {
		font-size: 44px;
	}

	.product-lead {
		margin-top: 18px;
		font-size: 17px;
	}

	.product-main {
		grid-template-columns: 1fr;
		gap: 34px;
		margin-top: 42px;
		padding-top: 38px;
	}

	.product-main-image {
		justify-self: center;
		width: min(100%, 420px);
	}

	.hardware-main .product-main-image {
		width: min(100%, 620px);
	}

	.product-main-copy {
		text-align: center;
	}

	.product-main-copy .product-inquiry-button {
		display: flex;
		width: fit-content;
		margin: 96px auto 0;
	}

	.product-meta {
		text-align: center;
	}

	.hardware-scope {
		text-align: left;
	}

	.hardware-main .product-main-copy h3 {
		font-size: 34px;
	}

	.hardware-main .product-main-copy p {
		font-size: 17px;
	}

	.careers-content {
		width: calc(100% - 56px);
		min-height: auto;
		padding-top: 72px;
		padding-bottom: 88px;
	}

	.careers-content .section-eyebrow {
		text-align: center;
	}

	.careers-heading {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.careers-content h2 {
		margin-right: auto;
		margin-left: auto;
		font-size: 40px;
		text-align: center;
	}

	.careers-lead {
		margin-right: auto;
		margin-left: auto;
		font-size: 17px;
		text-align: center;
	}

	.careers-guide-content .careers-heading {
		max-width: 100%;
		margin-right: 0;
		margin-left: 0;
		text-align: left;
	}

	.careers-guide-content {
		min-height: 100svh;
		justify-content: center;
		padding-top: var(--site-header-height);
		padding-bottom: 0;
	}

	.hiring-guide-page .careers-guide-content {
		width: calc(100% - 56px);
		min-height: auto;
		justify-content: flex-start;
		padding-top: 72px;
		padding-bottom: 0;
	}

	.hiring-guide-page .careers-action {
		min-height: 212px;
	}

	.careers-talent-content {
		min-height: 100svh;
		justify-content: center;
		padding-top: var(--site-header-height);
		padding-bottom: var(--site-header-height);
	}

	.careers-guide-content .section-eyebrow,
	.careers-guide-content h2,
	.careers-guide-content .careers-lead {
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.careers-guide-content .careers-process {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.careers-guide-content .careers-process div:nth-child(odd) {
		border-left: 0;
	}

	.careers-guide-content .careers-process div:nth-child(n + 3) {
		border-top: 1px solid rgba(21, 24, 29, 0.12);
	}

	.careers-guide-content .careers-process div {
		padding: 28px 24px 30px;
	}

	.hiring-guide-page .careers-guide-content .careers-process-step {
		min-height: 400px;
	}

	.hiring-guide-page .careers-guide-content .careers-process-visual {
		align-items: center;
		height: 188px;
		margin: auto 0 0;
		padding: 0 0 28px;
	}

	.hiring-guide-page .careers-guide-content .careers-process div:nth-child(n + 3) {
		border-top: 0;
	}

	.talent-layout {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 42px;
		margin-top: 48px;
	}

	.talent-visual {
		width: min(600px, 100%);
		margin-right: auto;
		margin-left: auto;
	}

	.talent-description {
		grid-template-columns: 1fr;
		width: min(680px, 100%);
		margin-right: auto;
		margin-left: auto;
		gap: 0;
	}

	.talent-description-item {
		display: grid;
		grid-template-columns: minmax(96px, 0.24fr) minmax(0, 1fr);
		align-items: start;
		gap: 24px;
		padding: 24px 0 28px;
		text-align: left;
	}

	.talent-description-item::before {
		left: 0;
		transform: none;
	}

	.talent-description-item strong {
		font-size: 32px;
	}

	.talent-description-item em {
		margin-top: 0;
		font-size: 19px;
	}

	.talent-description-item p {
		max-width: none;
		font-size: 16px;
		line-height: 1.76;
	}

	.careers-visual-panel {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.careers-visual-copy {
		padding: 44px 36px 34px;
		text-align: center;
	}

	.careers-visual-copy strong {
		font-size: 34px;
	}

	.careers-visual-copy p {
		margin-right: auto;
		margin-left: auto;
	}

	.careers-building-graphic {
		grid-template-columns: repeat(9, minmax(18px, 1fr));
		padding: 28px 36px 40px;
	}

	.careers-building-graphic span,
	.careers-building-graphic span:nth-child(2),
	.careers-building-graphic span:nth-child(5),
	.careers-building-graphic span:nth-child(8),
	.careers-building-graphic span:nth-child(3),
	.careers-building-graphic span:nth-child(6),
	.careers-building-graphic span:nth-child(9) {
		height: 70px;
	}

	.careers-principles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.careers-principle-card:nth-child(odd) {
		border-left: 0;
	}

	.careers-principle-card:nth-child(n + 3) {
		border-top: 1px solid rgba(21, 24, 29, 0.12);
	}

	.careers-notice {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-top: 46px;
		padding: 30px 28px 34px;
	}

	.careers-notice strong {
		font-size: 22px;
	}

	.careers-info-table div {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 26px 0;
	}

	.careers-info-table p {
		font-size: 16px;
	}

	.careers-info-table strong {
		font-size: 20px;
	}

	.careers-guide-grid {
		grid-template-columns: 1fr;
	}

	.careers-guide-image-grid .careers-guide-item {
		grid-template-columns: minmax(160px, 0.52fr) minmax(220px, 1fr);
		min-height: 260px;
		padding: 34px 34px 32px;
	}

	.careers-guide-visual img {
		width: min(100%, 210px);
		max-height: 200px;
	}

	.careers-process {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.careers-process div:nth-child(odd) {
		border-left: 0;
	}

	.careers-process div:nth-child(n + 3) {
		border-top: 1px solid rgba(21, 24, 29, 0.12);
	}

	.careers-process div:nth-child(2)::after {
		display: none;
	}

	.newsroom-content {
		margin-right: var(--page-inline-padding);
		margin-left: var(--page-inline-padding);
	}

	.newsroom-tools {
		margin-bottom: 42px;
	}

	.newsroom-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 42px 24px;
	}

	.news-card-title {
		font-size: 21px;
	}

	.sub-text {
		margin-top: 42px;
		font-size: 18px;
	}

	.header-inner {
		--header-logo-click-width: 118px;
		--header-language-width: 72px;

		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 72px;
		padding: 0 28px;
	}

	.mobile-menu-toggle {
		z-index: 32;
		display: inline-flex;
		flex: 0 0 auto;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		width: 44px;
		height: 44px;
		padding: 0;
		background: transparent;
		border: 0;
		cursor: pointer;
	}

	.mobile-menu-toggle span {
		display: block;
		width: 24px;
		height: 2px;
		background: var(--text-main);
		transition:
			background-color 180ms ease,
			opacity 160ms ease,
			transform 180ms ease;
	}

	.home-page .mobile-menu-toggle span {
		background: #ffffff;
	}

	.sub-page .mobile-menu-toggle span {
		background: #ffffff;
	}

	.home-page .site-header:has(.header-logo-link:hover) .mobile-menu-toggle span,
	.home-page .site-header:has(.mobile-menu-toggle:hover) .mobile-menu-toggle span,
	.home-page .site-header:has(.mobile-menu-toggle:focus-visible) .mobile-menu-toggle span,
	.home-page .site-header.is-menu-open .mobile-menu-toggle span,
	.home-page .site-header:has(.language-toggle:checked) .mobile-menu-toggle span {
		background: var(--text-main);
	}

	.home-page .site-header.is-scrolled .mobile-menu-toggle span {
		background: var(--text-main);
	}

	.sub-page .site-header:has(.header-logo-link:hover) .mobile-menu-toggle span,
	.sub-page .site-header:has(.mobile-menu-toggle:hover) .mobile-menu-toggle span,
	.sub-page .site-header:has(.mobile-menu-toggle:focus-visible) .mobile-menu-toggle span,
	.sub-page .site-header.is-menu-open .mobile-menu-toggle span,
	.sub-page .site-header:has(.language-toggle:checked) .mobile-menu-toggle span {
		background: var(--text-main);
	}

	.sub-page .site-header.is-scrolled .mobile-menu-toggle span {
		background: var(--text-main);
	}

	.mobile-menu-toggle.is-open span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.mobile-menu-toggle.is-open span:nth-child(2) {
		opacity: 0;
	}

	.mobile-menu-toggle.is-open span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.header-nav {
		display: none;
	}

	.header-submenu {
		display: none;
	}

	.language-selector {
		margin-left: auto;
		font-size: 16px;
	}

	.language-selector::before {
		height: 76px;
	}

	.language-current {
		gap: 6px;
		height: 38px;
		min-height: 38px;
		padding: 0 10px;
	}

	.language-panel {
		transform: translateY(-4px);
	}

	.language-toggle:checked ~ .language-panel {
		max-height: 38px;
	}

	.language-option {
		height: 38px;
		padding: 0 10px;
	}

	.header-logo {
		width: 118px;
		height: 30px;
	}

	.header-logo-link {
		position: absolute;
		left: 50%;
		height: 30px;
		transform: translateX(-50%);
	}

	.mobile-menu {
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		z-index: 25;
		display: block;
		max-height: 0;
		overflow: hidden;
		background: #ffffff;
		border-bottom: 1px solid var(--surface-line);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition:
			max-height 260ms ease,
			opacity 180ms ease,
			transform 220ms ease;
	}

	.mobile-menu.is-open {
		max-height: calc(100vh - 72px);
		overflow-y: auto;
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.mobile-nav-item {
		border-top: 1px solid var(--surface-line);
	}

	.mobile-nav-link,
	.mobile-nav-trigger {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 58px;
		padding: 0 24px;
		color: var(--text-main);
		font-family: inherit;
		font-size: 18px;
		font-weight: 700;
		line-height: 1.2;
		text-align: left;
		text-decoration: none;
		background: transparent;
		border: 0;
		cursor: pointer;
	}

	.mobile-nav-link:hover,
	.mobile-nav-link:focus-visible,
	.mobile-nav-trigger:hover,
	.mobile-nav-trigger:focus-visible,
	.mobile-nav-trigger[aria-expanded="true"] {
		color: #034ba9;
	}

	.mobile-nav-arrow {
		display: block;
		width: 9px;
		height: 9px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg) translateY(-2px);
		transition: transform 180ms ease;
	}

	.mobile-nav-trigger[aria-expanded="true"] .mobile-nav-arrow {
		transform: rotate(225deg) translate(-1px, -1px);
	}

	.mobile-submenu {
		max-height: 0;
		overflow: hidden;
		padding: 0;
		transition:
			max-height 240ms ease,
			padding 220ms ease;
	}

	.mobile-nav-item.is-open .mobile-submenu {
		max-height: 340px;
		padding: 2px 0 16px;
	}

	.mobile-submenu a {
		display: block;
		padding: 11px 24px 11px 40px;
		color: var(--text-main);
		font-size: 16px;
		font-weight: 600;
		line-height: 1.35;
		text-decoration: none;
	}

	.mobile-submenu a:hover,
	.mobile-submenu a:focus-visible {
		color: #034ba9;
	}

	.footer-inner {
		width: calc(100% - (var(--footer-inline-padding) * 2));
		min-height: 88px;
	}

}

@media (max-width: 900px) {
	.ceo-message-layout {
		gap: 8px;
	}
}

@media (max-width: 649px) {
	:root {
		--footer-logo-shift: 0px;
		--footer-inline-padding: 18px;
	}

	.principle-statement {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		width: min(360px, 100%);
		margin: 0 auto;
		gap: 48px;
	}

	.principle-visual-user,
	.principle-visual-future,
	.principle-visual-children {
		grid-column: auto;
		width: 100%;
		max-width: none;
	}

	.inquiry-row,
	.inquiry-row-head {
		padding-right: 0;
		padding-left: 0;
	}

	.inquiry-row:not(.inquiry-row-head) {
		padding: 30px 24px 32px;
	}

	.inquiry-row-number {
		display: block;
		width: max-content;
		height: auto;
		font-size: 14px;
	}

	.inquiry-row strong {
		margin-top: 16px;
		font-size: 21px;
		font-weight: 650;
	}

	.inquiry-row p {
		margin-top: 16px;
		padding-top: 16px;
		font-size: 17px;
		line-height: 1.7;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		justify-items: center;
		row-gap: 8px;
		width: calc(100% - 36px);
		min-height: auto;
		padding: 16px 0;
		text-align: center;
	}

	.footer-company {
		align-items: center;
	}

	.footer-links {
		justify-content: center;
		padding-right: 0;
	}

	.footer-logo-mark {
		justify-self: center;
	}

	.footer-copyright {
		font-size: 13px;
		overflow-wrap: break-word;
	}

	.privacy-main {
		width: calc(100% - 36px);
		padding: 96px 0 64px;
	}

	.privacy-list div {
		grid-template-columns: 1fr;
		gap: 6px;
	}

}

@media (max-width: 480px) {
	:root {
		--header-logo-shift: 0px;
		--page-inline-padding: 18px;
		--site-header-height: 64px;
	}

	.home-hero {
		min-height: 100svh;
	}

	.home-hero-content {
		min-height: 100svh;
		padding: 54px 24px 94px;
	}

	.home-hero-content h1 {
		font-size: 38px;
	}

	.home-hero-content > p {
		margin-top: 18px;
		font-size: 16px;
	}

	.commerce-content {
		width: calc(100% - 36px);
		padding-top: 52px;
		padding-bottom: 70px;
	}

	.commerce-line-break {
		display: none;
	}

	.commerce-content h2 {
		font-size: 34px;
	}

	.commerce-lead,
	.commerce-feature-copy p,
	.commerce-section-heading p,
	.commerce-flow-list p,
	.commerce-cta p {
		font-size: 15px;
	}

	.commerce-feature {
		gap: 30px;
		margin-top: 34px;
		padding-top: 32px;
	}

	.commerce-feature-image {
		border-radius: 8px;
	}

	.commerce-feature-copy h3,
	.commerce-section-heading h3 {
		font-size: 28px;
	}

	.commerce-flow-section {
		margin-top: 56px;
	}
.commerce-flow-list {
		grid-template-columns: 1fr;
		margin-top: 30px;
	}

	.commerce-flow-list div,
	.commerce-flow-list div:nth-child(2) {
		min-height: auto;
		padding: 26px 8px;
		border-right: 0;
		border-bottom: 1px solid rgba(17, 23, 34, 0.16);
	}

	.commerce-flow-list div:last-child {
		border-bottom: 0;
	}

	.commerce-flow-list strong {
		font-size: 22px;
	}

	.commerce-cta {
		margin-top: 52px;
		padding-top: 42px;
	}

	.sub-hero {
		min-height: 290px;
		padding: 88px 22px 52px;
	}

	.sub-hero-content h1 {
		font-size: 40px;
	}

	.sub-content {
		width: calc(100% - 36px);
		padding: 52px 0 76px;
	}

	.sub-content h2 {
		font-size: 36px;
	}

	.section-eyebrow {
		margin-bottom: 12px;
		font-size: 13px;
	}

	.ceo-message-content {
		width: calc(100% - 36px);
		min-height: auto;
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.ceo-message-content h2 {
		font-size: 31px;
	}

	.ceo-message-layout {
		margin-top: 38px;
		padding-top: 34px;
	}

	.ceo-message-visual {
		width: min(240px, 100%);
		height: auto;
		aspect-ratio: 1 / 1;
		padding: 34px;
	}

	.ceo-message-visual img {
		width: min(180px, 78%);
	}

	.ceo-message-copy {
		font-size: 16px;
		line-height: 1.82;
	}

	.ceo-message-signature {
		justify-content: flex-end;
		margin-top: 34px;
		text-align: right;
	}

	.ceo-message-signature strong {
		font-size: 24px;
	}

	.principle-content {
		width: calc(100% - 36px);
		min-height: auto;
		padding-top: 58px;
		padding-bottom: 88px;
	}

	.principle-heading {
		margin-bottom: 42px;
	}

	.principle-heading h2 {
		font-size: 30px;
	}

	.principle-heading > p:last-child {
		margin-top: 16px;
		font-size: 15px;
	}

	.principle-statement {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: center;
		width: min(430px, 100%);
		margin: 0 auto;
		gap: 42px;
	}

	.principle-visual {
		flex: 0 1 auto;
		width: 100%;
		max-width: none;
		padding: 8px;
	}

	.principle-number {
		top: 16px;
		left: 16px;
		width: 40px;
		height: 40px;
		font-size: 13px;
	}

	.principle-content .principle-copy h2 {
		top: 55.4%;
		font-size: 20px;
	}

	.principle-content .principle-copy p {
		top: 76%;
		width: 94%;
		font-size: 13px;
		line-height: 1.45;
	}

	.principle-media-notice {
		right: 19px;
		bottom: 18px;
		font-size: 9px;
	}

	.inquiry-content {
		width: calc(100% - 36px);
		padding-top: 58px;
	}

	.inquiry-content h2 {
		font-size: 31px;
	}

	.inquiry-lead {
		margin-top: 16px;
		font-size: 15px;
	}

	.inquiry-grid {
		gap: 16px;
		margin-top: 38px;
	}

	.inquiry-summary {
		margin-top: 34px;
	}

	.inquiry-summary div {
		padding: 24px clamp(14px, 4.6vw, 24px);
	}

	.inquiry-summary span {
		font-size: 18px;
		line-height: 1.45;
	}

	.inquiry-section-title {
		margin-top: 40px;
		font-size: 22px;
	}

	.inquiry-card {
		padding: 26px 22px 28px;
	}

	.inquiry-number {
		width: 38px;
		height: 38px;
		font-size: 13px;
	}

	.inquiry-card h3 {
		margin-top: 22px;
		font-size: 22px;
	}

	.inquiry-card p {
		font-size: 15px;
	}

	.inquiry-list li {
		font-size: 14px;
	}

	.inquiry-note {
		margin-top: 34px;
		padding: 24px 22px;
	}

	.inquiry-note h3 {
		font-size: 18px;
	}

	.inquiry-note p {
		font-size: 14px;
	}

	.business-content {
		width: calc(100% - 36px);
		padding-top: 58px;
	}

	.business-content h2 {
		font-size: 31px;
	}

	.business-lead {
		margin-top: 16px;
		font-size: 15px;
	}

	.business-intro {
		margin-top: 36px;
		padding: 26px 22px 28px;
	}

	.business-intro strong {
		font-size: 19px;
	}

	.business-intro p {
		font-size: 15px;
	}

	.business-section-title {
		margin-top: 46px;
		font-size: 22px;
	}

	.business-list {
		margin-top: 40px;
	}

	.business-section-title + .business-list {
		margin-top: 0;
	}

	.business-list div {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 24px 0;
	}

	.business-list p {
		grid-column: auto;
		font-size: 15px;
	}

	.business-list span {
		font-size: 14px;
	}

	.business-list strong {
		font-size: 19px;
	}

	.product-content {
		width: calc(100% - 36px);
		padding-top: var(--site-header-height);
	}

	.product-content h2 {
		font-size: 31px;
	}

	.product-lead {
		margin-top: 16px;
		font-size: 15px;
	}

	.product-main {
		gap: 28px;
		margin-top: 36px;
		padding-top: 30px;
	}

	.product-main-image {
		width: min(100%, 340px);
		aspect-ratio: 1 / 1;
	}

	.product-main-image p {
		right: 12px;
		bottom: 12px;
		font-size: 12px;
	}

	.hardware-line-break {
		display: none;
	}

	.hardware-copy-break {
		display: none;
	}

	.game-service-line-break,
	.game-service-copy-break {
		display: none;
	}

	.product-main-copy h3 {
		font-size: 24px;
	}

	.product-main-copy p {
		font-size: 15px;
	}

	.hardware-main .product-main-copy h3 {
		font-size: 27px;
	}

	.hardware-main .product-main-copy p {
		font-size: 16px;
	}

	.hardware-scope span {
		font-size: 32px;
	}

	.product-meta {
		grid-template-columns: 1fr;
		margin-top: 24px;
		padding: 0;
	}

	.product-meta div {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 18px;
		padding: 16px 0;
		text-align: center;
	}

	.product-meta div + div {
		padding-left: 0;
		border-top: 1px solid rgba(17, 23, 34, 0.12);
		border-left: 0;
	}

	.product-meta dd {
		margin-top: 0;
		font-size: 15px;
		text-align: center;
	}

	.hardware-scope {
		margin-top: 24px;
		padding-top: 22px;
	}

	.hardware-scope > div {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.hardware-scope span {
		min-height: 52px;
	}

	.hardware-scope span:nth-child(n + 3),
	.hardware-scope span + span {
		margin-top: 12px;
	}


	.product-inquiry-button {
		width: 100%;
		height: 48px;
		margin-top: 60px;
		margin-bottom: 0;
	}

	.careers-content {
		width: calc(100% - 36px);
		min-height: auto;
		padding-top: 58px;
		padding-bottom: 76px;
	}

	.careers-talent-content,
	.careers-guide-content {
		min-height: 100svh;
		padding-top: var(--site-header-height);
		padding-bottom: 0;
	}

	.careers-talent-content {
		min-height: 100svh;
		padding-top: var(--site-header-height);
		padding-bottom: var(--site-header-height);
	}

	.hiring-guide-page .careers-guide-content {
		width: calc(100% - 36px);
		min-height: auto;
		padding-top: 58px;
		padding-bottom: 0;
	}

	.hiring-guide-page .careers-action {
		min-height: 172px;
	}

	.careers-content h2 {
		font-size: 31px;
	}

	.careers-lead {
		font-size: 15px;
	}

	.careers-talent-content > .careers-lead {
		margin-top: 16px;
	}

	.talent-layout {
		gap: 32px;
		margin-top: 36px;
	}

	.talent-visual {
		box-shadow: none;
	}

	.talent-media-notice {
		right: 12px;
		bottom: 10px;
		font-size: 9px;
	}

	.talent-description {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.talent-description-item {
		display: grid;
		grid-template-columns: minmax(70px, 0.26fr) minmax(0, 1fr);
		gap: 18px;
		min-height: auto;
		padding: 22px 0 24px;
		border-top: 0;
		border-bottom: 1px solid rgba(21, 24, 29, 0.14);
		text-align: left;
	}

	.careers-talent-content .talent-description-item {
		grid-template-columns: minmax(70px, 0.26fr) minmax(0, 1fr);
		gap: 18px;
		padding: 22px 0 24px;
	}

	.talent-description-item::before {
		width: 48px;
		height: 2px;
		top: -2px;
		left: 0;
		transform: none;
	}

	.talent-description-item strong {
		font-size: 24px;
	}

	.talent-description-item em {
		margin-top: 0;
		font-size: 17px;
	}

	.talent-description-item p {
		max-width: none;
		margin-right: 0;
		margin-left: 0;
		font-size: 16px;
		line-height: 1.78;
	}

	.careers-visual-panel {
		margin-top: 38px;
	}

	.careers-visual-copy {
		padding: 34px 24px 28px;
	}

	.careers-visual-copy strong {
		font-size: 27px;
	}

	.careers-visual-copy p {
		font-size: 15px;
	}

	.careers-building-graphic {
		gap: 8px;
		padding: 22px 24px 30px;
	}

	.careers-building-graphic span,
	.careers-building-graphic span:nth-child(2),
	.careers-building-graphic span:nth-child(5),
	.careers-building-graphic span:nth-child(8),
	.careers-building-graphic span:nth-child(3),
	.careers-building-graphic span:nth-child(6),
	.careers-building-graphic span:nth-child(9) {
		height: 48px;
	}

	.careers-notice {
		display: block;
		margin-top: 36px;
		padding: 26px 22px 28px;
	}

	.careers-notice strong {
		font-size: 19px;
	}

	.careers-notice p,
	.careers-message p {
		font-size: 15px;
	}

	.careers-principles {
		grid-template-columns: 1fr;
		margin-top: 28px;
	}

	.careers-principle-card,
	.careers-principle-card:nth-child(n + 3) {
		min-height: auto;
		padding: 26px 0;
		border-top: 1px solid rgba(21, 24, 29, 0.12);
		border-left: 0;
	}

	.careers-principle-card:first-child {
		border-top: 0;
	}

	.careers-principle-card strong {
		margin-top: 22px;
	}

	.careers-principle-card h3 {
		font-size: 20px;
	}

	.careers-principle-card p,
	.careers-info-table p {
		font-size: 15px;
	}

	.careers-process span {
		font-size: 13px;
	}

	.careers-info-table strong {
		font-size: 19px;
	}

	.careers-standard {
		margin-top: 40px;
	}

	.careers-section-head {
		display: block;
		padding-bottom: 14px;
	}

	.careers-guide-content .careers-section-head {
		text-align: left;
	}

	.careers-guide-content .careers-section-head .section-eyebrow {
		width: 100%;
		margin-bottom: 12px;
		text-align: left;
	}

	.careers-guide-content .careers-section-title {
		text-align: left;
	}

	.careers-guide-content .careers-heading {
		max-width: 100%;
		margin-right: 0;
		margin-left: 0;
		text-align: left;
	}

	.careers-guide-content .section-eyebrow,
	.careers-guide-content h2,
	.careers-guide-content .careers-lead {
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.careers-guide-content .careers-lead {
		max-width: 760px;
	}

	.careers-info-table div {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 24px 0;
	}

	.careers-guide-grid > div {
		min-height: auto;
		padding: 26px 22px 28px;
	}

	.careers-guide-image-grid .careers-guide-item {
		grid-template-columns: 1fr;
		justify-items: start;
		gap: 16px;
		padding: 24px 22px 28px;
	}

	.careers-guide-visual {
		align-items: flex-start;
	}

	.careers-guide-visual img {
		width: min(100%, 190px);
		max-height: 180px;
	}

	.careers-message {
		margin-top: 44px;
		padding: 30px 24px 32px;
	}

	.careers-message h3,
	.careers-section-title {
		font-size: 22px;
	}

	.careers-process {
		grid-template-columns: 1fr;
	}

	.careers-guide-content .careers-process div,
	.careers-guide-content .careers-process div:nth-child(n + 3) {
		padding: 22px 22px 24px;
		border-top: 1px solid rgba(21, 24, 29, 0.12);
		border-left: 0;
	}

	.hiring-guide-page .careers-guide-content .careers-process-step {
		min-height: auto;
	}

	.hiring-guide-page .careers-guide-content .careers-process-visual {
		align-items: center;
		height: 160px;
		margin: 22px 0 0;
		padding: 0 0 26px;
	}

	.hiring-guide-page .careers-guide-content .careers-process div,
	.hiring-guide-page .careers-guide-content .careers-process div:nth-child(n + 3) {
		border-top: 0;
	}

	.careers-guide-content .careers-process div:first-child {
		border-top: 0;
	}

	.careers-guide-content .careers-process div::after {
		display: none;
	}

	.careers-guide-content .careers-process strong {
		margin-top: 12px;
		font-size: 18px;
	}

	.careers-guide-content .careers-process p {
		margin-top: 10px;
		font-size: 16px;
		line-height: 1.68;
	}

	.newsroom-content {
		margin-right: var(--page-inline-padding);
		margin-left: var(--page-inline-padding);
		padding-top: 46px;
	}

	.newsroom-tools {
		justify-content: stretch;
		margin-bottom: 34px;
	}

	.newsroom-search {
		width: 100%;
	}

	.newsroom-list {
		grid-template-columns: 1fr;
	}

	.newsroom-empty {
		min-height: 220px;
		font-size: 16px;
	}

	.newsroom-more {
		margin-top: 42px;
	}

	.newsroom-more-button {
		min-width: 112px;
		height: 42px;
		font-size: 14px;
	}

	.sub-text {
		margin-top: 34px;
		font-size: 16px;
		line-height: 1.8;
	}

	.home-scroll-cue {
		bottom: 22px;
		font-size: 11px;
	}

	.home-scroll-line {
		height: 38px;
	}

	.header-inner {
		--header-logo-click-width: 106px;
		--header-language-width: 64px;

		min-height: 64px;
		padding: 0 16px;
	}

	.mobile-menu-toggle {
		width: 40px;
		height: 40px;
	}

	.mobile-menu-toggle span {
		width: 22px;
	}

	.language-selector {
		font-size: 14px;
	}

	.language-selector::before {
		height: 70px;
	}

	.language-current {
		gap: 5px;
		height: 35px;
		min-height: 35px;
		padding: 0 8px;
	}

	.language-toggle:checked ~ .language-panel {
		max-height: 35px;
	}

	.language-option {
		height: 35px;
		padding: 0 8px;
	}

	.language-arrow {
		width: 8px;
		height: 8px;
		border-right-width: 2px;
		border-bottom-width: 2px;
	}

	.header-logo {
		width: 106px;
		height: 27px;
	}

	.header-logo-link {
		height: 27px;
	}

	.mobile-menu {
		top: 64px;
	}

	.mobile-menu.is-open {
		max-height: calc(100vh - 64px);
	}

	.mobile-nav-link,
	.mobile-nav-trigger {
		min-height: 54px;
		padding: 0 20px;
		font-size: 16px;
	}

	.mobile-submenu a {
		padding: 10px 20px 10px 34px;
		font-size: 14px;
	}

	.footer-logo-mark {
	width: 112px;
	height: 36px;
	}

	.footer-logo {
		width: 112px;
		height: 28px;
	}

	.footer-copyright {
		font-size: 12px;
	}
}

@media (max-width: 360px) {
	html:has(body.sub-page),
	html:has(body.home-page) {
		overflow-x: auto;
	}

	body.sub-page,
	body.home-page {
		min-width: 360px;
		overflow-x: visible;
	}
}

.admin-login-error {
	margin: 14px 0 0;
	color: var(--admin-error);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	white-space: pre-line;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.admin-page-body {
	min-height: 100svh;
	margin: 0;
	color: #15181d;
	background: #f3f5f7;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}

.admin-page-body input,
.admin-page-body textarea {
	-webkit-user-select: text;
	user-select: text;
}

.admin-page-body img,
.admin-page-body a {
	-webkit-user-drag: none;
}

.admin-topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
	min-height: 76px;
	padding: 0 clamp(22px, 5vw, 64px);
	background: #eceff3;
	border-bottom: 1px solid #d9dee5;
}

.admin-topbar img {
	display: block;
	width: 126px;
	height: auto;
}

.admin-topbar-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.admin-topbar-actions form {
	margin: 0;
}

.admin-topbar-title {
	color: #15181d;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}

.admin-topbar-actions a,
.admin-topbar-actions button,
.admin-primary-link,
.admin-form-actions a,
.admin-submit-button,
.newsroom-write-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	background: #15181d;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
}

.admin-topbar-actions a,
.admin-topbar-actions button {
	color: #15181d;
	background: #ffffff;
	border: 1px solid #d5dbe4;
}

.admin-logout-button {
	font: inherit;
}

.admin-dashboard {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
	padding: 48px 0 80px;
}

.admin-form-page {
	width: min(860px, calc(100% - 48px));
}

.admin-dashboard-heading,
.admin-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
}

.admin-reset-form {
	margin: 0;
}

.admin-reset-form button {
	min-height: 36px;
	padding: 0 14px;
	color: #4f5967;
	font-size: 13px;
	font-weight: 900;
	background: #ffffff;
	border: 1px solid #d9dee5;
	border-radius: 4px;
	cursor: pointer;
}

.admin-reset-form button:hover,
.admin-reset-form button:focus-visible {
	color: #15181d;
	border-color: #aeb7c3;
}

.admin-dashboard-heading p,
.admin-section-heading p {
	margin: 0 0 8px;
	color: #034ba9;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.admin-dashboard-heading h1,
.admin-section-heading h2 {
	margin: 0;
	color: #15181d;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.3;
}

.admin-section-heading h2 {
	font-size: 22px;
}

.admin-flash {
	margin: 24px 0 0;
	padding: 14px 16px;
	color: #085d3a;
	font-size: 14px;
	font-weight: 800;
	background: #e8f7ef;
	border: 1px solid #b6e2c8;
	border-radius: 4px;
}

.admin-flash-error {
	color: #b42318;
	background: #fff3f0;
	border-color: #ffd0c7;
}

.admin-section {
	margin-top: 28px;
	padding: 30px 32px 34px;
	background: #ffffff;
	border: 1px solid #e2e6ec;
	border-radius: 8px;
	box-shadow: 0 12px 34px rgba(21, 24, 29, 0.04);
}

.admin-home-section {
	min-width: 0;
}

.admin-business-settings-section {
	display: grid;
	gap: 0;
}

.admin-setting-group {
	min-width: 0;
}

.admin-commerce-setting-group {
	margin-top: 38px;
	padding-top: 38px;
	border-top: 1px solid #e2e6ec;
}

.admin-commerce-setting-group .admin-section-heading {
	padding: 0;
	border: 0;
}

.admin-settings-form,
.admin-news-form {
	display: grid;
	gap: 24px;
	margin-top: 28px;
}

.admin-settings-form > label:not(.admin-image-upload) {
	display: grid;
	gap: 10px;
	color: #15181d;
	font-size: 14px;
	font-weight: 900;
}

.admin-settings-form > label:not(.admin-image-upload) input,
.admin-settings-form > label:not(.admin-image-upload) textarea {
	width: 100%;
	min-height: 50px;
	padding: 0 15px;
	color: #15181d;
	background: #ffffff;
	border: 1px solid #d5dbe4;
	border-radius: 4px;
	outline: none;
	transition:
		border-color 160ms ease,
		background-color 160ms ease,
		box-shadow 160ms ease;
}

.admin-settings-form > label:not(.admin-image-upload) textarea {
	min-height: 92px;
	padding-top: 13px;
	padding-bottom: 13px;
	line-height: 1.55;
	resize: vertical;
}

.admin-settings-form > label:not(.admin-image-upload) input:focus,
.admin-settings-form > label:not(.admin-image-upload) textarea:focus {
	border-color: #15181d;
	box-shadow: 0 0 0 3px rgba(21, 24, 29, 0.08);
}

.admin-settings-form > label:not(.admin-image-upload) input:disabled {
	color: #8a94a3;
	background: #f1f3f6;
	border-color: #e2e6ec;
	cursor: not-allowed;
}

.admin-settings-form > label:not(.admin-image-upload) em {
	color: #6b7280;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
}

.admin-subsection {
	margin-top: 38px;
	padding-top: 38px;
	border-top: 1px solid #e2e6ec;
}

.admin-subsection .admin-section-heading {
	padding: 0;
	border: 0;
}

.admin-home-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.admin-home-item {
	display: grid;
	gap: 10px;
	min-height: 148px;
	padding: 20px;
	color: inherit;
	text-decoration: none;
	background: #fbfcfd;
	border: 1px solid #dfe5ec;
	border-radius: 6px;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		transform 160ms ease;
}

.admin-home-item:hover,
.admin-home-item:focus-visible {
	background: #ffffff;
	border-color: #aeb7c3;
	transform: translateY(-2px);
}

.admin-home-item span {
	color: #034ba9;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.admin-home-item strong {
	color: #15181d;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.25;
}

.admin-home-item strong span {
	font: inherit;
	line-height: inherit;
	text-transform: none;
}

.admin-home-item strong .admin-home-number {
	color: #034ba9;
}

.admin-home-item em {
	color: #626b76;
	font-size: 13px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.55;
	word-break: keep-all;
}

.admin-radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.admin-radio-group label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 14px;
	background: #f7f8fa;
	border: 1px solid #d9dee5;
	border-radius: 4px;
}

.admin-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	align-items: start;
}

.admin-form-grid-single {
	grid-template-columns: minmax(0, 1fr);
	max-width: 640px;
}

.admin-profile-overview {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
	gap: 18px;
	margin-top: 26px;
}

.admin-profile-identity {
	min-width: 0;
	padding: 26px;
	color: #ffffff;
	background:
		linear-gradient(135deg, rgba(3, 75, 169, 0.92), rgba(21, 24, 29, 0.96)),
		#15181d;
	border-radius: 8px;
	box-shadow: 0 16px 34px rgba(21, 24, 29, 0.12);
}

.admin-profile-identity p,
.admin-authored-news-heading p {
	margin: 0 0 10px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.admin-profile-identity h3 {
	margin: 0;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 900;
	line-height: 1.08;
	overflow-wrap: anywhere;
}

.admin-profile-identity dl {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 28px 0 0;
}

.admin-profile-identity dl div {
	min-width: 0;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.admin-profile-identity dt {
	margin: 0 0 7px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 12px;
	font-weight: 900;
}

.admin-profile-identity dd {
	margin: 0;
	color: #ffffff;
	font-size: 18px;
	font-weight: 900;
	overflow-wrap: anywhere;
}

.admin-authored-news-grid {
	display: grid;
	gap: 14px;
	min-width: 0;
}

.admin-authored-news-panel {
	min-width: 0;
	padding: 22px;
	background: #ffffff;
	border: 1px solid #e2e6ec;
	border-radius: 8px;
	box-shadow: 0 10px 26px rgba(21, 24, 29, 0.04);
}

.admin-authored-news-heading p {
	color: #034ba9;
}

.admin-authored-news-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.admin-authored-news-heading h3 {
	margin: 0;
	color: #15181d;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.35;
}

.admin-authored-news-heading > strong {
	display: inline-flex;
	align-items: baseline;
	gap: 3px;
	flex: 0 0 auto;
	color: #15181d;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
}

.admin-authored-news-heading > strong span {
	color: #034ba9;
	font-size: 30px;
	line-height: 0.9;
}

.admin-authored-news-list {
	display: grid;
	gap: 0;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.admin-authored-news-list li + li {
	border-top: 1px solid #edf0f4;
}

.admin-authored-news-list a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	padding: 13px 0;
	color: #15181d;
	text-decoration: none;
}

.admin-authored-news-list span {
	min-width: 0;
	font-size: 14px;
	font-weight: 900;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.admin-authored-news-list time {
	color: #7b8490;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.admin-authored-news-empty {
	margin: 18px 0 0;
	padding: 18px;
	color: #626b76;
	font-size: 14px;
	font-weight: 800;
	text-align: center;
	background: #f7f8fa;
	border-radius: 6px;
}

.admin-form-grid label,
.admin-news-form label {
	display: grid;
	grid-template-rows: auto auto minmax(18px, auto);
	gap: 10px;
	align-content: start;
	color: #15181d;
	font-size: 14px;
	font-weight: 900;
}

.admin-field-help {
	color: #6b7280;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
}

.admin-form-grid input,
.admin-form-grid textarea,
.admin-news-form input,
.admin-news-form textarea {
	width: 100%;
	min-height: 50px;
	padding: 0 15px;
	color: #15181d;
	background: #ffffff;
	border: 1px solid #d5dbe4;
	border-radius: 4px;
	outline: none;
	transition:
		border-color 160ms ease,
		background-color 160ms ease,
		box-shadow 160ms ease;
}

.admin-form-grid input:focus,
.admin-form-grid textarea:focus,
.admin-news-form input:focus,
.admin-news-form textarea:focus {
	border-color: #15181d;
	box-shadow: 0 0 0 3px rgba(21, 24, 29, 0.08);
}

.admin-form-grid textarea {
	min-height: 92px;
	padding-top: 13px;
	padding-bottom: 13px;
	line-height: 1.55;
	resize: vertical;
}

.admin-news-form textarea {
	min-height: 260px;
	padding: 13px;
	resize: vertical;
}

.admin-submit-button {
	justify-self: end;
	min-width: 112px;
}

.admin-form-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

.admin-form-actions-between {
	justify-content: flex-end;
}

.admin-form-actions a {
	color: #15181d;
	background: #ffffff;
	border: 1px solid #d9dee5;
}

.admin-table-wrap {
	margin-top: 22px;
	overflow-x: visible;
}

.admin-news-lists,
.admin-news-language-grid {
	display: grid;
	gap: 28px;
	margin-top: 24px;
}

.admin-news-lists > section,
.admin-news-language-panel {
	min-width: 0;
	padding-top: 22px;
	border-top: 1px solid #e6e9ee;
}

.admin-news-lists > section:first-child,
.admin-news-language-panel:first-child {
	padding-top: 0;
	border-top: 0;
}

.admin-news-list-heading,
.admin-news-language-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}

.admin-news-list-heading p,
.admin-news-language-heading p {
	margin: 0 0 6px;
	color: #034ba9;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.admin-news-list-heading h3,
.admin-news-language-heading h3 {
	margin: 0;
	color: #15181d;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.35;
}

.admin-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.admin-table th,
.admin-table td {
	padding: 14px 12px;
	border-bottom: 1px solid #e6e9ee;
	font-size: 14px;
	line-height: 1.5;
	text-align: left;
	vertical-align: top;
	overflow-wrap: break-word;
	word-break: keep-all;
}

.admin-table th {
	color: #626b76;
	font-weight: 900;
	background: #f7f8fa;
}

.admin-log-table {
	min-width: 0;
}

.admin-log-badge {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	min-height: 26px;
	padding: 0 9px;
	color: #7a271a;
	font-size: 12px;
	font-weight: 900;
	background: #ffede8;
	border-radius: 999px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.admin-log-badge.is-success {
	color: #085d3a;
	background: #e8f7ef;
}

.admin-log-badge.is-logout {
	color: #9f1239;
	background: #ffe4e8;
}

.admin-floating-panel {
	position: fixed;
	top: 116px;
	right: 18px;
	z-index: 120;
	display: grid;
	gap: 8px;
	width: 150px;
	padding: 14px;
	background: #20242b;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 6px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.admin-floating-panel strong {
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.3;
}

.admin-floating-panel a,
.admin-floating-panel button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	width: 100%;
	padding: 0 10px;
	color: #15181d;
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
	background: #ffffff;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
}

.admin-floating-panel form {
	margin: 0;
}

.site-lock-indicator,
.admin-lock-status {
	position: fixed;
	right: 22px;
	bottom: 18px;
	z-index: 140;
	color: #d92d20;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	pointer-events: none;
}

.newsroom-tools {
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
}

.newsroom-search {
	order: 2;
}

.newsroom-write-button {
	order: 1;
	flex: 0 0 auto;
	min-width: 88px;
	margin-right: auto;
	color: #ffffff;
	background: #15181d;
}

.news-card-media {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	overflow: hidden;
	color: rgba(21, 24, 29, 0.25);
	font-size: 22px;
	font-weight: 900;
	aspect-ratio: 16 / 9;
	background: #eef1f5;
}

.news-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.news-card-media-empty {
	background: #eef1f5;
}

.news-card-summary {
	display: -webkit-box;
	margin: 14px 0 0;
	overflow: hidden;
	color: #626b76;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
}

.careers-ready-button {
	text-decoration: none;
}

.careers-admin-settings-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 106px;
	height: 52px;
	padding: 0 18px;
	color: #15181d;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	background: #ffffff;
	border: 1px solid rgba(21, 24, 29, 0.22);
	transition:
		color 160ms ease,
		border-color 160ms ease,
		transform 160ms ease;
}

.careers-admin-settings-button:hover,
.careers-admin-settings-button:focus-visible {
	color: #034ba9;
	border-color: #034ba9;
	transform: translateY(-2px);
}

@media (max-width: 760px) {
	.admin-dashboard,
	.admin-form-page {
		width: calc(100% - 32px);
		padding-top: 34px;
	}

	.admin-topbar {
		padding-inline: 18px;
	}

	.admin-topbar:has(.admin-topbar-title) {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"logo actions"
			"title title";
		gap: 10px 14px;
		min-height: 0;
		padding-block: 12px;
	}

	.admin-topbar:has(.admin-topbar-title) > a:first-child {
		grid-area: logo;
		min-width: 0;
	}

	.admin-topbar:has(.admin-topbar-title) .admin-topbar-title {
		grid-area: title;
		font-size: 17px;
		line-height: 1.25;
		text-align: center;
		white-space: nowrap;
	}

	.admin-topbar:has(.admin-topbar-title) .admin-topbar-actions {
		grid-area: actions;
	}

	.admin-topbar:has(.admin-topbar-title) img {
		width: min(126px, 42vw);
	}

	.admin-topbar-actions a {
		display: none;
	}

	.admin-dashboard-heading,
	.admin-section-heading {
		display: grid;
		align-items: start;
	}

	.admin-section {
		padding: 22px 18px;
	}

	.admin-business-settings-section {
		gap: 0;
	}

	.admin-commerce-setting-group {
		margin-top: 28px;
		padding-top: 28px;
	}

	.admin-form-grid {
		grid-template-columns: 1fr;
	}

	.admin-profile-overview,
	.admin-authored-news-grid {
		grid-template-columns: 1fr;
	}

	.admin-profile-identity dl {
		grid-template-columns: 1fr;
	}

	.admin-floating-panel {
		top: auto;
		right: 12px;
		bottom: 12px;
		width: 142px;
	}

	.newsroom-tools {
		align-items: stretch;
	}
}

.admin-shell {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 28px;
	width: calc(100% - 40px);
	max-width: 1560px;
	margin: 0 auto;
	padding: 42px 0 78px;
}

.admin-sidebar {
	position: sticky;
	top: 100px;
	align-self: start;
	display: grid;
	gap: 18px;
	padding: 20px;
	background: #ffffff;
	border: 1px solid #d9dee5;
	border-radius: 6px;
}

.admin-sidebar strong {
	color: #15181d;
	font-size: 15px;
	font-weight: 900;
}

.admin-sidebar nav {
	display: grid;
	gap: 6px;
}

.admin-sidebar a {
	display: flex;
	align-items: center;
	min-height: 42px;
	padding: 0 12px;
	color: #4f5967;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	border-radius: 4px;
}

.admin-sidebar a:hover,
.admin-sidebar a.is-active {
	color: #ffffff;
	background: #15181d;
}

.admin-workspace {
	min-width: 0;
}

.admin-workspace-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 48px;
}

.admin-write-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.admin-workspace-heading p,
.admin-editor-heading p {
	margin: 0 0 8px;
	color: #034ba9;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.admin-workspace-heading h1,
.admin-editor-heading h1 {
	margin: 0;
	color: #15181d;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.25;
}

.admin-recruit-preview {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	padding: 0 0 22px;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #e2e6ec;
	border-radius: 0;
}

.admin-mode-buttons {
	display: inline-flex;
	gap: 0;
	padding: 3px;
	background: #eef1f5;
	border: 1px solid #d9dee5;
	border-radius: 6px;
}

.admin-mode-buttons label {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	cursor: pointer;
}

.admin-mode-buttons input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.admin-mode-buttons span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	min-width: 90px;
	padding: 0 14px;
	color: #4f5967;
	font-size: 13px;
	font-weight: 900;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 4px;
	transition:
		color 160ms ease,
		background-color 160ms ease,
		border-color 160ms ease,
		box-shadow 160ms ease;
}

.admin-mode-buttons input:checked + span {
	color: #15181d;
	background: #ffffff;
	border-color: #d9dee5;
	box-shadow: 0 4px 14px rgba(21, 24, 29, 0.08);
}

.admin-lock-setting-block {
	display: grid;
	gap: 12px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e2e6ec;
}

.admin-lock-setting-block + .admin-lock-setting-block {
	padding-top: 4px;
}

.admin-lock-setting-block.is-hidden {
	display: none;
}

.admin-lock-setting-heading {
	display: grid;
	gap: 5px;
}

.admin-lock-setting-heading p {
	margin: 0;
	color: #034ba9;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.admin-lock-setting-heading h3 {
	margin: 0;
	color: #15181d;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.35;
}

.admin-lock-privacy-options span {
	min-width: 104px;
}

.admin-menu-checkboxes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: 100%;
	gap: 10px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.admin-menu-checkboxes label {
	min-height: 48px;
}

.admin-menu-checkboxes span {
	justify-content: flex-start;
	width: 100%;
	min-height: 48px;
	padding: 0 16px;
	background: #f6f8fb;
	border-color: #d9dee5;
}

.admin-menu-checkboxes input:checked + span {
	color: #ffffff;
	background: #15181d;
	border-color: #15181d;
	box-shadow: none;
}

.admin-contact-items {
	display: grid;
	gap: 14px;
}

.admin-contact-item {
	padding: 22px;
	background: #ffffff;
	border: 1px solid #e2e6ec;
	border-radius: 8px;
}

.admin-contact-item-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.admin-contact-item-head div {
	display: grid;
	gap: 7px;
}

.admin-contact-item-head > div > span {
	color: #034ba9;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.admin-contact-item-head strong {
	color: #15181d;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.35;
}

.admin-contact-toggle {
	position: relative;
	flex: 0 0 auto;
	cursor: pointer;
}

.admin-contact-toggle input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.admin-toggle-track {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding: 3px;
	background: #eef1f5;
	border: 1px solid #d9dee5;
	border-radius: 6px;
}

.admin-toggle-choice {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 92px;
	min-height: 38px;
	padding: 0 14px;
	color: #4f5967;
	font-size: 13px;
	font-weight: 900;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 4px;
	transition:
		color 160ms ease,
		background-color 160ms ease,
		border-color 160ms ease,
		box-shadow 160ms ease;
}

.admin-contact-toggle input:not(:checked) + .admin-toggle-track .admin-toggle-off,
.admin-contact-toggle input:checked + .admin-toggle-track .admin-toggle-on {
	color: #15181d;
	background: #ffffff;
	border-color: #d9dee5;
	box-shadow: 0 4px 14px rgba(21, 24, 29, 0.08);
}

.admin-contact-language-heading {
	margin: 18px 0 10px;
	color: #034ba9;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
}

.admin-contact-item-head + .admin-contact-language-heading {
	margin-top: 0;
}

.admin-form-grid input:disabled {
	color: #8a94a3;
	background: #f1f3f6;
	border-color: #e2e6ec;
	cursor: not-allowed;
}

.admin-table-link {
	color: #034ba9;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.admin-inline-form {
	margin: 0;
}

.admin-danger-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 10px;
	color: #b42318;
	font-size: 12px;
	font-weight: 900;
	background: #fff3f0;
	border: 1px solid #ffd0c7;
	border-radius: 4px;
	cursor: pointer;
}

.admin-editor-shell {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
	padding: 42px 0 78px;
}

.admin-editor-heading {
	margin-bottom: 22px;
}

.admin-news-editor {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 22px;
	align-items: start;
}

.admin-editor-panel,
.admin-editor-side {
	display: grid;
	gap: 18px;
	padding: 26px;
	background: #ffffff;
	border: 1px solid #d9dee5;
	border-radius: 6px;
}

.admin-news-editor > .admin-form-actions {
	justify-content: flex-end;
	margin: 0;
}

.admin-editor-panel label,
.admin-image-upload {
	display: grid;
	gap: 8px;
	color: #15181d;
	font-size: 14px;
	font-weight: 900;
}

.admin-editor-section-title {
	margin: 0;
	padding-bottom: 14px;
	color: #15181d;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.35;
	border-bottom: 1px solid #e2e6ec;
}

.admin-editor-panel input,
.admin-editor-panel textarea {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	color: #15181d;
	background: #fbfcfd;
	border: 1px solid #d9dee5;
	border-radius: 4px;
	outline: none;
}

.admin-editor-panel textarea {
	min-height: 360px;
	padding: 14px;
	line-height: 1.7;
	resize: vertical;
}

.admin-image-upload {
	min-height: 136px;
	align-content: center;
	justify-items: center;
	padding: 18px 20px;
	text-align: center;
	background: #f7f8fa;
	border: 1px dashed #b8c0cc;
	border-radius: 6px;
}

.admin-image-upload input {
	display: block;
	width: min(560px, 100%);
	min-height: 52px;
	padding: 8px 12px;
	color: #15181d;
	font-size: 14px;
	font-weight: 800;
	line-height: 34px;
	background: #ffffff;
	border: 1px solid #d9dee5;
	border-radius: 4px;
	outline: none;
}

.admin-image-upload input::file-selector-button {
	min-height: 34px;
	margin: 0 14px 0 0;
	padding: 0 14px;
	color: #15181d;
	font: inherit;
	font-weight: 800;
	background: #f7f8fa;
	border: 1px solid #cfd6df;
	border-radius: 4px;
	cursor: pointer;
}

.admin-image-upload em {
	max-width: 780px;
	color: #626b76;
	font-size: 13px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.6;
	word-break: keep-all;
}

.admin-popup-upload {
	margin-top: 22px;
}

.admin-current-image,
.admin-popup-current-image {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.admin-current-image span,
.admin-popup-current-image span {
	color: #15181d;
	font-size: 14px;
	font-weight: 900;
}

.admin-current-image img,
.admin-popup-current-image img {
	display: block;
	width: auto;
	max-width: min(420px, 100%);
	height: auto;
	max-height: 360px;
	object-fit: contain;
	background: #eef1f5;
	border: 1px solid #d9dee5;
	border-radius: 6px;
}

.news-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.news-card-link:hover .news-card-title,
.news-card-link:focus-visible .news-card-title {
	color: #034ba9;
}

.news-card-media {
	background: #eef1f5;
}

.news-card-logo {
	width: min(128px, 46%);
	height: auto;
	object-fit: contain;
	opacity: 0.52;
}

.news-card .news-card-title {
	display: block;
	font-size: 20px;
	line-height: 1.45;
	color: #15181d;
	text-align: left;
	white-space: nowrap;
	text-overflow: ellipsis;
	-webkit-line-clamp: unset;
	line-clamp: unset;
}

.news-card .news-card-summary {
	font-size: 14px;
}

.news-card .news-card-date {
	font-size: 15px;
}

.news-card-media .news-card-logo {
	width: min(128px, 46%);
	height: auto;
	object-fit: contain;
	opacity: 0.52;
}

.news-detail {
	width: min(920px, calc(100% - 48px));
	margin: 0 auto;
	padding: 124px 0 96px;
}

.news-detail-back {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	color: #15181d;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	border: 1px solid rgba(21, 24, 29, 0.2);
	border-radius: 4px;
}

.news-detail-toolbar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
}

.news-detail-header {
	margin-top: 34px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(21, 24, 29, 0.14);
}

.news-detail-header p {
	margin: 0 0 12px;
	color: #034ba9;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
}

.news-detail-header h1 {
	margin: 0;
	color: #15181d;
	font-size: clamp(28px, 3.2vw, 38px);
	font-weight: 900;
	line-height: 1.3;
	word-break: keep-all;
}

.news-detail-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 14px;
	margin-top: 18px;
	color: #626b76;
	font-size: 15px;
	font-weight: 600;
}

.news-detail-meta time {
	display: inline-block;
	color: inherit;
	font: inherit;
}

.news-detail-author {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	color: #3f4854;
}

.news-detail-author::before {
	content: "";
	width: 1px;
	height: 12px;
	background: rgba(21, 24, 29, 0.22);
}

.news-detail-author-label {
	color: #7b8490;
	font-size: 13px;
	font-weight: 800;
}

.news-detail-admin-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin: 0;
}

.news-detail-admin-actions form {
	margin: 0;
}

.news-detail-admin-actions a,
.news-detail-admin-actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 14px;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	border-radius: 4px;
	cursor: pointer;
}

.news-detail-admin-actions a {
	color: #15181d;
	background: #ffffff;
	border: 1px solid rgba(21, 24, 29, 0.22);
}

.news-detail-admin-actions button {
	color: #b42318;
	background: #fff3f0;
	border: 1px solid #ffd0c7;
}

.news-detail-media {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 16 / 9;
	margin: 32px 0 0;
	overflow: hidden;
	background: #eef1f5;
}

.news-detail-media img:not(.news-detail-logo) {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.news-detail-logo {
	width: min(170px, 38%);
	height: auto;
	opacity: 0.55;
}

.news-detail-summary {
	margin: 28px 0 0;
	padding: 0;
	color: #2c333d;
	font-size: 18px;
	font-weight: 650;
	line-height: 1.8;
	background: transparent;
	border: 0;
}

.news-detail-content {
	margin-top: 34px;
	color: #2c333d;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.9;
	white-space: pre-wrap;
	word-break: keep-all;
}

@media (max-width: 999px) {
	.admin-shell {
		grid-template-columns: 1fr;
	}

	.admin-sidebar {
		position: static;
		justify-items: center;
		text-align: center;
	}

	.admin-sidebar nav {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		justify-content: center;
		width: min(100%, 820px);
	}

	.admin-sidebar a {
		justify-content: center;
	}

	.admin-recruit-preview {
		align-items: stretch;
		flex-direction: column;
	}

	.admin-menu-checkboxes {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.admin-home-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.main-popup {
		align-items: flex-start;
		justify-content: center;
		padding: 12px;
	}

	.main-popup-panel {
		width: fit-content;
		max-width: calc(100vw - 24px);
		max-height: calc(100vh - 24px);
	}

	.main-popup-panel img {
		max-width: calc(100vw - 24px);
		max-height: calc(100vh - 24px);
	}

	.admin-shell,
	.admin-editor-shell {
		width: calc(100% - 32px);
		padding-top: 28px;
	}

	.admin-sidebar nav {
		grid-template-columns: 1fr;
	}

	.admin-home-grid {
		grid-template-columns: 1fr;
	}

	.admin-menu-checkboxes {
		grid-template-columns: 1fr;
	}

	.admin-workspace-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.admin-editor-panel,
	.admin-editor-side {
		padding: 20px 16px;
	}

	.news-detail {
		width: calc(100% - 36px);
		padding-top: 96px;
	}
}

@media (max-width: 900px) {
	.admin-table,
	.admin-table thead,
	.admin-table tbody,
	.admin-table tr,
	.admin-table th,
	.admin-table td {
		display: block;
	}

	.admin-table {
		border-collapse: separate;
		border-spacing: 0;
	}

	.admin-table thead {
		display: none;
	}

	.admin-table tr {
		padding: 14px 0;
		border-bottom: 1px solid #e6e9ee;
	}

	.admin-table td {
		display: grid;
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 12px;
		padding: 8px 0;
		border-bottom: 0;
		font-size: 14px;
		word-break: keep-all;
		overflow-wrap: break-word;
	}

	.admin-table td::before {
		color: #626b76;
		font-size: 12px;
		font-weight: 900;
		content: attr(data-label);
	}

	.admin-table td[colspan] {
		display: block;
	}

	.admin-table td[colspan]::before {
		display: none;
	}

	.admin-log-badge {
		max-width: 100%;
		white-space: nowrap;
		text-align: center;
	}
}

@media (max-width: 1100px) {
	.admin-log-table,
	.admin-log-table thead,
	.admin-log-table tbody,
	.admin-log-table tr,
	.admin-log-table th,
	.admin-log-table td {
		display: block;
	}

	.admin-log-table {
		border-collapse: separate;
		border-spacing: 0;
	}

	.admin-log-table thead {
		display: none;
	}

	.admin-log-table tr {
		padding: 14px 0;
		border-bottom: 1px solid #e6e9ee;
	}

	.admin-log-table td {
		display: grid;
		grid-template-columns: 86px minmax(0, 1fr);
		align-items: center;
		gap: 12px;
		padding: 8px 0;
		border-bottom: 0;
		font-size: 14px;
		word-break: keep-all;
		overflow-wrap: break-word;
	}

	.admin-log-table td::before {
		color: #626b76;
		font-size: 12px;
		font-weight: 900;
		content: attr(data-label);
	}

	.admin-log-table .admin-log-badge {
		justify-self: start;
		max-width: min(100%, 220px);
	}
}

/* Final digital commerce overrides: align the page frame with the H/W development layout. */
.commerce-content {
	padding-top: 72px;
	padding-bottom: 104px;
}

.commerce-content h2 {
	max-width: 980px;
	font-size: 46px;
}

.commerce-lead {
	max-width: 900px;
	font-size: 18px;
}

.commerce-feature {
	grid-template-columns: minmax(0, 980px);
	justify-content: start;
	width: 100%;
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
	padding-top: 42px;
	border-top: 0;
	gap: 0;
}

.commerce-feature-copy {
	min-width: 0;
	max-width: 780px;
}

.commerce-operation-section {
	margin-top: 58px;
}

.commerce-operation-heading span {
	display: block;
	margin-bottom: 14px;
	color: #2048ae;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.commerce-operation-heading h3 {
	margin: 0;
	color: #111722;
	font-size: clamp(30px, 2.55vw, 42px);
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: 0;
	word-break: keep-all;
}

.commerce-operation-heading p {
	margin: 16px 0 0;
	color: #4f5967;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.68;
	word-break: keep-all;
}

.commerce-operation-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 38px;
}

.commerce-operation-card {
	display: grid;
	grid-template-columns: minmax(160px, 0.74fr) minmax(320px, 1fr);
	align-items: center;
	min-height: 280px;
	padding: 32px 34px;
	border: 1px solid rgba(17, 23, 34, 0.14);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 50px rgba(17, 23, 34, 0.04);
}

.commerce-operation-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding-right: 28px;
	border-right: 1px solid rgba(17, 23, 34, 0.14);
}

.commerce-operation-visual img {
	display: block;
	width: min(100%, 170px);
	height: auto;
	object-fit: contain;
}

.commerce-operation-copy {
	padding-left: 34px;
}

.commerce-operation-copy > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(135deg, #6671dd, #2d47a7);
	border-radius: 7px;
	box-shadow: 0 10px 20px rgba(49, 84, 163, 0.18);
}

.commerce-operation-card:nth-child(2) .commerce-operation-copy > span {
	background: linear-gradient(135deg, #6671dd, #2d47a7);
}

.commerce-operation-copy h4 {
	margin: 22px 0 0;
	color: #111722;
	font-size: clamp(22px, 1.35vw, 28px);
	font-weight: 900;
	line-height: 1.28;
	letter-spacing: 0;
	word-break: keep-all;
}

.commerce-operation-copy i {
	display: block;
	width: 48px;
	height: 3px;
	margin: 16px 0 0;
	background: #3154d4;
	font-style: normal;
}

.commerce-operation-card:nth-child(2) .commerce-operation-copy i {
	background: #e56e2d;
}

.commerce-operation-copy p {
	margin: 20px 0 0;
	color: #4f5967;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.76;
	word-break: keep-all;
}

.commerce-flow-section {
	margin-top: 42px;
}

.commerce-flow-section .commerce-section-heading {
	max-width: 1180px;
}

.commerce-flow-section .commerce-section-heading span {
	color: #2048ae;
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
}

.commerce-flow-section .commerce-section-heading h3 {
	margin-top: 18px;
	font-size: clamp(28px, 2.45vw, 42px);
	line-height: 1.18;
}

.commerce-flow-section .commerce-flow-list {
	margin-top: 34px;
	border-top: 2px solid #111722;
	border-bottom: 0;
}

.commerce-flow-section .commerce-flow-list div {
	min-height: 300px;
	padding: 32px 28px 24px;
}

.commerce-flow-section .commerce-flow-list strong {
	font-size: 23px;
}

.commerce-flow-section .commerce-flow-list p {
	margin-top: 18px;
	font-size: 14px;
	line-height: 1.7;
}

.commerce-flow-section .commerce-flow-list img {
	width: min(100%, 160px);
	height: 110px;
	margin: auto auto 0;
}

@media (max-width: 1180px) {
	.commerce-content {
		padding-top: 56px;
		padding-bottom: 88px;
	}

	.commerce-operation-cards {
		grid-template-columns: 1fr;
	}

	.commerce-operation-card {
		grid-template-columns: minmax(150px, 0.58fr) minmax(0, 1fr);
	}

	.commerce-flow-section .commerce-flow-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.commerce-flow-section .commerce-flow-list div:nth-child(2) {
		border-right: 0;
	}

	.commerce-flow-section .commerce-flow-list div:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(17, 23, 34, 0.16);
	}
}

@media (max-width: 700px) {
	.commerce-content {
		padding-top: 40px;
		padding-bottom: 64px;
	}

	.commerce-content h2 {
		font-size: 34px;
	}

	.commerce-operation-section {
		margin-top: 58px;
	}

	.commerce-operation-heading span {
		font-size: 15px;
	}

	.commerce-operation-heading h3 {
		font-size: 32px;
	}

	.commerce-operation-heading p {
		font-size: 15px;
	}

	.commerce-operation-cards {
		gap: 18px;
		margin-top: 34px;
	}

	.commerce-operation-card {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 34px 26px 38px;
		text-align: center;
	}

	.commerce-operation-visual {
		padding: 0 0 28px;
		border-right: 0;
		border-bottom: 1px solid rgba(17, 23, 34, 0.14);
	}

	.commerce-operation-visual img {
		width: min(100%, 160px);
	}

	.commerce-operation-copy {
		padding: 30px 0 0;
	}

	.commerce-operation-copy h4 {
		margin-top: 24px;
		font-size: 25px;
	}

	.commerce-operation-copy i {
		margin-right: auto;
		margin-left: auto;
	}

	.commerce-operation-copy p {
		font-size: 15px;
	}

	.commerce-flow-section .commerce-section-heading span {
		font-size: 15px;
	}

	.commerce-flow-section .commerce-section-heading h3 {
		font-size: 26px;
	}

	.commerce-flow-section .commerce-flow-list {
		grid-template-columns: 1fr;
		margin-top: 30px;
	}

	.commerce-flow-section .commerce-flow-list div,
	.commerce-flow-section .commerce-flow-list div:nth-child(2) {
		min-height: auto;
		padding: 28px 18px 30px;
		border-right: 0;
		border-bottom: 1px solid rgba(17, 23, 34, 0.16);
	}

	.commerce-flow-section .commerce-flow-list div:last-child {
		border-bottom: 0;
	}

	.commerce-flow-section .commerce-flow-list strong {
		font-size: 24px;
	}

	.commerce-flow-section .commerce-flow-list p {
		font-size: 15px;
	}

	.commerce-flow-section .commerce-flow-list img {
		width: min(100%, 150px);
		height: 102px;
		margin-top: 24px;
	}
}

/* Business detail pages: match the hiring-guide page frame and heading scale. */
.product-content,
.commerce-content {
	width: min(1280px, calc(100% - 160px));
	padding-top: var(--site-header-height);
	padding-bottom: 126px;
}

.product-content .section-eyebrow,
.commerce-content .section-eyebrow {
	text-align: left;
}

.product-content h2,
.commerce-content h2 {
	max-width: 980px;
	margin: 0;
	color: #111722;
	font-size: 52px;
	font-weight: 900;
	line-height: 1.18;
	text-align: left;
	letter-spacing: 0;
	word-break: keep-all;
}

.product-lead,
.commerce-lead {
	max-width: 860px;
	margin: 20px 0 0;
	color: #4f5967;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.82;
	text-align: left;
	word-break: keep-all;
}

.product-main {
	margin-top: 42px;
	padding-top: 42px;
}

.commerce-feature {
	margin-top: 42px;
	padding-top: 0;
}

.commerce-operation-card {
	grid-template-columns: minmax(220px, 0.82fr) minmax(320px, 1fr);
	min-height: 330px;
}

.commerce-operation-visual img {
	width: min(100%, 230px);
}

.commerce-flow-section .commerce-flow-list div {
	min-height: 350px;
}

.commerce-flow-section .commerce-flow-list img {
	width: min(100%, 220px);
	height: 150px;
}

.commerce-operation-heading,
.commerce-flow-section .commerce-section-heading {
	max-width: none;
	padding-bottom: 0;
	border-bottom: 0;
	text-align: left;
}

.commerce-operation-heading::after,
.commerce-flow-section .commerce-section-heading::after {
	display: none;
}

.commerce-operation-heading span,
.commerce-flow-section .commerce-section-heading span {
	display: block;
	margin-bottom: 10px;
	color: #2048ae;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.commerce-operation-heading h3,
.commerce-flow-section .commerce-section-heading h3 {
	margin: 0;
	color: #15181d;
	font-size: 26px;
	font-weight: 900;
	line-height: 1.34;
	letter-spacing: 0;
	word-break: keep-all;
}

.commerce-operation-heading p {
	max-width: 760px;
	margin: 12px 0 0;
	color: #4f5967;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.68;
	word-break: keep-all;
}

.commerce-operation-cards,
.commerce-flow-section .commerce-flow-list {
	margin-top: 24px;
}

.commerce-flow-section .commerce-flow-list {
	border-top: 0;
}

.commerce-operation-section,
.commerce-flow-section,
.commerce-cta {
	padding: clamp(28px, 3.4vw, 46px);
	border: 1px solid rgba(17, 23, 34, 0.1);
	border-radius: 8px;
	background: #f7f9fc;
	box-shadow: 0 18px 48px rgba(17, 23, 34, 0.04);
}

.commerce-operation-card,
.commerce-flow-section .commerce-flow-list div {
	background: #ffffff;
	border: 1px solid rgba(17, 23, 34, 0.1);
	border-radius: 8px;
	box-shadow: none;
}

.commerce-flow-section .commerce-flow-list {
	gap: 14px;
	background: transparent;
	border-bottom: 0;
}

.commerce-flow-section .commerce-flow-list div {
	border-right: 1px solid rgba(17, 23, 34, 0.1);
}

.commerce-flow-section .commerce-flow-list div:last-child {
	border-right: 1px solid rgba(17, 23, 34, 0.1);
}

.commerce-cta {
	margin-top: 42px;
	padding: 42px 0 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.commerce-content .section-eyebrow {
	font-size: 15px;
}

.commerce-content h2 {
	font-size: 52px;
}

.commerce-lead {
	font-size: 17px;
}

.commerce-operation-copy > span {
	font-size: 18px;
}

.commerce-operation-copy h4 {
	font-size: 20px;
}

.commerce-operation-copy p,
.commerce-flow-section .commerce-flow-list p {
	font-size: 16px;
}

.commerce-flow-section .commerce-flow-list strong {
	font-size: 20px;
}

.development-operation-cards {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.development-operation-card {
	grid-template-columns: 1fr;
	align-content: start;
	min-height: 390px;
	padding: 30px 28px 34px;
}

.development-operation-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 150px;
	margin-bottom: 28px;
	overflow: hidden;
	border: 1px solid rgba(17, 23, 34, 0.1);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(47, 79, 163, 0.08), rgba(255, 255, 255, 0.92)),
		#f7f9fc;
}

.development-operation-visual span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	color: #ffffff;
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(135deg, #6671dd, #2d47a7);
	border-radius: 8px;
	box-shadow: 0 16px 28px rgba(49, 84, 163, 0.18);
}

.development-operation-card .commerce-operation-copy {
	padding-left: 0;
}

.development-flow-list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.development-flow-list div {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 240px;
}

.development-cta {
	padding-top: 34px;
}

.dev-parts-section {
	margin-top: 76px;
	padding: clamp(28px, 3.4vw, 46px);
	border: 1px solid rgba(17, 23, 34, 0.1);
	border-radius: 8px;
	background: #f7f9fc;
	box-shadow: 0 18px 48px rgba(17, 23, 34, 0.04);
}

.dev-parts-heading {
	text-align: left;
}

.dev-parts-heading span {
	display: block;
	margin-bottom: 14px;
	color: #034ba9;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.dev-parts-heading h3 {
	margin: 0;
	color: #111722;
	font-size: 26px;
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 0;
}

.dev-parts-heading p {
	margin: 16px 0 0;
	color: #4f5967;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.68;
	word-break: keep-all;
}

.dev-parts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 34px;
}

.dev-part-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 630px;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(17, 23, 34, 0.14);
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 0 16px 42px rgba(17, 23, 34, 0.04);
	perspective: 1200px;
}

.dev-part-card-inner {
	position: relative;
	flex: 1 1 auto;
	width: 100%;
	min-height: inherit;
	transform-style: preserve-3d;
	transition: transform 0.62s ease;
}

.dev-part-card.is-flipped .dev-part-card-inner {
	transform: rotateY(180deg);
}

.dev-part-face {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding: 30px 34px 0;
	overflow: hidden;
	border-radius: inherit;
	background: #ffffff;
	backface-visibility: hidden;
}

.dev-part-back {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 180px;
	padding-bottom: 34px;
	background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 100%);
	transform: rotateY(180deg);
}

.dev-part-front {
	padding-bottom: 300px;
}

.dev-part-front .dev-part-visual {
	position: absolute;
	right: 34px;
	bottom: 0;
	left: 34px;
	width: auto;
	margin-top: 0;
}

.dev-part-detail-button {
	position: absolute;
	top: 22px;
	right: 22px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border: 1px solid rgba(8, 105, 245, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: #0869f5;
	font: inherit;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dev-part-detail-button:hover,
.dev-part-detail-button:focus-visible {
	border-color: #0869f5;
	background: #0869f5;
	color: #ffffff;
	transform: translateY(-1px);
}

.dev-part-detail-copy {
	width: 100%;
}

.dev-part-detail-copy h4 {
	display: flex;
	align-items: center;
	min-height: auto;
}

.dev-part-detail-list {
	display: grid;
	gap: 14px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
	color: #111722;
	font-size: clamp(18px, 1.1vw, 22px);
	font-weight: 800;
	line-height: 1.45;
	word-break: keep-all;
}

.dev-part-detail-list li {
	position: relative;
	padding-left: 18px;
}

.dev-part-detail-list li::before {
	position: absolute;
	top: 0.62em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #0869f5;
	content: "";
}

.dev-part-card .dev-part-detail-note {
	margin-top: 22px;
	color: #4f5967;
	font-size: 15px;
	font-weight: 700;
}

.dev-part-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 104px;
	height: 104px;
	overflow: visible;
}

.dev-part-icon img {
	display: block;
	width: 150px;
	height: 150px;
	max-width: none;
	object-fit: contain;
}

.dev-part-icon-software img,
.dev-part-icon-hardware img,
.dev-part-icon-production img {
	width: 104px;
	height: 104px;
}

.dev-part-icon-production {
	width: 104px;
	height: 104px;
}

.dev-part-card > i,
.dev-part-face > i {
	display: block;
	width: 28px;
	height: 4px;
	margin: 28px 0 18px;
	background: #0869f5;
	font-style: normal;
}

.dev-part-card h4 {
	margin: 0;
	padding-bottom: 22px;
	border-bottom: 2px solid rgba(17, 23, 34, 0.12);
	color: #111722;
	font-size: clamp(22px, 1.35vw, 28px);
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 0;
	word-break: keep-all;
}

.dev-part-card p {
	margin: 18px 0 0;
	color: #4f5967;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.76;
	word-break: keep-all;
}

.dev-part-visual {
	position: relative;
	flex: 0 0 auto;
	width: 100%;
	margin-top: auto;
	overflow: hidden;
	pointer-events: none;
	user-select: none;
}

.dev-part-visual img {
	position: absolute;
	bottom: 50%;
	left: 50%;
	display: block;
	max-width: none;
	width: auto;
	object-fit: contain;
	transform: translate(-50%, 50%);
}

.dev-part-visual-software {
	height: 300px;
}

.dev-part-visual-software img {
	width: min(284px, 78%);
}

.dev-part-visual-hardware {
	height: 300px;
	margin-top: auto;
}

.dev-part-visual-hardware img {
	width: min(284px, 78%);
}

.dev-part-visual-production {
	height: 300px;
	margin-top: auto;
}

.dev-part-visual-production img {
	width: min(284px, 78%);
}

@media (max-width: 1360px) {
	.product-content,
	.commerce-content {
		width: min(1280px, calc(100% - 160px));
		padding-top: var(--site-header-height);
		padding-bottom: 96px;
	}

	.product-content h2,
	.commerce-content h2 {
		font-size: 44px;
	}

	.commerce-content h2 {
		font-size: 44px;
	}

	.product-lead,
	.commerce-lead {
		font-size: 17px;
	}

	.commerce-lead {
		font-size: 17px;
	}

	.dev-parts-heading h3 {
		font-size: 26px;
	}

	.dev-parts-heading p {
		font-size: 16px;
	}

	.dev-part-card {
		min-height: 620px;
		padding-right: 0;
		padding-left: 0;
	}

	.dev-part-face {
		padding-right: 28px;
		padding-left: 28px;
	}

	.dev-part-card h4 {
		font-size: 23px;
	}

	.dev-part-card p {
		font-size: 16px;
	}

	.dev-part-visual-software {
		height: 260px;
	}

	.dev-part-visual-hardware {
		height: 260px;
	}

	.dev-part-visual-production {
		height: 260px;
	}

	.dev-part-front {
		padding-bottom: 260px;
	}

	.dev-part-visual-software img {
		width: min(244px, 74%);
	}

	.dev-part-visual-hardware img {
		width: min(244px, 74%);
	}

	.dev-part-visual-production img {
		width: min(244px, 74%);
	}
}

@media (max-width: 999px) {
	.product-content,
	.commerce-content {
		width: calc(100% - 56px);
		padding-top: var(--site-header-height);
		padding-bottom: 88px;
	}

	.product-content .section-eyebrow,
	.product-content h2,
	.product-lead,
	.commerce-content .section-eyebrow,
	.commerce-content h2,
	.commerce-lead {
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.product-content h2,
	.commerce-content h2 {
		font-size: 40px;
	}

	.commerce-content h2 {
		font-size: 40px;
	}

	.commerce-operation-card {
		grid-template-columns: minmax(210px, 0.62fr) minmax(0, 1fr);
	}

	.commerce-operation-visual img {
		width: min(100%, 220px);
	}

	.commerce-flow-section .commerce-flow-list img {
		width: min(100%, 210px);
		height: 144px;
	}

	.dev-parts-section {
		margin-top: 64px;
		padding: 34px 28px;
	}

	.dev-parts-heading {
		text-align: left;
	}

	.dev-parts-grid {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-top: 36px;
	}

	.dev-part-card {
		min-height: 640px;
		text-align: left;
	}

	.dev-part-front {
		padding-bottom: 264px;
	}

	.dev-part-front .dev-part-visual {
		right: 28px;
		left: 28px;
	}

	.dev-part-visual img {
		right: auto;
		bottom: 50%;
		left: 50%;
		transform: translate(-50%, 50%);
	}

	.dev-part-visual-software img {
		width: min(268px, 68%);
	}

	.dev-part-visual-hardware img {
		width: min(268px, 68%);
	}

	.dev-part-visual-production img {
		width: min(268px, 68%);
	}

	.development-operation-cards,
	.development-flow-list {
		grid-template-columns: 1fr;
	}

	.development-operation-card,
	.development-flow-list div {
		min-height: auto;
	}

	.commerce-operation-heading,
	.commerce-flow-section .commerce-section-heading {
		text-align: left;
	}

	.commerce-operation-heading h3,
	.commerce-flow-section .commerce-section-heading h3 {
		font-size: 26px;
	}

	.commerce-operation-section,
	.commerce-flow-section,
	.commerce-cta {
		padding: 34px 28px;
	}

	.commerce-flow-section .commerce-flow-list div,
	.commerce-flow-section .commerce-flow-list div:nth-child(2),
	.commerce-flow-section .commerce-flow-list div:nth-child(-n + 2) {
		border: 1px solid rgba(17, 23, 34, 0.1);
	}
}

@media (max-width: 649px) {
	.product-content,
	.commerce-content {
		width: calc(100% - 36px);
		padding-top: var(--site-header-height);
		padding-bottom: 76px;
	}

	.product-content h2,
	.commerce-content h2 {
		font-size: 31px;
	}

	.commerce-content h2 {
		font-size: 31px;
	}

	.product-lead,
	.commerce-lead {
		margin-top: 16px;
		font-size: 15px;
	}

	.commerce-lead {
		font-size: 15px;
	}

	.dev-parts-heading span {
		font-size: 14px;
	}

	.dev-parts-section {
		padding: 24px 18px 30px;
	}

	.dev-parts-heading h3 {
		font-size: 26px;
	}

	.dev-parts-heading p {
		margin-top: 16px;
		font-size: 15px;
	}

	.dev-part-card {
		min-height: 660px;
		text-align: center;
	}

	.dev-part-face {
		padding: 28px 22px 30px;
	}

	.dev-part-front {
		padding-bottom: 304px;
	}

	.dev-part-front .dev-part-visual {
		right: 22px;
		bottom: 18px;
		left: 22px;
	}

	.dev-part-back {
		padding-top: 140px;
	}

	.dev-part-detail-button {
		top: 18px;
		right: 18px;
		min-height: 32px;
		padding: 0 12px;
		font-size: 12px;
	}

	.dev-part-icon {
		width: 90px;
		height: 90px;
		margin-right: auto;
		margin-left: auto;
	}

	.dev-part-icon img {
		width: 132px;
		height: 132px;
	}

	.dev-part-icon-software img,
	.dev-part-icon-hardware img,
	.dev-part-icon-production img {
		width: 90px;
		height: 90px;
	}

	.dev-part-icon-production {
		width: 90px;
		height: 90px;
	}

	.dev-part-card > i,
	.dev-part-face > i {
		margin-right: auto;
		margin-left: auto;
	}

	.dev-part-card h4 {
		font-size: 22px;
	}

	.dev-part-card p {
		font-size: 16px;
	}

	.dev-part-detail-list {
		font-size: 19px;
		text-align: left;
	}

	.dev-part-card .dev-part-detail-note {
		font-size: 14px;
		text-align: left;
	}

	.dev-part-visual {
		margin-top: auto;
	}

	.dev-part-visual-software {
		height: 264px;
	}

	.dev-part-visual-hardware {
		height: 264px;
	}

	.dev-part-visual-production {
		height: 264px;
	}

	.dev-part-visual img {
		bottom: 50%;
		transform: translate(-50%, 50%);
	}

	.dev-part-visual-software img {
		width: min(238px, 76%);
	}

	.dev-part-visual-hardware img {
		width: min(238px, 76%);
	}

	.dev-part-visual-production img {
		width: min(238px, 76%);
	}

	.product-main {
		margin-top: 36px;
		padding-top: 30px;
	}

	.commerce-feature {
		margin-top: 36px;
	}

	.commerce-operation-card {
		grid-template-columns: 1fr;
	}

	.development-operation-card {
		grid-template-columns: 1fr;
	}

	.commerce-operation-visual img {
		width: min(100%, 200px);
	}

	.commerce-flow-section .commerce-flow-list img {
		width: min(100%, 190px);
		height: 130px;
	}

	.commerce-operation-heading h3,
	.commerce-flow-section .commerce-section-heading h3 {
		font-size: 22px;
	}

	.commerce-operation-heading p,
	.commerce-operation-copy p,
	.commerce-flow-section .commerce-flow-list p {
		font-size: 16px;
	}

	.commerce-operation-heading::after,
	.commerce-flow-section .commerce-section-heading::after {
		margin: 0;
	}

	.commerce-operation-section,
	.commerce-flow-section,
	.commerce-cta {
		padding: 24px 18px 30px;
	}

	.commerce-flow-section .commerce-flow-list div,
	.commerce-flow-section .commerce-flow-list div:nth-child(2),
	.commerce-flow-section .commerce-flow-list div:nth-child(-n + 2) {
		border: 1px solid rgba(17, 23, 34, 0.1);
	}
}

/* Product and game service detail panels without the hard divider line. */
.game-service-content .section-eyebrow,
.game-service-content h2,
.game-service-content .product-lead {
	margin-right: 0;
	margin-left: 0;
	text-align: left;
}

.game-service-content .product-lead {
	max-width: 920px;
}

.product-showcase-content .product-showcase-main,
.game-service-content .game-service-main {
	grid-template-columns: minmax(480px, 660px) minmax(420px, 640px);
	align-items: center;
	justify-content: center;
	margin-top: 50px;
	padding: clamp(34px, 4vw, 56px);
	border-top: 0;
	border: 1px solid rgba(17, 23, 34, 0.1);
	border-radius: 8px;
	background: #f7f9fc;
	box-shadow: 0 18px 48px rgba(17, 23, 34, 0.04);
}

.product-showcase-content .product-showcase-main .product-main-image,
.game-service-content .game-service-main .product-main-image {
	justify-self: center;
	width: min(100%, 640px);
	background: #ffffff;
}

.product-showcase-content .product-showcase-main .product-main-copy,
.game-service-content .game-service-main .product-main-copy {
	justify-self: stretch;
	max-width: 620px;
	text-align: left;
}

.product-showcase-content .product-showcase-main .product-main-copy p,
.game-service-content .game-service-main .product-main-copy p {
	margin-right: 0;
	margin-left: 0;
}

.product-showcase-content .product-inquiry-button,
.game-service-content .product-inquiry-button {
	margin-right: 0;
	margin-left: 0;
}

.game-service-content .game-service-main {
	grid-template-columns: minmax(560px, 760px) minmax(380px, 560px);
}

.game-service-content .game-service-main .game-service-image {
	width: min(100%, 760px);
	aspect-ratio: 1536 / 1152;
	padding: 0;
	background: #111722;
}

.game-service-content .game-service-main .game-service-image img {
	object-fit: contain;
}

.game-service-content .game-service-main .game-service-image p {
	right: 16px;
	bottom: 14px;
	padding: 7px 10px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(17, 23, 34, 0.12);
	border-radius: 4px;
	box-shadow: 0 8px 18px rgba(17, 23, 34, 0.12);
}

.manufacturing-ready-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 360px;
	text-align: center;
}

.manufacturing-ready-content p {
	margin: 0;
	color: #111722;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.35;
	word-break: keep-all;
}

.manufacturing-ready-content .product-inquiry-button {
	margin-top: 34px;
}

.sub-hero-business-services {
	background: #111722;
}

.sub-hero-business-services .sub-hero-video {
	opacity: 0.78;
}

.business-services-content {
	width: min(1280px, calc(100% - 160px));
	padding-top: 116px;
	padding-bottom: 126px;
}

.business-services-content .section-eyebrow {
	margin: 0 0 22px;
	color: #2f4fa3;
	font-size: 27px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.business-services-content h2 {
	margin: 0;
	color: #10151f;
	font-size: clamp(44px, 4vw, 56px);
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: 0;
}

.business-services-lead {
	max-width: 940px;
	margin: 28px 0 0;
	color: #586170;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.75;
}

.business-services-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 56px;
}

.business-services-grid-three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-services-card {
	position: relative;
	min-height: 310px;
	padding: 34px 28px 32px;
	overflow: hidden;
	border: 1px solid rgba(22, 30, 44, 0.1);
	border-radius: 8px;
	background: #f8fafc;
	box-shadow: 0 18px 44px rgba(21, 31, 48, 0.08);
}

.business-services-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, #2f4fa3, #6d7dd8);
}

.business-services-card span {
	display: block;
	margin-bottom: 58px;
	color: #2f4fa3;
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
}

.business-services-card h3 {
	margin: 0;
	color: #111722;
	font-size: 27px;
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 0;
}

.business-services-card p {
	margin: 22px 0 0;
	color: #596272;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.75;
}

.business-services-action {
	display: flex;
	justify-content: center;
	margin-top: 54px;
}

@media (max-width: 1180px) {
	.business-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.business-services-grid-three {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 999px) {
	.business-services-content {
		width: min(100% - 56px, 820px);
		padding-top: 86px;
		text-align: center;
	}

	.business-services-content .section-eyebrow,
	.business-services-content h2,
	.business-services-lead {
		margin-left: auto;
		margin-right: auto;
	}

	.business-services-card {
		text-align: left;
	}
}

@media (max-width: 649px) {
	.business-services-content {
		width: calc(100% - 36px);
		padding-top: 70px;
		padding-bottom: 88px;
	}

	.business-services-content .section-eyebrow {
		font-size: 18px;
	}

	.business-services-content h2 {
		font-size: 31px;
	}

	.business-services-lead {
		font-size: 16px;
	}

	.business-services-grid {
		grid-template-columns: 1fr;
		margin-top: 38px;
	}

	.business-services-grid-three {
		grid-template-columns: 1fr;
	}

	.business-services-card {
		min-height: 250px;
		padding: 30px 24px 28px;
	}

	.business-services-card span {
		margin-bottom: 36px;
	}

	.business-services-card h3 {
		font-size: 24px;
	}
}

@media (max-width: 1180px) {
	.product-showcase-content .product-showcase-main,
	.game-service-content .game-service-main {
		grid-template-columns: 1fr;
		padding: 34px 28px 40px;
	}

	.product-showcase-content .product-showcase-main .product-main-image,
	.game-service-content .game-service-main .product-main-image {
		width: min(100%, 560px);
	}

	.game-service-content .game-service-main .game-service-image {
		width: min(100%, 720px);
	}
}

@media (max-width: 999px) {
	.product-showcase-content .section-eyebrow,
	.product-showcase-content h2,
	.product-showcase-content .product-lead,
	.game-service-content .section-eyebrow,
	.game-service-content h2,
	.game-service-content .product-lead {
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.product-showcase-content .product-showcase-main .product-main-copy,
	.game-service-content .game-service-main .product-main-copy {
		justify-self: center;
		text-align: center;
	}

	.product-showcase-content .product-showcase-main .product-main-copy p,
	.game-service-content .game-service-main .product-main-copy p {
		margin-right: auto;
		margin-left: auto;
	}

	.product-showcase-content .product-inquiry-button,
	.game-service-content .product-inquiry-button {
		margin-right: auto;
		margin-left: auto;
	}
}

@media (max-width: 649px) {
	.product-showcase-content .product-showcase-main,
	.game-service-content .game-service-main {
		margin-top: 36px;
		padding: 24px 18px 30px;
	}

	.product-showcase-content .product-showcase-main .product-main-image,
	.game-service-content .game-service-main .product-main-image {
		width: min(100%, 360px);
	}

	.game-service-content .game-service-main .game-service-image {
		width: 100%;
		aspect-ratio: 1536 / 1152;
	}

}

/* Apply the same soft panel language to hiring guide and inquiry pages. */
.careers-guide-content .careers-standard,
.inquiry-summary,
.inquiry-directory-detail {
	padding: clamp(28px, 3.4vw, 46px);
	border: 1px solid rgba(17, 23, 34, 0.1);
	border-radius: 8px;
	background: #f7f9fc;
	box-shadow: 0 18px 48px rgba(17, 23, 34, 0.04);
}

.careers-guide-content .careers-section-head {
	padding-bottom: 0;
	border-bottom: 0;
	text-align: left;
}

.careers-guide-content .careers-section-head .section-eyebrow,
.careers-guide-content .careers-section-title {
	text-align: left;
}

.careers-guide-content .careers-process,
.careers-guide-content .careers-guide-grid {
	gap: 14px;
	margin-top: 24px;
	background: transparent;
	border-bottom: 0;
}

.hiring-guide-page .careers-process {
	border-bottom: 0;
}

.careers-guide-content .careers-process-step,
.careers-guide-content .careers-guide-grid > div {
	background: #ffffff;
	border: 1px solid rgba(17, 23, 34, 0.1);
	border-radius: 8px;
}

.careers-guide-content .careers-process-step {
	border-left: 1px solid rgba(17, 23, 34, 0.1);
}

.careers-guide-content .careers-process-step:first-child {
	border-left: 1px solid rgba(17, 23, 34, 0.1);
}

.careers-guide-content .careers-process-step::after {
	display: none;
}

.inquiry-summary {
	gap: 14px;
	border-top: 1px solid rgba(17, 23, 34, 0.1);
	border-bottom: 1px solid rgba(17, 23, 34, 0.1);
}

.inquiry-summary div,
.inquiry-row:not(.inquiry-row-head) {
	background: #ffffff;
	border: 1px solid rgba(17, 23, 34, 0.1);
	border-radius: 8px;
}

.inquiry-summary div {
	display: grid;
	grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
	min-height: auto;
	padding: 30px 34px;
	background: linear-gradient(90deg, rgba(3, 75, 169, 0.035) 0, rgba(3, 75, 169, 0) 190px), #ffffff;
}

.inquiry-summary strong {
	position: relative;
	padding-left: 16px;
	font-size: 18px;
	font-weight: 800;
}

.inquiry-summary strong::before {
	position: absolute;
	top: 0.58em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #034ba9;
	content: "";
}

.inquiry-summary span {
	position: relative;
	margin-top: 0;
	color: #384150;
	font-size: 18px;
	font-weight: 750;
	line-height: 1.66;
}

.inquiry-summary span::before {
	position: absolute;
	top: 0.18em;
	bottom: 0.18em;
	left: -26px;
	width: 1px;
	background: rgba(17, 23, 34, 0.12);
	content: "";
}

.inquiry-copy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 82px;
	height: 38px;
	padding: 0 14px;
	border: 1px solid rgba(3, 75, 169, 0.24);
	border-radius: 4px;
	background: #ffffff;
	color: #034ba9;
	font: inherit;
	font-size: 13px;
	font-weight: 850;
	line-height: 1;
	letter-spacing: 0;
	cursor: pointer;
	transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.inquiry-copy-button:hover,
.inquiry-copy-button:focus-visible {
	border-color: #034ba9;
	background: #034ba9;
	color: #ffffff;
	outline: 0;
}

.inquiry-directory-detail {
	display: grid;
	gap: 14px;
	border-top: 1px solid rgba(17, 23, 34, 0.1);
}

.inquiry-directory-detail .inquiry-row {
	grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
	gap: clamp(22px, 3vw, 52px);
	align-items: center;
	min-height: auto;
}

.inquiry-directory-detail .inquiry-row-head {
	background: transparent;
	border: 0;
}

.inquiry-directory-detail .inquiry-row:not(.inquiry-row-head) {
	padding: 30px 34px;
	background: linear-gradient(90deg, rgba(3, 75, 169, 0.035) 0, rgba(3, 75, 169, 0) 220px), #ffffff;
}

.inquiry-directory-detail .inquiry-row strong {
	position: relative;
	padding-left: 16px;
	font-weight: 800;
}

.inquiry-directory-detail .inquiry-row strong::before {
	position: absolute;
	top: 0.58em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #034ba9;
	content: "";
}

.inquiry-directory-detail .inquiry-row p {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	color: #384150;
	font-weight: 750;
	line-height: 1.66;
}

.inquiry-directory-detail .inquiry-row p::before {
	position: absolute;
	top: 0.18em;
	bottom: 0.18em;
	left: -26px;
	width: 1px;
	background: rgba(17, 23, 34, 0.12);
	content: "";
}

@media (max-width: 1440px) {
	.inquiry-summary div {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: end;
		row-gap: 14px;
	}

	.inquiry-summary strong {
		grid-column: 1 / -1;
		padding-bottom: 18px;
		border-bottom: 1px solid rgba(17, 23, 34, 0.12);
	}

	.inquiry-summary span::before {
		display: none;
	}
}

@media (max-width: 999px) {
	.careers-guide-content .careers-standard,
	.inquiry-summary,
	.inquiry-directory-detail {
		padding: 34px 28px;
	}

	.careers-guide-content .careers-process div,
	.careers-guide-content .careers-process div:nth-child(n + 3),
	.hiring-guide-page .careers-guide-content .careers-process div,
	.hiring-guide-page .careers-guide-content .careers-process div:nth-child(n + 3) {
		border: 1px solid rgba(17, 23, 34, 0.1);
	}
}

@media (max-width: 649px) {
	.careers-guide-content .careers-standard,
	.inquiry-summary,
	.inquiry-directory-detail {
		padding: 24px 18px 30px;
	}

	.inquiry-summary div {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 24px 22px 26px;
	}

	.inquiry-copy-button {
		justify-self: end;
		margin-top: 4px;
	}

	.inquiry-summary span {
		padding-top: 0;
		border-top: 0;
	}

	.inquiry-summary span::before {
		display: none;
	}

	.inquiry-directory-detail .inquiry-row:not(.inquiry-row-head) {
		padding: 24px 22px 26px;
	}
}

@media (max-width: 999px) {
	.inquiry-directory-detail .inquiry-row strong {
		margin-top: 0;
	}

	.inquiry-directory-detail .inquiry-row p::before {
		display: none;
	}
}

@media (max-width: 649px) {
	.inquiry-directory-detail .inquiry-row p {
		display: block;
		margin-top: 16px;
		padding-top: 16px;
		border-top: 1px solid rgba(17, 23, 34, 0.12);
	}

	.inquiry-directory-detail .inquiry-row p::before {
		display: none;
	}
}

