.example-page {
	background: #fff;
}

.example-page .site-header {
	color: #fff;
	background: transparent;
	border-color: rgba(255, 255, 255, .18);
	box-shadow: none;
}

.example-page .site-header.is-scrolled {
	color: var(--ink);
	background: rgba(255, 255, 255, .96);
	border-color: rgba(18, 20, 22, .12);
	box-shadow: 0 8px 30px rgba(18, 20, 22, .07);
}

.example-hero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	padding: calc(var(--header-height) + 74px) max(28px, calc((100vw - var(--max-width)) / 2)) 82px;
	color: #fff;
	background: #121516;
}

.example-hero-media {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgba(9, 11, 12, .92) 0%, rgba(9, 11, 12, .72) 48%, rgba(9, 11, 12, .36) 100%), url("/images/main/main_12.png");
	background-position: center 38%;
	background-size: cover;
	transform: scale(1.04);
	animation: example-hero-camera 16s cubic-bezier(.2, .7, .2, 1) both;
}

.example-hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(7, 9, 10, .58));
}

.example-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 880px;
}

.example-motion-enabled .example-hero-inner > * {
	opacity: 0;
	animation: example-hero-copy .9s cubic-bezier(.16, 1, .3, 1) both;
}

.example-motion-enabled .example-hero-inner > *:nth-child(1) { animation-delay: .14s; }
.example-motion-enabled .example-hero-inner > *:nth-child(2) { animation-delay: .28s; }
.example-motion-enabled .example-hero-inner > *:nth-child(3) { animation-delay: .66s; }
.example-motion-enabled .example-hero-inner > *:nth-child(4) { animation-delay: .82s; }

@keyframes example-hero-copy {
	from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translate3d(-22px, 0, 0); }
	to { opacity: 1; clip-path: inset(0 0 0 0); transform: translate3d(0, 0, 0); }
}

.example-kicker,
.case-library-heading > div > p,
.case-category-section > header > div:nth-child(2) > p,
.example-cta p {
	margin: 0;
	color: #d8bb82;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
}

.example-hero h1 {
	margin: 16px 0 0;
	font-family: Pretendard, "Noto Sans KR", "Malgun Gothic", sans-serif;
	font-size: clamp(52px, 6vw, 82px);
	font-weight: 780;
	line-height: 1.08;
}

.example-hero-inner > p:nth-of-type(2) {
	margin: 29px 0 0;
	color: rgba(255, 255, 255, .72);
	font-size: 18px;
	line-height: 1.75;
}

.example-hero-inner > a {
	width: max-content;
	min-height: 50px;
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 34px;
	padding: 0 18px;
	color: #fff;
	background: var(--red);
	font-size: 15px;
	font-weight: 800;
}

.example-hero-inner > a svg {
	width: 17px;
	height: 17px;
}

.example-hero-count {
	position: absolute;
	right: max(28px, calc((100vw - var(--max-width)) / 2));
	bottom: 79px;
	z-index: 1;
	display: flex;
	align-items: baseline;
	gap: 14px;
}

.example-hero-count span {
	color: rgba(255, 255, 255, .54);
	font-size: 14px;
}

.example-hero-count strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 72px;
	line-height: 1;
}

@keyframes example-hero-camera {
	to { transform: scale(1.11) translate3d(-1.2%, 0, 0); }
}

.case-library {
	width: min(calc(100% - 56px), var(--max-width));
	margin: 0 auto;
	padding: 112px 0 130px;
}

.case-library.is-library-empty {
	padding-bottom: 72px;
}

.example-motion-enabled [data-example-reveal] {
	opacity: 0;
	transition-delay: var(--example-delay, 0ms);
}

.example-motion-enabled [data-example-reveal][data-motion="clip"] {
	clip-path: inset(0 100% 0 0);
	transform: translate3d(-18px, 0, 0);
	transition: clip-path .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1), opacity .35s ease;
}

.example-motion-enabled [data-example-reveal][data-motion="line"] {
	clip-path: inset(0 50% 0 50%);
	transition: clip-path 1s cubic-bezier(.16, 1, .3, 1), opacity .3s ease;
}

.example-motion-enabled [data-example-reveal][data-motion="sweep"] {
	transform: translate3d(28px, 0, 0);
	transition: transform .85s cubic-bezier(.16, 1, .3, 1), opacity .4s ease;
}

.example-motion-enabled [data-example-reveal][data-motion="shutter"] {
	clip-path: inset(0 0 100% 0);
	transform: scale(.992);
	transition: clip-path .46s cubic-bezier(.16, 1, .3, 1), transform .46s cubic-bezier(.16, 1, .3, 1), opacity .18s ease;
}

.example-motion-enabled [data-example-reveal][data-motion="split"] {
	clip-path: inset(0 50% 0 50%);
	transition: clip-path .64s cubic-bezier(.16, 1, .3, 1), opacity .24s ease;
}

.example-motion-enabled .example-cta[data-motion="fill"] {
	opacity: 1;
}

.example-motion-enabled [data-example-reveal] {
	transition-delay: var(--example-delay, 0ms);
}

.example-motion-enabled [data-example-reveal].is-example-visible {
	clip-path: inset(0 0 0 0);
	opacity: 1;
	transform: none;
}

.case-library-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	padding-bottom: 42px;
	border-bottom: 2px solid var(--ink);
}

.case-library-heading > div > p,
.case-category-section > header > div:nth-child(2) > p {
	color: var(--red);
}

.case-library-heading h2 {
	margin: 12px 0 0;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.2;
}

.case-library-heading > p {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.8;
}

.case-category-tabs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-bottom: 1px solid var(--line);
}

.case-category-tabs a {
	position: relative;
	min-height: 126px;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto 22px;
	align-items: center;
	gap: 15px;
	padding: 24px 28px;
	border-right: 1px solid var(--line);
}

.case-category-tabs a:last-child {
	border-right: 0;
}

.case-category-tabs a::before {
	content: "";
	position: absolute;
	top: -2px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--red);
	transition: width .45s cubic-bezier(.16, 1, .3, 1);
}

.case-category-tabs a.is-type-2::before {
	background: var(--green);
}

.case-category-tabs a:hover::before {
	width: 100%;
}

.case-category-tabs a > span {
	color: var(--red);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	font-weight: 700;
}

.case-category-tabs a.is-type-2 > span {
	color: var(--green);
}

.case-category-tabs strong {
	font-size: 21px;
}

.case-category-tabs em {
	color: var(--muted);
	font-size: 14px;
	font-style: normal;
}

.case-category-tabs svg {
	width: 20px;
	height: 20px;
	transition: transform .3s ease;
}

.case-category-tabs a:hover svg {
	transform: translate3d(4px, 4px, 0);
}

.case-category-section {
	scroll-margin-top: calc(var(--header-height) + 24px);
	padding: 96px 0 24px;
}

.case-category-section + .case-category-section {
	margin-top: 32px;
	border-top: 1px solid var(--line);
}

.case-category-section.is-empty {
	padding-top: 58px;
}

.case-category-section.is-empty + .case-category-section.is-empty {
	margin-top: 12px;
}

