.ckc-team-list {
	--navy: #082f6a;
	--ink: #152649;
	--ink-2: #42557a;
	--paper: #ffffff;
	--mist: #eceff4;
	--line: #d6dce6;
	--sky: #4a7ec0;
	--serif: "IvyOra Display Light", serif;
	--sans: "Soehne", sans-serif;
	box-sizing: border-box;
	font-family: var(--sans);
	color: var(--ink);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

.ckc-team-list *,
.ckc-team-list *::before,
.ckc-team-list *::after {
	box-sizing: border-box;
}

.ckc-team-list p {
	margin: 0;
}

.ckc-team-list a {
	color: inherit;
	text-decoration: none;
}

.ckc-team-list-notice {
	margin: 0;
	font-family: var(--sans);
	color: var(--ink-2);
}

.ckc-team-list-lab {
	font-family: var(--sans);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.ckc-team-list-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 26px;
}

.ckc-team-list-chip {
	background: none;
	border: none;
	padding: 5px 0;
	cursor: pointer;
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.17em;
	text-transform: uppercase;
	color: var(--ink-2);
	border-bottom: 1px solid transparent;
	transition: color 0.25s, border-color 0.25s;
}

.ckc-team-list-chip:hover {
	color: var(--navy);
}

.ckc-team-list-chip.is-on {
	color: var(--navy);
	border-bottom-color: var(--navy);
}

.ckc-team-list-frow {
	display: flex;
	align-items: flex-end;
	gap: 34px;
	margin-top: 26px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line);
}

.ckc-team-list-field {
	display: block;
	min-width: 190px;
}

.ckc-team-list-field-grow {
	flex: 1;
}

.ckc-team-list-field .ckc-team-list-lab {
	display: block;
	color: var(--ink-2);
	margin-bottom: 8px;
}

.ckc-team-list-office,
.ckc-team-list-search {
	width: 100%;
	font-family: var(--sans);
	font-size: 14.5px;
	color: var(--ink);
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--line);
	padding: 8px 0;
	border-radius: 0;
	transition: border-color 0.3s;
}

.ckc-team-list-office:focus,
.ckc-team-list-search:focus,
.ckc-team-list-search:focus-visible {
	outline: none;
	border-bottom-color: var(--navy);
	border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
}

.ckc-team-list-office {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' fill='none'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23152649'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 2px center;
	padding-right: 18px;
}

.ckc-team-list-count {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.17em;
	text-transform: uppercase;
	color: var(--ink-2);
	white-space: nowrap;
	padding-bottom: 9px;
}

.ckc-team-list-people {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px 26px;
	margin-top: 46px;
}

.ckc-team-list-card {
	display: flex;
	flex-direction: column;
	margin: 0;
}

.ckc-team-list-card[hidden] {
	display: none;
}

.ckc-team-list-card-inner {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.ckc-team-list-photo {
	position: relative;
	aspect-ratio: 4 / 5;
	background: repeating-linear-gradient(0deg, #dfe4ec 0 2px, #e6eaf1 2px 4px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	filter: grayscale(1);
}

.ckc-team-list-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ckc-team-list-mono {
	font-family: var(--serif);
	font-size: 34px;
	color: #aab6c8;
	letter-spacing: 0.06em;
}

.ckc-team-list p.ckc-team-list-name {
	margin-top: 15px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.35;
}

.ckc-team-list p.ckc-team-list-role {
	margin-top: 2px;
	font-size: 13px;
	color: var(--ink-2);
	line-height: 1.4;
}

.ckc-team-list p.ckc-team-list-meta {
	margin-top: 9px;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--sky);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
}

.ckc-team-list-meta-dept,
.ckc-team-list-meta-office {
	display: block;
}

.ckc-team-list-empty {
	margin-top: 46px;
	font-family: var(--serif);
	font-size: 24px;
	color: var(--ink-2);
}

.ckc-team-list-empty[hidden] {
	display: none;
}

.ckc-team-list-morewrap {
	margin-top: 52px;
	text-align: center;
}

.ckc-team-list-more {
	appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	background: none;
	border: 1px solid var(--line);
	border-radius: 0;
	margin: 0;
	padding: 14px 38px;
	min-width: 0;
	width: auto;
	cursor: pointer;
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.19em;
	text-transform: uppercase;
	color: var(--navy);
	line-height: 1.2;
	box-shadow: none;
	transition: background 0.3s, border-color 0.3s;
}

.ckc-team-list-more:hover {
	background: var(--mist);
	border-color: var(--navy);
}

.ckc-team-list-more[hidden] {
	display: none;
}

@media (max-width: 1080px) {
	.ckc-team-list-people {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 900px) {
	.ckc-team-list-people {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px 20px;
	}

	.ckc-team-list-frow {
		flex-wrap: wrap;
		gap: 20px;
	}

	.ckc-team-list-field,
	.ckc-team-list-field-grow {
		min-width: 0;
		flex: 1 1 46%;
	}

	.ckc-team-list-count {
		width: 100%;
		padding-bottom: 0;
	}
}

@media (max-width: 640px) {
	.ckc-team-list-people {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 16px;
	}

	.ckc-team-list-chips {
		gap: 6px 18px;
	}

	.ckc-team-list-field,
	.ckc-team-list-field-grow {
		flex: 1 1 100%;
	}

	.ckc-team-list-more {
		width: 100%;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ckc-team-list * {
		transition: none !important;
	}
}