.case-category-section > header {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) minmax(300px, 480px);
	align-items: center;
	gap: 24px;
	margin-bottom: 34px;
}

.case-category-section > header > div:first-child {
	position: relative;
	width: 58px;
	height: 58px;
	display: grid;
	place-items: center;
	color: var(--red);
	background: #fff1ef;
}

.case-category-section.is-type-2 > header > div:first-child {
	color: var(--green);
	background: #e9f1ef;
}

.case-category-section > header > div:first-child span {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 25px;
	height: 25px;
	display: grid;
	place-items: center;
	color: #fff;
	background: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
}

.case-category-section > header svg {
	width: 28px;
	height: 28px;
	stroke-width: 1.6;
}

.case-category-section > header h2 {
	margin: 6px 0 0;
	font-size: 32px;
}

.case-category-section > header > p {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.8;
}

.case-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.case-card-grid.has-more {
	grid-template-columns: repeat(2, minmax(0, 1fr)) 108px;
}

.case-library-more {
	position: relative;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
	overflow: hidden;
	padding: 24px 12px;
	color: #fff;
	background: #171a1b;
	border: 0;
	cursor: pointer;
	transition: color .25s ease, background .35s ease;
}

.case-library-more::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: var(--red);
	transition: width .42s cubic-bezier(.16, 1, .3, 1);
}

.case-category-section.is-type-2 .case-library-more::before {
	background: #9a7224;
}

.case-library-more > * {
	position: relative;
	z-index: 1;
}

.case-library-more small {
	color: rgba(255, 255, 255, .58);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	white-space: nowrap;
}

.case-library-more strong {
	font-size: 17px;
	white-space: nowrap;
}

.case-library-more svg {
	width: 20px;
	height: 20px;
	transition: transform .3s ease;
}

.case-library-more:hover::before {
	width: 100%;
}

.case-library-more:hover svg {
	transform: translateX(5px);
}

.case-library-card {
	min-width: 0;
	display: grid;
	grid-template-columns: minmax(190px, 43%) minmax(0, 1fr);
	min-height: 252px;
	padding: 0;
	color: var(--ink);
	background: #f5f6f6;
	border: 0;
	text-align: left;
	cursor: pointer;
}

.case-card-image {
	position: relative;
	min-height: 252px;
	overflow: hidden;
	background: #dfe2e1;
}

.case-card-image > img,
.case-card-placeholder {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	object-fit: cover;
	transition: transform .72s cubic-bezier(.16, 1, .3, 1), filter .4s ease;
}

.case-card-placeholder svg {
	width: 42px;
	height: 42px;
	color: #7c8482;
}

.case-card-image > em {
	position: absolute;
	bottom: 12px;
	left: 12px;
	padding: 6px 8px;
	color: #fff;
	background: rgba(17, 19, 21, .82);
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
}

.case-card-open {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	color: #fff;
	background: var(--red);
	transform: scale(.7) rotate(-8deg);
	opacity: 0;
	transition: transform .4s cubic-bezier(.16, 1, .3, 1), opacity .25s ease;
}

.case-category-section.is-type-2 .case-card-open {
	background: var(--green);
}

.case-card-open svg {
	width: 17px;
	height: 17px;
}

.case-library-card:hover .case-card-image > img {
	filter: saturate(.85) contrast(1.03);
	transform: scale(1.055);
}

.case-library-card:hover .case-card-open {
	transform: scale(1) rotate(0);
	opacity: 1;
}

.case-card-copy {
	min-width: 0;
	display: flex;
	flex-direction: column;
	padding: 30px 28px 24px;
}

.case-card-copy > small {
	color: var(--muted);
	font-size: 14px;
}

.case-card-copy > strong {
	margin-top: 8px;
	font-size: 23px;
	line-height: 1.35;
}

.case-card-copy > span:not(.case-card-foot) {
	display: -webkit-box;
	overflow: hidden;
	margin-top: 15px;
	color: #5d6466;
	font-size: 15px;
	line-height: 1.7;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.case-card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}

.case-card-foot em {
	color: var(--red);
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
}

.case-category-section.is-type-2 .case-card-foot em {
	color: var(--green);
}

.case-card-foot svg {
	width: 17px;
	height: 17px;
}

.case-category-empty {
	grid-column: 1 / -1;
	min-height: 260px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: #f5f6f6;
	border-top: 2px solid var(--ink);
	text-align: center;
}

.case-category-section.is-empty .case-category-empty {
	min-height: 180px;
}

.case-category-empty svg {
	width: 36px;
	height: 36px;
	margin-bottom: 15px;
	color: #8a9290;
}

.case-category-empty strong {
	font-size: 19px;
}

.case-category-empty span {
	margin-top: 6px;
	color: var(--muted);
	font-size: 14px;
}

.example-cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 72px max(28px, calc((100vw - var(--max-width)) / 2));
	color: #fff;
	overflow: hidden;
	background: #171b1c;
	isolation: isolate;
}

.example-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--green);
	transform: scaleX(1);
	transform-origin: left center;
}

.example-cta > * {
	position: relative;
	z-index: 1;
}

.example-motion-enabled .example-cta[data-motion="fill"]::before {
	transform: scaleX(0);
	transition: transform .9s cubic-bezier(.16, 1, .3, 1);
}

.example-motion-enabled .example-cta[data-motion="fill"] > * {
	opacity: 0;
	transform: translate3d(-24px, 0, 0);
	transition: opacity .35s ease .38s, transform .72s cubic-bezier(.16, 1, .3, 1) .32s;
}

.example-motion-enabled .example-cta[data-motion="fill"].is-example-visible::before {
	transform: scaleX(1);
}

.example-motion-enabled .example-cta[data-motion="fill"].is-example-visible > * {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.example-cta h2 {
	margin: 10px 0 8px;
	font-size: 36px;
}

.example-cta span {
	color: rgba(255, 255, 255, .68);
	font-size: 16px;
}

.example-cta > a {
	min-height: 54px;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0 20px;
	color: #fff;
	background: var(--red);
	font-size: 16px;
	font-weight: 800;
}

.example-cta > a span {
	color: inherit;
}

.example-cta > a svg {
	width: 18px;
	height: 18px;
}

/* Presentation viewer */
body.viewer-open {
	overflow: hidden;
	max-width: 100%;
	overscroll-behavior: none;
}

body.viewer-open .mobile-apply-bar {
	display: none !important;
}

.case-viewer {
	--viewer-sidebar-width: 286px;
	--viewer-accent: #244b47;
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	place-items: center;
	width: 100%;
	max-width: 100vw;
	overflow: hidden;
	padding: 18px;
	contain: layout paint;
}

.case-viewer.is-type-2 {
	--viewer-accent: #8a661f;
}

.case-viewer[hidden] {
	display: none;
}

.case-viewer-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(9, 11, 12, .84);
	backdrop-filter: blur(0);
	opacity: 0;
	transition: opacity .42s ease, backdrop-filter .64s ease;
}

.case-viewer-window {
	position: relative;
	min-width: 0;
	width: min(1680px, 100%);
	max-width: 100%;
	height: min(940px, calc(100dvh - 36px));
	display: grid;
	grid-template-rows: 70px minmax(0, 1fr);
	overflow: hidden;
	background: #15191a;
	box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
	clip-path: inset(0 50% 0 50%);
	opacity: 0;
	transform: scale(.985);
	transition: clip-path .72s cubic-bezier(.16, 1, .3, 1), opacity .2s ease, transform .72s cubic-bezier(.16, 1, .3, 1);
}

.case-viewer.is-open .case-viewer-backdrop {
	backdrop-filter: blur(9px);
	opacity: 1;
}

.case-viewer.is-open .case-viewer-window {
	clip-path: inset(0 0 0 0);
	opacity: 1;
	transform: scale(1);
}

.case-viewer.is-closing .case-viewer-backdrop {
	opacity: 0;
}

.case-viewer.is-closing .case-viewer-window {
	clip-path: inset(0 50% 0 50%);
	opacity: 0;
	transform: scale(.98);
	transition-duration: .32s;
}

.viewer-intro-sweep {
	position: absolute;
	inset: 0;
	z-index: 80;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: #fff;
	background: #111516;
	box-shadow: -3px 0 0 #d4b777, -21px 0 51px rgba(212, 183, 119, .18);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(101%);
}

.viewer-intro-sweep > div {
	display: flex;
	align-items: center;
	gap: 16px;
}

.viewer-intro-sweep span {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	background: var(--red);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
	font-weight: 700;
}

.viewer-intro-sweep strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	letter-spacing: 0;
}

.case-viewer.is-open.is-entering .viewer-intro-sweep {
	visibility: visible;
	animation: viewer-intro-curtain 1.08s cubic-bezier(.65, 0, .2, 1) both;
}

.case-viewer.is-open.is-entering .viewer-intro-sweep > div {
	animation: viewer-intro-mark .76s cubic-bezier(.16, 1, .3, 1) both;
}

.case-viewer.is-open.is-entering .viewer-topbar {
	animation: viewer-intro-topbar .7s .18s cubic-bezier(.16, 1, .3, 1) both;
}

.case-viewer.is-open.is-entering .viewer-sidebar {
	animation: viewer-intro-sidebar .62s .3s cubic-bezier(.16, 1, .3, 1) both;
}

.case-viewer.is-open.is-entering .viewer-stage-wrap {
	animation: viewer-intro-stage .68s .34s cubic-bezier(.16, 1, .3, 1) both;
}

.case-viewer.is-open.is-entering .viewer-filmstrip-wrap {
	animation: viewer-intro-film .58s .44s cubic-bezier(.16, 1, .3, 1) both;
}

.case-viewer.is-entering .viewer-top-actions button[data-viewer-guide],
.case-viewer.is-entering .viewer-top-actions button[data-viewer-fullscreen] {
	pointer-events: none;
}

@keyframes viewer-intro-curtain {
	0%, 34% { opacity: 1; transform: translateX(0); }
	100% { opacity: 1; transform: translateX(101%); }
}

@keyframes viewer-intro-mark {
	0% { opacity: 0; transform: translateX(-24px); }
	18%, 55% { opacity: 1; transform: translateX(0); }
	100% { opacity: 0; transform: translateX(34px); }
}

@keyframes viewer-intro-topbar {
	from { clip-path: inset(0 100% 0 0); }
	to { clip-path: inset(0 0 0 0); }
}

@keyframes viewer-intro-sidebar {
	from { clip-path: inset(0 0 100% 0); }
	to { clip-path: inset(0 0 0 0); }
}

@keyframes viewer-intro-stage {
	from { clip-path: inset(0 0 100% 0); }
	to { clip-path: inset(0 0 0 0); }
}

@keyframes viewer-intro-film {
	from { clip-path: inset(0 0 0 100%); }
	to { clip-path: inset(0 0 0 0); }
}

.viewer-topbar {
	position: relative;
	z-index: 20;
	display: grid;
	grid-template-columns: 286px minmax(0, 1fr) auto;
	align-items: center;
	color: #fff;
	background: #171a1b;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.viewer-brand {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 0 20px;
	border-right: 1px solid rgba(255, 255, 255, .12);
}

.viewer-brand > span {
	width: 35px;
	height: 35px;
	display: grid;
	place-items: center;
	background: var(--red);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 17px;
	font-weight: 700;
}

.viewer-brand > div {
	display: grid;
}

.viewer-brand strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
}

.viewer-brand small {
	margin-top: 3px;
	color: rgba(255, 255, 255, .5);
	font-size: 14px;
}

.viewer-current-title {
	min-width: 0;
	display: flex;
	align-items: baseline;
	gap: 13px;
	padding: 0 22px;
}

.viewer-current-title span {
	color: #d4b777;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.viewer-current-title strong {
	overflow: hidden;
	font-size: 16px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.viewer-top-actions {
	height: 100%;
	display: flex;
}

.viewer-top-actions button {
	width: 58px;
	height: 100%;
	display: grid;
	place-items: center;
	padding: 0;
	color: #fff;
	background: transparent;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, .12);
	cursor: pointer;
}

.viewer-top-actions button:last-child {
	background: var(--red);
}

.viewer-top-actions button[data-viewer-guide]:hover,
.viewer-top-actions button[data-viewer-guide]:focus-visible {
	color: #171a1b;
	background: #d4b777;
}

.viewer-top-actions button[hidden] {
	display: none;
}

.viewer-top-actions svg {
	width: 21px;
	height: 21px;
}

.viewer-layout {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-height: 0;
	display: grid;
	grid-template-columns: var(--viewer-sidebar-width) minmax(0, 1fr);
	transition: grid-template-columns .42s cubic-bezier(.16, 1, .3, 1);
}

.case-viewer.sidebar-collapsed .viewer-layout {
	grid-template-columns: 0 minmax(0, 1fr);
}

.viewer-sidebar {
	position: relative;
	z-index: 12;
	min-width: 0;
	overflow-x: hidden;
	overflow-y: auto;
	background: #fff;
	border-right: 1px solid #d5d9d8;
	transition: transform .42s cubic-bezier(.16, 1, .3, 1), opacity .2s ease;
	overscroll-behavior: contain;
}

.case-viewer.sidebar-collapsed .viewer-sidebar {
	opacity: 0;
	pointer-events: none;
}

.viewer-sidebar-head {
	position: sticky;
	top: 0;
	z-index: 2;
	height: 54px;
	display: flex;
	align-items: center;
	align-content: center;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 0 124px 0 18px;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid #dfe2e1;
	backdrop-filter: blur(8px);
}

.viewer-sidebar-head span {
	color: var(--red);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
}

.viewer-sidebar-head small {
	margin-top: 2px;
	color: #848b8d;
	font-size: 14px;
	line-height: 1;
}

.viewer-sidebar-toggle {
	position: absolute;
	top: 8px;
	left: calc(var(--viewer-sidebar-width) - 118px);
	z-index: 35;
	width: 108px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 0 8px 0 13px;
	color: #fff;
	background: #1d2425;
	border: 1px solid #1d2425;
	box-shadow: inset 3px 0 0 var(--red);
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: left .42s cubic-bezier(.16, 1, .3, 1), top .42s cubic-bezier(.16, 1, .3, 1), color .2s ease, background .2s ease, border-color .2s ease, transform .42s cubic-bezier(.16, 1, .3, 1);
}

.viewer-sidebar-toggle:hover {
	color: #fff;
	background: var(--red);
	border-color: var(--red);
	box-shadow: inset 3px 0 0 rgba(255, 255, 255, .3);
}

.viewer-sidebar-toggle svg {
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
	padding: 3px;
	background: rgba(255, 255, 255, .1);
	box-sizing: content-box;
	stroke-width: 1.8;
}

.case-viewer.sidebar-collapsed .viewer-sidebar-toggle {
	top: 72px;
	left: 0;
	width: 44px;
	height: 112px;
	justify-content: center;
	flex-direction: column;
	gap: 9px;
	padding: 10px 0;
	color: #fff;
	background: rgba(18, 22, 23, .88);
	border-color: rgba(255, 255, 255, .18);
	border-left: 0;
	box-shadow: inset 3px 0 0 var(--red), 0 8px 24px rgba(0, 0, 0, .2);
	transform: none;
}

.case-viewer.sidebar-collapsed .viewer-sidebar-toggle span {
	display: inline;
	writing-mode: vertical-rl;
	line-height: 1;
}

.case-viewer.sidebar-collapsed .viewer-sidebar-toggle svg {
	width: 17px;
	height: 17px;
	padding: 0;
	background: transparent;
	box-sizing: border-box;
}

.viewer-case-group > header {
	height: 58px;
	color: #fff;
	background: var(--green);
}

.viewer-case-group.is-type-2 > header {
	background: #7f5d22;
}

.viewer-case-group > header > button {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr) auto 18px;
	align-items: center;
	gap: 8px;
	padding: 0 18px;
	color: inherit;
	background: transparent;
	border: 0;
	text-align: left;
	cursor: pointer;
}

.viewer-case-group > header > button:hover {
	background: rgba(255, 255, 255, .08);
}

.viewer-case-group > header svg {
	width: 17px;
	height: 17px;
	transition: transform .28s cubic-bezier(.16, 1, .3, 1);
}

.viewer-case-group.is-collapsed > header svg {
	transform: rotate(-90deg);
}

.viewer-case-group > header span,
.viewer-case-group > header em {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-style: normal;
}

.viewer-case-group > header strong {
	font-size: 15px;
}

.viewer-case-group > div {
	display: grid;
	overflow: hidden;
	opacity: 1;
	transition: max-height .34s cubic-bezier(.16, 1, .3, 1), opacity .22s ease;
}

.viewer-case-group.is-collapsed > div {
	opacity: .25;
}

.viewer-case-group > div > button {
	position: relative;
	min-height: 76px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 18px;
	align-content: center;
	gap: 3px 8px;
	padding: 12px 17px;
	color: var(--ink);
	background: #fff;
	border: 0;
	border-bottom: 1px solid #e2e5e4;
	text-align: left;
	cursor: pointer;
}

.viewer-case-group > div > button::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0;
	background: var(--red);
	transition: width .2s ease;
}

.viewer-case-group > div > button.is-active {
	color: #fff;
	background: #1d2425;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), inset 0 -1px 0 rgba(255, 255, 255, .08);
}

.viewer-case-group > div > button.is-active::before {
	width: 6px;
}

.viewer-case-group > div > button.is-active span {
	color: rgba(255, 255, 255, .62);
}

.viewer-case-group > div > button.is-active strong {
	color: #fff;
}

.viewer-case-group > div > button.is-active svg {
	width: 28px;
	height: 28px;
	margin-right: -6px;
	padding: 6px;
	color: #fff;
	background: var(--red);
}

.viewer-case-group > div > button span {
	color: #737a7c;
	font-size: 14px;
}

.viewer-case-group > div > button strong {
	font-size: 15px;
}

.viewer-case-group > div > button svg {
	grid-column: 2;
	grid-row: 1 / 3;
	align-self: center;
	width: 16px;
	height: 16px;
}

.viewer-sidebar-scrim {
	display: none;
}

.viewer-workspace {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: 0;
	display: grid;
	grid-template-rows: minmax(0, 1fr) 142px;
	overflow: hidden;
	background: #15191a;
	transition: grid-template-rows .32s cubic-bezier(.16, 1, .3, 1);
}

.viewer-stage-wrap {
	min-width: 0;
	max-width: 100%;
	min-height: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 270px;
	gap: 1px;
	background: #111516;
}

.viewer-stage {
	position: relative;
	min-width: 0;
	min-height: 0;
	display: grid;
	place-items: center;
	overflow: hidden;
	background-color: #242829;
	background-image: linear-gradient(45deg, rgba(255, 255, 255, .025) 25%, transparent 25%), linear-gradient(-45deg, rgba(255, 255, 255, .025) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, .025) 75%), linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, .025) 75%);
	background-position: 0 0, 0 12px, 12px -12px, -12px 0;
	background-size: 24px 24px;
	touch-action: none;
}

.viewer-media-mount {
	position: absolute;
	inset: 26px 58px;
	display: block;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	touch-action: none;
	cursor: grab;
	scrollbar-gutter: stable;
}

.viewer-media-mount.is-selection-empty {
	display: grid;
	place-items: center;
	overflow: hidden;
	cursor: default;
	scrollbar-gutter: auto;
}

.viewer-selection-empty {
	width: min(560px, calc(100% - 36px));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 56px 34px;
	color: #fff;
	background: rgba(19, 23, 24, .84);
	border: 1px solid rgba(255, 255, 255, .13);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
	text-align: center;
}

.viewer-selection-empty > span {
	width: 62px;
	height: 62px;
	display: grid;
	place-items: center;
	margin-bottom: 22px;
	color: #15191a;
	background: #d4b777;
}

.viewer-selection-empty svg {
	width: 27px;
	height: 27px;
	stroke-width: 1.7;
}

.viewer-selection-empty p {
	margin: 0 0 10px;
	color: #d4b777;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
}

.viewer-selection-empty strong {
	font-size: clamp(22px, 2.4vw, 34px);
	line-height: 1.35;
}

.viewer-selection-empty small {
	max-width: 410px;
	margin-top: 14px;
	color: rgba(255, 255, 255, .62);
	font-size: 15px;
	line-height: 1.75;
}

.viewer-media-mount img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
	box-shadow: 0 12px 42px rgba(0, 0, 0, .28);
	transform: translate3d(0, 0, 0) scale(.985);
	transform-origin: center;
}

.viewer-image-canvas {
	position: relative;
	min-width: 100%;
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	will-change: transform;
}

.viewer-image-canvas.is-tall {
	align-items: flex-start;
}

.viewer-image-canvas.is-awaiting-entry,
.viewer-video-canvas.is-awaiting-entry {
	visibility: hidden;
}

.viewer-image-canvas.is-entering-from-right,
.viewer-video-canvas.is-entering-from-right {
	animation: viewer-media-enter-right .36s cubic-bezier(.22, 1, .36, 1) both;
}

.viewer-image-canvas.is-entering-from-left,
.viewer-video-canvas.is-entering-from-left {
	animation: viewer-media-enter-left .36s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes viewer-media-enter-right {
	from { transform: translate3d(42px, 0, 0); }
	to { transform: translate3d(0, 0, 0); }
}

@keyframes viewer-media-enter-left {
	from { transform: translate3d(-42px, 0, 0); }
	to { transform: translate3d(0, 0, 0); }
}

.viewer-image-canvas img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: none;
	will-change: transform;
}

.viewer-media-mount.is-zoomed {
	cursor: grab;
}

.viewer-media-mount.is-interacting {
	cursor: grabbing;
	user-select: none;
}

.viewer-media-mount.is-animated-transform img {
	transition: transform .18s cubic-bezier(.16, 1, .3, 1);
}

.viewer-media-mount.is-video {
	overflow: hidden;
	cursor: grab;
}

.viewer-video-canvas {
	position: relative;
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	overflow: hidden;
	will-change: transform;
}

.viewer-media-mount video {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	display: block;
	object-fit: contain;
	box-shadow: none;
	will-change: transform;
}

.viewer-video-gesture-surface {
	position: absolute;
	inset: 0 0 58px;
	z-index: 2;
	touch-action: none;
	cursor: grab;
}

.viewer-media-mount.is-interacting .viewer-video-gesture-surface {
	cursor: grabbing;
}

.viewer-zoom-badge {
	position: absolute;
	top: 38px;
	left: 70px;
	z-index: 8;
	min-width: 62px;
	height: 36px;
	display: grid;
	place-items: center;
	padding: 0 12px;
	color: #fff;
	background: rgba(10, 12, 13, .82);
	border: 1px solid rgba(255, 255, 255, .16);
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	backdrop-filter: blur(8px);
}

.viewer-zoom-badge[hidden] {
	display: none;
}

.viewer-zoom-badge:hover {
	background: var(--red);
}

.case-viewer-window:fullscreen {
	width: 100%;
	height: 100%;
}

.viewer-media-mount img.is-ready,
.viewer-media-mount video.is-ready {
	visibility: visible;
}

.viewer-loader,
.viewer-error {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	background: rgba(30, 34, 35, .94);
	text-align: center;
	transition: opacity .22s ease, visibility .22s ease;
}

.viewer-loader {
	transition: none;
}

.viewer-loader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.viewer-loader > span {
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border: 3px solid rgba(255, 255, 255, .18);
	border-top-color: #d4b777;
	border-radius: 50%;
	animation: viewer-spin .8s linear infinite;
}

.viewer-loader strong,
.viewer-error strong {
	font-size: 17px;
}

.viewer-loader small,
.viewer-error span {
	margin-top: 7px;
	color: rgba(255, 255, 255, .58);
	font-size: 14px;
}

.viewer-error[hidden] {
	display: none;
}

.viewer-error > svg {
	width: 38px;
	height: 38px;
	margin-bottom: 15px;
	color: #d4b777;
}

.viewer-error button {
	margin-top: 18px;
	padding: 10px 14px;
	color: #fff;
	background: var(--red);
	border: 0;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
}

@keyframes viewer-spin {
	to { transform: rotate(360deg); }
}

.viewer-stage-arrow {
	position: absolute;
	top: 50%;
	z-index: 7;
	width: 44px;
	height: 64px;
	display: grid;
	place-items: center;
	padding: 0;
	color: #fff;
	background: rgba(10, 12, 13, .58);
	border: 1px solid rgba(255, 255, 255, .18);
	transform: translateY(-50%);
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}

.viewer-stage-arrow:hover {
	background: var(--red);
	transform: translateY(-50%) scale(1.04);
}

.viewer-stage-arrow:disabled {
	display: none;
}

.viewer-stage-arrow.is-prev {
	left: 12px;
}

.viewer-stage-arrow.is-next {
	right: 12px;
}

.viewer-stage-arrow svg {
	width: 27px;
	height: 27px;
}

.viewer-media-counter {
	position: absolute;
	right: 15px;
	bottom: 13px;
	z-index: 6;
	display: flex;
	align-items: baseline;
	gap: 5px;
	padding: 7px 9px;
	color: #fff;
	background: rgba(10, 12, 13, .64);
}

.viewer-media-counter strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
}

.viewer-media-counter span,
.viewer-media-counter em {
	color: rgba(255, 255, 255, .58);
	font-size: 14px;
	font-style: normal;
}

.viewer-case-info {
	min-width: 0;
	display: flex;
	flex-direction: column;
	padding: 30px 24px;
	color: #fff;
	background: #1b2021;
	border-top: 3px solid var(--viewer-accent);
}

.viewer-case-info > div {
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.viewer-case-info > div span {
	display: block;
	color: rgba(255, 255, 255, .55);
	font-size: 14px;
}

.viewer-case-info > div strong {
	display: block;
	margin-top: 7px;
	font-size: 21px;
	line-height: 1.35;
	word-break: break-word;
}

.viewer-info-button {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 112px;
	height: 44px;
	padding: 0 13px;
	color: #fff;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .18);
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
}

.viewer-info-button:disabled {
	opacity: .38;
	cursor: default;
}

.viewer-info-button svg {
	width: 18px;
	height: 18px;
}

.viewer-mobile-tray-toggle {
	display: none;
}

.viewer-case-info > p {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: clip;
	overflow-y: auto;
	margin: 22px 0;
	color: rgba(255, 255, 255, .72);
	font-size: 15px;
	line-height: 1.75;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
	word-break: break-all;
	overscroll-behavior: contain;
}

.viewer-case-info > span {
	margin-top: auto;
	padding-top: 16px;
	color: rgba(255, 255, 255, .52);
	border-top: 1px solid rgba(255, 255, 255, .16);
	font-size: 14px;
	line-height: 1.55;
}

.case-viewer.is-awaiting-case .viewer-case-info {
	background: #202627;
}

.case-viewer.is-awaiting-case .viewer-case-info > div strong {
	color: #d4b777;
}

.case-viewer.is-awaiting-case .viewer-media-counter {
	display: none;
}

.viewer-case-group.is-browser-target > header {
	box-shadow: inset 4px 0 0 #d4b777, inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.viewer-description-dialog {
	position: absolute;
	inset: 70px 0 0;
	z-index: 60;
	opacity: 0;
	visibility: hidden;
	transition: opacity .22s ease, visibility .22s ease;
}

.viewer-description-dialog[hidden] {
	display: none;
}

.viewer-description-dialog.is-open {
	opacity: 1;
	visibility: visible;
}

.viewer-description-backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	background: rgba(8, 11, 12, .72);
	border: 0;
	backdrop-filter: blur(5px);
	cursor: default;
}

.viewer-description-dialog > section {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(620px, calc(100% - 40px));
	max-height: calc(100% - 40px);
	display: grid;
	grid-template-rows: 74px minmax(0, 1fr);
	overflow: hidden;
	color: #fff;
	background: #1b2021;
	border-top: 4px solid var(--viewer-accent);
	box-shadow: 0 30px 80px rgba(0, 0, 0, .46);
	opacity: 0;
	transform: translate(-50%, calc(-50% + 24px));
	transition: opacity .24s ease, transform .32s cubic-bezier(.16, 1, .3, 1);
}

.viewer-description-dialog.is-open > section {
	opacity: 1;
	transform: translate(-50%, -50%);
}

.viewer-description-dialog > section > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.viewer-description-dialog > section > header > div {
	display: grid;
	gap: 3px;
}

.viewer-description-dialog > section > header span {
	color: #d4b777;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
}

.viewer-description-dialog > section > header strong {
	font-size: 18px;
}

.viewer-description-dialog > section > header button {
	width: 70px;
	height: 70px;
	display: grid;
	place-items: center;
	padding: 0;
	color: #fff;
	background: var(--red);
	border: 0;
	cursor: pointer;
}

.viewer-description-dialog > section > header svg {
	width: 23px;
	height: 23px;
}

.viewer-description-body {
	min-width: 0;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 28px 26px 34px;
	overscroll-behavior: contain;
}

.viewer-description-body > span {
	color: rgba(255, 255, 255, .55);
	font-size: 14px;
}

.viewer-description-body > strong {
	display: block;
	margin-top: 6px;
	font-size: 24px;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.viewer-description-body > p {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: clip;
	margin: 24px 0 0;
	padding-top: 22px;
	color: rgba(255, 255, 255, .76);
	border-top: 1px solid rgba(255, 255, 255, .16);
	font-size: 16px;
	line-height: 1.8;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
	word-break: break-all;
}

.viewer-guide {
	position: absolute;
	inset: 0;
	z-index: 90;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .09s linear, visibility 0s linear;
}

.viewer-guide[hidden] {
	display: none;
}

.viewer-guide.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.viewer-guide-spotlight {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, .035);
	border: 2px solid #d4b777;
	box-shadow: 0 0 0 200vmax rgba(7, 9, 10, .82), 0 0 0 6px rgba(212, 183, 119, .14);
	pointer-events: none;
	transition: left .36s cubic-bezier(.16, 1, .3, 1), top .36s cubic-bezier(.16, 1, .3, 1), width .36s cubic-bezier(.16, 1, .3, 1), height .36s cubic-bezier(.16, 1, .3, 1);
}

.viewer-guide-card {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: min(410px, calc(100% - 32px));
	display: grid;
	grid-template-rows: 58px auto 68px;
	overflow: hidden;
	color: var(--ink);
	background: #fff;
	border-top: 4px solid var(--red);
	box-shadow: 0 26px 74px rgba(0, 0, 0, .38);
	opacity: 0;
	transform: translateY(16px);
	transition: left .36s cubic-bezier(.16, 1, .3, 1), top .36s cubic-bezier(.16, 1, .3, 1), opacity .2s ease, transform .34s cubic-bezier(.16, 1, .3, 1);
}

.viewer-guide.is-open .viewer-guide-card {
	opacity: 1;
	transform: translateY(0);
}

.viewer-guide-card > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 20px;
	background: #f4f5f4;
	border-bottom: 1px solid #dfe3e2;
}

.viewer-guide-card > header > div {
	display: flex;
	align-items: center;
	gap: 12px;
}

.viewer-guide-card > header span {
	color: var(--red);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
}

.viewer-guide-card > header em {
	color: #767e80;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
}

.viewer-guide-card > header button {
	width: 56px;
	height: 54px;
	display: grid;
	place-items: center;
	padding: 0;
	color: #fff;
	background: #1b2021;
	border: 0;
	cursor: pointer;
}

.viewer-guide-card > header svg {
	width: 20px;
	height: 20px;
}

.viewer-guide-copy {
	padding: 25px 24px 23px;
}

.viewer-guide-copy > strong {
	display: block;
	font-size: 23px;
	line-height: 1.35;
	letter-spacing: 0;
}

.viewer-guide-copy > p {
	margin: 13px 0 0;
	color: #5f6769;
	font-size: 15px;
	line-height: 1.75;
	word-break: keep-all;
}

.viewer-guide-dots {
	display: flex;
	gap: 6px;
	margin-top: 22px;
}

.viewer-guide-dots i {
	width: 22px;
	height: 3px;
	background: #d8dcdb;
	transition: width .2s ease, background .2s ease;
}

.viewer-guide-dots i.is-active {
	width: 36px;
	background: var(--red);
}

.viewer-guide-card > footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 0 14px 0 20px;
	background: #f7f8f7;
	border-top: 1px solid #dfe3e2;
}

.viewer-guide-card > footer > div {
	display: flex;
	gap: 7px;
}

.viewer-guide-card > footer button {
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 0 14px;
	color: #253031;
	background: #fff;
	border: 1px solid #cfd5d3;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
}

.viewer-guide-card > footer button:disabled {
	opacity: .38;
	cursor: default;
}

.viewer-guide-card > footer button.is-primary {
	min-width: 88px;
	color: #fff;
	background: var(--red);
	border-color: var(--red);
}

.viewer-guide-card > footer button svg {
	width: 16px;
	height: 16px;
}

.viewer-guide-card > footer .viewer-guide-skip {
	padding: 0;
	color: #6b7375;
	background: transparent;
	border: 0;
	font-weight: 700;
}

.viewer-filmstrip-wrap {
	min-width: 0;
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr) 46px;
	align-items: center;
	gap: 10px;
	padding: 13px 15px;
	background: #1b2021;
	border-top: 3px solid var(--viewer-accent);
	transition: opacity .18s ease;
}

.viewer-filmstrip {
	min-width: 0;
	height: 114px;
	display: flex;
	align-items: stretch;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: auto;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
}

.viewer-filmstrip.is-grabbing {
	scroll-behavior: auto;
	cursor: grabbing;
}

.viewer-filmstrip::-webkit-scrollbar {
	display: none;
}

.viewer-filmstrip-empty {
	min-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: rgba(255, 255, 255, .52);
	border: 1px dashed rgba(255, 255, 255, .18);
	font-size: 14px;
}

.viewer-filmstrip-empty svg {
	width: 19px;
	height: 19px;
	color: #d4b777;
}

.filmstrip-arrow {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	padding: 0;
	color: #fff;
	background: #262c2d;
	border: 1px solid rgba(255, 255, 255, .16);
	cursor: pointer;
}

.filmstrip-arrow svg {
	width: 18px;
	height: 18px;
}

.filmstrip-item {
	position: relative;
	min-width: 142px;
	height: 102px;
	overflow: hidden;
	padding: 0;
	background: #2a3031;
	border: 3px solid transparent;
	cursor: pointer;
}

.filmstrip-item.is-active {
	border-color: var(--red);
}

.filmstrip-item > span {
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 2;
	min-width: 28px;
	height: 24px;
	display: grid;
	place-items: center;
	color: #fff;
	background: rgba(17, 19, 21, .78);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	font-weight: 700;
}

.filmstrip-item img,
.filmstrip-video-preview {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	-webkit-user-drag: none;
	user-select: none;
}

.filmstrip-video-preview {
	pointer-events: none;
	background: #25292a;
}

.filmstrip-video-badge {
	position: absolute;
	left: 8px;
	bottom: 7px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 5px 7px;
	color: #fff;
	background: rgba(180, 35, 24, .92);
	box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
}

.filmstrip-video-badge svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
}

.filmstrip-video-badge strong {
	font-size: 14px;
	line-height: 1;
}

@media (max-width: 1180px) {
	.case-card-grid {
		grid-template-columns: 1fr;
	}

	.case-card-grid.has-more {
		grid-template-columns: 1fr;
	}

	.case-library-more {
		min-height: 82px;
		justify-content: flex-start;
		flex-direction: row;
		padding: 0 24px;
	}

	.case-library-more svg {
		margin-left: auto;
	}

	.case-library-card {
		grid-template-columns: 300px minmax(0, 1fr);
	}

	.viewer-stage-wrap {
		grid-template-columns: minmax(0, 1fr) 230px;
	}
}

@media (max-width: 860px) {
	.case-viewer {
		--viewer-sidebar-width: min(84vw, 320px);
	}

	.example-hero {
		min-height: 720px;
		padding-bottom: 72px;
	}

	.example-hero-count {
		display: none;
	}

	.case-library-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.case-category-section > header {
		grid-template-columns: 64px minmax(0, 1fr);
	}

	.case-category-section > header > p {
		grid-column: 2;
	}

	.case-viewer {
		padding: 0;
	}

	.case-viewer-window {
		width: 100%;
		height: 100dvh;
		grid-template-rows: 66px minmax(0, 1fr);
	}

	.viewer-topbar {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.viewer-brand {
		display: none;
	}

	.viewer-current-title {
		padding: 0 16px;
	}

	.viewer-current-title span {
		display: none;
	}

	.viewer-layout,
	.case-viewer.sidebar-collapsed .viewer-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.viewer-sidebar {
		position: absolute;
		inset: 0 auto 0 0;
		z-index: 30;
		width: var(--viewer-sidebar-width);
		opacity: 1 !important;
		pointer-events: auto !important;
		transform: translateX(-105%);
		box-shadow: 18px 0 44px rgba(0, 0, 0, .24);
	}

	.case-viewer.sidebar-open .viewer-sidebar {
		transform: translateX(0);
	}

	.viewer-sidebar-toggle,
	.case-viewer.sidebar-collapsed .viewer-sidebar-toggle {
		top: 18px;
		left: 18px;
		width: 44px;
		height: 44px;
		justify-content: center;
		flex-direction: row;
		gap: 0;
		padding: 0;
		color: #fff;
		background: rgba(18, 22, 23, .88);
		border-color: rgba(255, 255, 255, .18);
		border-left: 1px solid rgba(255, 255, 255, .18);
		box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
		transform: none;
	}

	.viewer-sidebar-toggle svg,
	.case-viewer.sidebar-collapsed .viewer-sidebar-toggle svg {
		width: 20px;
		height: 20px;
		padding: 0;
		background: transparent;
		box-sizing: border-box;
	}

	.viewer-sidebar-toggle span,
	.case-viewer.sidebar-collapsed .viewer-sidebar-toggle span {
		display: none;
		writing-mode: horizontal-tb;
	}

	.case-viewer.sidebar-open .viewer-sidebar-toggle {
		top: 8px;
		left: calc(var(--viewer-sidebar-width) - 118px);
		width: 108px;
		height: 38px;
		justify-content: space-between;
		flex-direction: row;
		gap: 8px;
		padding: 0 8px 0 13px;
		color: #fff;
		background: #1d2425;
		border-color: #1d2425;
		border-left: 3px solid var(--red);
		box-shadow: 0 7px 18px rgba(0, 0, 0, .14);
		transform: none;
	}

	.case-viewer.sidebar-open .viewer-sidebar-toggle span {
		display: inline;
		writing-mode: horizontal-tb;
	}

	.viewer-sidebar-scrim {
		position: absolute;
		inset: 0;
		z-index: 25;
		display: block;
		background: rgba(10, 12, 13, .54);
		opacity: 0;
		visibility: hidden;
		transition: opacity .25s ease, visibility .25s ease;
	}

	.case-viewer.sidebar-open .viewer-sidebar-scrim {
		opacity: 1;
		visibility: visible;
	}

	.viewer-workspace {
		grid-template-rows: minmax(0, 1fr) 126px;
	}

	.viewer-stage-wrap {
		grid-template-columns: 1fr;
		grid-template-rows: minmax(0, 1fr) auto;
	}

	.viewer-case-info {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 12px;
		padding: 13px 16px;
		border-top-width: 2px;
	}

	.viewer-case-info > div {
		padding: 0;
		border: 0;
	}

	.viewer-case-info > div strong {
		margin-top: 2px;
		font-size: 16px;
	}

	.viewer-case-info > p {
		display: none;
	}

	.viewer-info-button {
		display: inline-flex;
	}

	.viewer-mobile-tray-toggle {
		width: 44px;
		height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		color: #fff;
		background: rgba(255, 255, 255, .08);
		border: 1px solid rgba(255, 255, 255, .18);
		cursor: pointer;
	}

	.viewer-mobile-tray-toggle span {
		display: none;
	}

	.viewer-mobile-tray-toggle svg {
		width: 20px;
		height: 20px;
	}

	.case-viewer.mobile-tray-collapsed .viewer-workspace {
		grid-template-rows: minmax(0, 1fr) 0;
	}

	.case-viewer.mobile-tray-collapsed .viewer-filmstrip-wrap {
		min-height: 0;
		overflow: hidden;
		padding-top: 0;
		padding-bottom: 0;
		border-top-width: 0;
		opacity: 0;
		pointer-events: none;
	}

	.case-viewer.mobile-tray-collapsed .viewer-case-info {
		grid-template-columns: minmax(0, 1fr) auto;
		min-height: 48px;
		padding-top: 6px;
		padding-bottom: 6px;
	}

	.case-viewer.mobile-tray-collapsed .viewer-case-info > div,
	.case-viewer.mobile-tray-collapsed .viewer-info-button,
	.case-viewer.mobile-tray-collapsed .viewer-case-info > span {
		display: none;
	}

	.case-viewer.mobile-tray-collapsed .viewer-mobile-tray-toggle {
		grid-column: 1 / -1;
		width: 100%;
		gap: 8px;
		border-color: transparent;
		background: transparent;
	}

	.case-viewer.mobile-tray-collapsed .viewer-mobile-tray-toggle span {
		display: inline;
		font-size: 14px;
		font-weight: 800;
	}

	.viewer-case-info > span {
		display: none;
	}

	.viewer-filmstrip-wrap {
		grid-template-columns: 36px minmax(0, 1fr) 36px;
		gap: 6px;
		padding: 9px;
		border-top-width: 2px;
	}

	.viewer-filmstrip {
		height: 104px;
	}

	.filmstrip-arrow {
		width: 34px;
		height: 40px;
	}

	.filmstrip-item {
		min-width: 126px;
		height: 94px;
	}

	.viewer-description-dialog {
		inset: 66px 0 0;
	}

	.viewer-description-dialog > section {
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		max-height: min(72dvh, 640px);
		transform: translateY(100%);
	}

	.viewer-description-dialog.is-open > section {
		transform: translateY(0);
	}

	.viewer-guide-card {
		width: min(390px, calc(100% - 24px));
	}
}

@media (max-width: 640px) {
	.example-hero {
		min-height: 700px;
		padding: calc(var(--header-height) + 62px) 20px 58px;
	}

	.example-hero-media {
		background-image: linear-gradient(90deg, rgba(9, 11, 12, .88), rgba(9, 11, 12, .45)), url("/images/main/main_12.png");
		background-position: 56% center;
	}

	.example-hero h1 {
		font-size: clamp(45px, 13vw, 60px);
		line-height: 1.12;
	}

	.example-hero-inner > p:nth-of-type(2) {
		font-size: 16px;
	}

	.example-hero-inner > p:nth-of-type(2) br {
		display: none;
	}

	.case-library {
		width: min(calc(100% - 36px), var(--max-width));
		padding: 78px 0 90px;
	}

	.case-library-heading {
		gap: 22px;
		padding-bottom: 30px;
	}

	.case-library-heading h2 {
		font-size: 34px;
	}

	.case-library-heading > p br {
		display: none;
	}

	.case-category-tabs {
		grid-template-columns: 1fr;
	}

	.case-category-tabs a {
		min-height: 92px;
		grid-template-columns: 30px minmax(0, 1fr) auto 20px;
		padding: 18px 15px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.case-category-section {
		padding-top: 72px;
	}

	.case-category-section > header {
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 14px;
		margin-bottom: 24px;
	}

	.case-category-section > header > div:first-child {
		width: 50px;
		height: 50px;
	}

	.case-category-section > header h2 {
		font-size: 27px;
	}

	.case-category-section > header > p {
		font-size: 15px;
	}

	.case-library-card {
		grid-template-columns: 1fr;
	}

	.case-card-image {
		min-height: 230px;
		aspect-ratio: 16 / 10;
	}

	.case-card-copy {
		min-height: 210px;
		padding: 23px 20px 20px;
	}

	.case-library-more {
		min-height: 76px;
		padding: 0 18px;
	}

	.case-card-open {
		opacity: 1;
		transform: none;
	}

	.example-cta {
		align-items: stretch;
		flex-direction: column;
		padding: 54px 20px;
	}

	.example-cta h2 {
		font-size: 30px;
	}

	.example-cta > a {
		justify-content: space-between;
	}

	.viewer-top-actions button {
		width: 52px;
	}

	.viewer-guide-spotlight {
		box-shadow: 0 0 0 200vmax rgba(7, 9, 10, .86), 0 0 0 5px rgba(212, 183, 119, .14);
	}

	.viewer-guide-card {
		width: calc(100% - 24px);
		max-height: calc(100% - 84px);
		grid-template-rows: 52px minmax(0, auto) 60px;
	}

	.viewer-guide-card > header {
		padding-left: 16px;
	}

	.viewer-guide-card > header > div {
		gap: 9px;
	}

	.viewer-guide-card > header button {
		width: 50px;
		height: 48px;
	}

	.viewer-guide-copy {
		overflow-y: auto;
		padding: 19px 18px 17px;
	}

	.viewer-guide-copy > strong {
		font-size: 20px;
	}

	.viewer-guide-copy > p {
		margin-top: 9px;
		font-size: 14px;
		line-height: 1.65;
	}

	.viewer-guide-dots {
		margin-top: 15px;
	}

	.viewer-guide-dots i {
		width: 16px;
	}

	.viewer-guide-dots i.is-active {
		width: 28px;
	}

	.viewer-guide-card > footer {
		justify-content: flex-end;
		padding: 0 10px;
	}

	.viewer-guide-card > footer .viewer-guide-skip {
		display: none;
	}

	.viewer-guide-card > footer button {
		height: 40px;
		padding: 0 12px;
	}

	.viewer-current-title {
		padding: 0 12px;
	}

	.viewer-current-title strong {
		font-size: 15px;
	}

	.viewer-workspace {
		grid-template-rows: minmax(0, 1fr) 112px;
	}

	.viewer-media-mount {
		inset: 16px 10px;
	}

	.viewer-selection-empty {
		width: calc(100% - 16px);
		padding: 34px 18px;
	}

	.viewer-selection-empty > span {
		width: 52px;
		height: 52px;
		margin-bottom: 17px;
	}

	.viewer-selection-empty small {
		font-size: 14px;
	}

	.viewer-zoom-badge {
		top: 18px;
		left: 70px;
		height: 44px;
	}

	.viewer-stage-arrow {
		top: auto;
		bottom: 10px;
		width: 42px;
		height: 42px;
		transform: none;
	}

	.viewer-stage-arrow:hover {
		transform: none;
	}

	.viewer-stage-arrow.is-prev {
		left: 10px;
	}

	.viewer-stage-arrow.is-next {
		right: 10px;
	}

	.viewer-media-counter {
		right: 50%;
		bottom: 11px;
		transform: translateX(50%);
	}

	.viewer-case-info {
		grid-template-columns: minmax(0, 1fr) auto auto;
		padding: 10px 12px;
	}

	.viewer-case-info > span {
		display: none;
	}

	.viewer-info-button {
		width: 46px;
		min-width: 46px;
		padding: 0;
	}

	.viewer-info-button span {
		display: none;
	}

	.viewer-description-dialog > section {
		grid-template-rows: 66px minmax(0, 1fr);
		max-height: min(76dvh, 600px);
	}

	.viewer-description-dialog > section > header {
		padding-left: 18px;
	}

	.viewer-description-dialog > section > header button {
		width: 62px;
		height: 62px;
	}

	.viewer-description-body {
		padding: 24px 20px 32px;
	}

	.viewer-description-body > strong {
		font-size: 21px;
	}

	.viewer-description-body > p {
		font-size: 15px;
	}

	.viewer-filmstrip-wrap {
		grid-template-columns: minmax(0, 1fr);
		padding: 8px;
	}

	.viewer-filmstrip {
		height: 96px;
	}

	.filmstrip-arrow {
		display: none;
	}

	.filmstrip-item {
		min-width: 116px;
		height: 88px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.example-hero-media,
	.viewer-loader > span,
	.viewer-image-canvas,
	.viewer-video-canvas,
	.viewer-intro-sweep,
	.viewer-intro-sweep > div,
	.case-viewer.is-open.is-entering .viewer-topbar,
	.case-viewer.is-open.is-entering .viewer-sidebar,
	.case-viewer.is-open.is-entering .viewer-stage-wrap,
	.case-viewer.is-open.is-entering .viewer-filmstrip-wrap {
		animation: none;
	}

	.case-viewer-window,
	.case-viewer-backdrop,
	.viewer-media-mount img,
	.viewer-media-mount video,
	.viewer-sidebar,
	.viewer-layout,
	.viewer-guide,
	.viewer-guide-card,
	.viewer-guide-spotlight {
		transition: none;
	}

	.example-motion-enabled .example-hero-inner > *,
	.example-motion-enabled [data-example-reveal] {
		clip-path: none;
		opacity: 1;
		transform: none;
		transition: none;
		animation: none;
	}

	.example-motion-enabled .example-cta[data-motion="fill"]::before {
		transform: scaleX(1);
		transition: none;
	}

	.example-motion-enabled .example-cta[data-motion="fill"] > * {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
