html.is-drawer-open, html.is-drawer-open body { overflow: hidden; }

@media (max-width: 1024px) {
	.container { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 640px) {
	.container { padding-left: 16px; padding-right: 16px; }
}

.site-header { position: relative; background: #fff; border-bottom: 1px solid var(--color-border); }
.home .site-header { background: transparent; border-bottom: none; }
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	padding-top: var(--space-2);
	padding-bottom: var(--space-2);
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo__mark {
	width: 68px;
	height: 68px;
	flex-shrink: 0;
}
.site-logo__mark svg { display: block; width: 100%; height: 100%; }
.site-logo__text {
	white-space: nowrap;
	font-family: var(--font-heavy);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: 0.02em;
}
.site-logo__text small {
	display: block;
	font-family: var(--font-book);
	font-weight: 400;
	font-size: 11px;
	color: var(--color-text-muted);
	letter-spacing: 0;
	margin-top: 2px;
}
.site-nav__list {
	display: flex; gap: var(--space-4);
	font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px;
}
.site-nav__list a { padding: var(--space-1) 0; border-bottom: 2px solid transparent; }
.site-nav__list a:hover,
.site-nav__list .current-menu-item a { border-bottom-color: var(--color-accent-pink); }
.site-nav__list .current-menu-item a[href*="#"] { border-bottom-color: transparent; }
.icon-btn {
	background: none; border: none; cursor: pointer;
	color: var(--color-text); padding: var(--space-1); display: flex;
}
.mobile-menu-toggle {
	display: none; align-items: center;
	background: none; border: none; cursor: pointer; padding: var(--space-1);
	color: var(--color-text);
}
.mobile-menu-toggle svg { width: 22px; height: auto; display: block; }
.nav-drawer-overlay {
	display: none;
	position: fixed;
	inset: 0;
	top: var(--drawer-top, 100px);
	background: rgba(2, 20, 27, 0.5);
	z-index: 60;
}
.nav-drawer-overlay.is-open { display: block; }
.site-nav__close { display: none; }
.site-header__actions { position: relative; display: flex; align-items: center; }
.site-header:has(.search-panel.is-open) { z-index: 61; }
.site-nav, .catalog-sidebar { overscroll-behavior: contain; }

@media (max-width: 1024px) {
	.site-header__inner { position: relative; gap: 8px; }
	.mobile-menu-toggle { display: flex; order: 1; margin-left: -8px; }
	.mobile-menu-toggle svg { width: 24px; }
	.site-logo { order: 2; margin: 0 auto; flex-shrink: 0; }
	.site-header__actions { order: 3; margin-right: -8px; }
	.site-nav {
		position: fixed;
		top: var(--drawer-top, 100px);
		bottom: 0;
		left: 0;
		width: 270px;
		max-width: 100%;
		padding: 44px 0 24px;
		overflow-y: auto;
		background: #fff;
		z-index: 65;
		transform: translateX(-100%);
		visibility: hidden;
		transition: transform 0.25s ease, visibility 0s linear 0.25s;
	}
	.site-nav.is-open { transform: none; visibility: visible; transition: transform 0.25s ease; }
	.site-header:has(.site-nav.is-open) { z-index: 61; }
	.site-nav__close {
		display: flex; position: absolute; top: 31px; right: 16px; padding: 0;
		background: none; border: none; cursor: pointer; color: var(--color-text);
	}
	.site-nav__close svg { width: 15px; height: 15px; }
	.site-nav__list { flex-direction: column; gap: 16px; font-size: 16px; line-height: 24px; }
	.site-nav__list li a {
		display: block; margin-left: 32px; padding: 12px 16px 12px 17px;
		border-left: 4px solid transparent; border-bottom: none;
	}
	.site-nav__list .current-menu-item a { border-left-color: #e20b6b; background: #fef3f8; font-family: var(--font-medium); }
	.site-nav__list .current-menu-item a[href*="#"] { border-left-color: transparent; background: none; font-family: var(--font-book); }
}

@media (max-width: 640px) {
	.site-logo__mark { width: 64px; height: 64px; }
	.site-nav__list li a { margin-left: 16px; }
}

@media (max-width: 374px) {
	.site-logo { gap: 8px; }
	.site-logo__mark { width: 52px; height: 52px; }
	.site-logo__text { font-size: 14px; }
	.site-logo__text small { font-size: 9px; }
}

.search-panel {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: var(--content-width);
	background: #f6fafb;
	z-index: 70;
	max-height: calc(100vh - 100%);
	overflow-y: auto;
}
.search-panel.is-open { display: block; }
#search-toggle[aria-expanded="true"] { color: #e20b6b; }
.search-panel__bar {
	display: flex;
	align-items: center;
	gap: 40px;
	padding-top: var(--space-3);
}
.search-panel__input-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	gap: var(--space-2);
	height: 48px;
	padding: 0 var(--space-3);
	background: #fff;
	border: 1px solid var(--color-accent-pink);
}
.search-panel__icon { display: flex; color: var(--color-text); }
.search-panel__icon svg { width: 20px; height: 20px; }
.search-panel__input-wrap input {
	flex: 1; min-width: 0; border: none; outline: none; background: none; color: var(--color-text);
	font-family: var(--font-book); font-weight: 400; font-size: 16px; line-height: 24px;
}
.search-panel__input-wrap input::placeholder { color: var(--color-text-muted); }
.search-panel__input-wrap input::-webkit-search-cancel-button { display: none; }
.search-panel__clear {
	background: none; border: none; padding: 0; cursor: pointer; color: var(--color-text);
	display: flex; align-items: center; justify-content: center;
}
.search-panel__clear svg { width: 20px; height: 20px; }
.search-panel__close {
	background: none; border: none; padding: 0; cursor: pointer; color: var(--color-text);
	white-space: nowrap; display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-book); font-weight: 400; font-size: 16px; line-height: 24px;
}
.search-panel__close svg { width: 16px; height: 16px; }
.search-panel__tabs { display: flex; gap: var(--space-2); padding-top: var(--space-2); }
.search-tab {
	flex-shrink: 0; background: #fff; border: none; border-radius: 0; padding: 12px var(--space-3);
	cursor: pointer; color: var(--color-text); white-space: nowrap;
	font-family: var(--font-book); font-weight: 400; font-size: 16px; line-height: 24px;
}
.search-tab.is-active { background: #f5eef5; color: #e20b6b; font-family: var(--font-medium); }
.search-panel__results { padding-top: var(--space-4); padding-bottom: var(--space-3); }
.search-panel__hint { color: var(--color-text-muted); font-family: var(--font-book); font-size: 16px; line-height: 24px; }
.search-panel__columns { display: grid; grid-template-columns: 1fr 1.05fr; gap: var(--space-6); align-items: start; }
.search-panel__columns--single { grid-template-columns: 1fr; }
.search-panel__col h3 { font-family: var(--font-medium); font-weight: 400; font-size: 24px; line-height: 32px; margin: 0 0 12px; }
.search-composer-card {
	display: flex; align-items: flex-start; gap: var(--space-2);
	padding: 12px; margin-bottom: 4px; background: #fff; color: var(--color-text);
}
.search-composer-card__photo { width: 116px; height: 99px; object-fit: cover; flex-shrink: 0; background: var(--color-bg-alt); }
.search-composer-card__photo--placeholder { background: linear-gradient(135deg, #d7dbe3, #eef0f3); }
.search-composer-card__info { display: flex; flex-direction: column; gap: 8px; }
.search-composer-card__info strong { font-family: var(--font-medium); font-weight: 400; font-size: 18px; line-height: 24px; }
.search-composer-card__info span { font-family: var(--font-book); font-weight: 400; font-size: 16px; line-height: 24px; }
.search-work-row {
	display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr) minmax(0, 0.7fr) auto auto;
	align-items: center; column-gap: var(--space-2);
	min-height: 56px; padding: 0 var(--space-3); margin-bottom: 4px; background: #fff; color: var(--color-text);
	font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px;
}
.search-work-row:hover { background: color-mix(in srgb, #e20b6b 4%, #fff); }
.search-work-row__title { font-family: var(--font-medium); }
.search-work-row__sub { display: none; }
.search-work-row__icon, .search-work-row__arrow { display: flex; }
.search-work-row__icon svg { width: 17px; height: 20px; }
.search-panel__more {
	display: inline-flex; align-items: center; gap: 12px; margin-top: 20px; color: #e20b6b;
	font-family: var(--font-medium); font-weight: 400; font-size: 16px; line-height: 24px;
}
.search-panel__more svg { width: 20px; height: 20px; stroke-width: 1.5; }
.search-panel-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(2, 20, 27, 0.5);
	z-index: 60;
}
.search-panel-overlay.is-open { display: block; }

@media (max-width: 1024px) {
	.search-panel__columns { grid-template-columns: 1fr; row-gap: 40px; }
}

@media (max-width: 640px) {
	.search-panel { height: calc(100vh - 100%); }
	.search-panel__bar { flex-direction: column-reverse; align-items: stretch; gap: 30px; }
	.search-panel__input-wrap { flex: none; }
	.search-panel__close { align-self: flex-end; font-size: 18px; }
	.search-panel__tabs { overflow-x: auto; scrollbar-width: none; }
	.search-panel__tabs::-webkit-scrollbar { display: none; }
	.search-panel__col h3 { font-size: 22px; }
	.search-work-row {
		grid-template-columns: minmax(0, 1fr) auto auto;
		grid-template-areas: "title icon arrow" "sub icon arrow";
		column-gap: var(--space-2); padding: 12px; margin-bottom: 8px;
	}
	.search-work-row__title { grid-area: title; font-size: 16px; }
	.search-work-row__meta { display: none; }
	.search-work-row__sub {
		grid-area: sub; display: flex; flex-wrap: wrap; column-gap: 6px;
		font-family: var(--font-book); font-size: 14px; line-height: 18px;
	}
	.search-work-row__sub span + span::before { content: '·'; margin-right: 6px; }
	.search-work-row__icon { grid-area: icon; }
	.search-work-row__icon svg { width: 28px; height: 33px; }
	.search-work-row__arrow { grid-area: arrow; }
}

.home-hero-wrap {
	background-color: #85b7d6;
	background-image:
		url('../img/hero-bg.webp'),
		url('../img/hero-bg.webp');
	background-position:
		calc(50% - 80px) -60px,
		center top;
	background-size:
		2000px auto,
		cover;
	background-repeat: no-repeat, no-repeat;
}
.hero { position: relative; overflow: hidden; }
.hero__inner {
	display: grid; grid-template-columns: 1fr 1fr; align-items: center;
	gap: var(--space-6); padding-top: var(--space-8); padding-bottom: var(--space-8); position: relative;
}
.hero__title {
	font-family: var(--font-accent); font-weight: 700;
	font-size: 64px; line-height: 1.0625; margin-bottom: var(--space-3);
}
.hero__title-sub { font-family: inherit; font-weight: 400; font-size: 1em; }
.hero__lead {
	font-family: var(--font-book); font-weight: 400;
	font-size: 18px; line-height: 24px; color: rgba(20, 24, 31, 0.75); max-width: 440px;
}
.hero__actions { display: flex; gap: var(--space-2); margin-top: var(--space-3); flex-wrap: wrap; }
.hero__media { aspect-ratio: 4 / 3; position: relative; }
.hero__badge { position: absolute; top: 20%; right: -10px; transform: translateY(-50%); z-index: 2; }
.support-badge { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.support-badge__label {
	font-family: var(--font-book); font-weight: 400;
	font-size: 18px; line-height: 24px; letter-spacing: 0;
	text-transform: lowercase; color: var(--color-text);
}
.support-badge__logo { display: block; }
.support-badge__logo-h { display: none; }
.support-badge__logo img { display: block; width: 110px; height: auto; margin-left: calc(-10px * 110 / 162); }
.hero__badge .support-badge__logo img { width: 95px; margin-left: calc(-10px * 95 / 162); }

@media (max-width: 1024px) {
	.home-hero-wrap {
		background-color: #86b8d6;
		background-image: url('../img/hero-bg-tablet.webp');
		background-size: 1726px auto;
		background-position: calc(50% + 36px) -123px;
		background-repeat: no-repeat;
	}
	.hero__inner { display: block; position: static; padding-top: 73px; padding-bottom: 93px; }
	.hero__content { max-width: 440px; }
	.hero__title { font-size: 48px; line-height: 51px; margin-bottom: 20px; }
	.hero__lead { font-size: 16px; line-height: 24px; max-width: 320px; color: var(--color-text); }
	.hero__actions { margin-top: 32px; gap: 24px; }
	.hero__media { position: absolute; top: 75px; right: 9px; aspect-ratio: auto; }
	.hero__badge { position: static; transform: none; }
	.hero__badge .support-badge__label { font-size: 15px; line-height: 20px; color: #fff; }
	.hero__badge .support-badge__logo img { width: 63px; margin-left: calc(-10px * 63 / 162); filter: invert(1); }
}

@media (max-width: 640px) {
	.home-hero-wrap {
		background-color: #93c5e2;
		background-image: url('../img/hero-bg-mobile.webp');
		background-size: 1488px auto;
		background-position: calc(50% - 231.5px) calc(100% + 289px);
	}
	.hero__inner { padding-top: 23px; padding-bottom: 98px; text-align: center; }
	.hero__content { max-width: none; }
	.hero__title { font-size: 35px; line-height: 40px; margin-bottom: 14px; }
	.hero__title br { display: none; }
	.hero__lead { max-width: 310px; margin: 0 auto; }
	.hero__actions { flex-direction: column; align-items: stretch; margin-top: 29px; gap: 16px; }
	.hero__actions .btn { justify-content: center; height: 48px; }
	.hero__actions .btn--outline {
		background: rgba(255, 255, 255, 0.8); color: #e20b6b;
		-webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
	}
	.hero__media { top: auto; bottom: 20px; right: 25px; }
	.hero__badge { text-align: left; }
	.hero__badge .support-badge__label { font-size: 12px; line-height: 16px; }
	.hero__badge .support-badge__logo { display: none; }
	.support-badge__logo-h { color: #fff; }
	.hero__badge .support-badge__logo-h { display: block; }
	.support-badge__logo-h svg { display: block; width: 85px; height: auto; margin-top: 4px; }
}

.btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 14px 24px; border-radius: 0;
	font-family: var(--font-book); font-weight: 400; font-size: 16px; line-height: 1;
	letter-spacing: 0; border: 2px solid transparent;
	cursor: pointer; transition: opacity 0.15s ease;
}
.btn:hover { opacity: 0.85; }
.btn--primary { background: var(--color-accent-pink); color: #fff; }
.btn--outline { background: transparent; border-color: var(--color-accent-pink); color: var(--color-text); }

.section { padding: var(--space-4) 0; }
.section--alt { background: var(--color-bg-alt); }
.section__head {
	display: flex; align-items: baseline; justify-content: space-between;
	margin-bottom: var(--space-4); flex-wrap: wrap; gap: var(--space-2);
}
.section__head h2 { font-family: var(--font-medium); font-weight: 400; font-size: 24px; line-height: 32px; }
.link-arrow {
	display: inline-flex; align-items: center; gap: 6px; color: var(--color-text); white-space: nowrap;
	font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px;
}
.empty-note { color: var(--color-text-muted); font-style: italic; }
.eyebrow {
	display: block; margin-bottom: var(--space-1); color: var(--color-text-muted);
	font-family: var(--font-medium); font-weight: 400; font-size: 24px; line-height: 32px;
}

@media (max-width: 1024px) {
	.section { padding: 40px 0; }
	.section__head { margin-bottom: 16px; }
	.link-arrow { font-size: 16px; }
}

@media (max-width: 640px) {
	.section { padding: 32px 0; }
	.section__head { flex-wrap: nowrap; align-items: baseline; margin-bottom: 16px; }
	.section__head h2 { font-size: 22px; line-height: 28px; }
	.link-arrow__extra { display: none; }
}

.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-2); }
.category-tile {
	background: var(--color-bg-alt); border-radius: var(--radius-sm);
	padding: 20px 12px; display: flex; flex-direction: column;
	align-items: center; text-align: center; aspect-ratio: 1 / 1;
	transition: background 0.15s ease, color 0.15s ease;
}
.category-tile:hover { background: var(--cat-color, #3f51b5); color: var(--cat-text, #fff); }
.category-tile__icon {
	flex: 1; min-height: 0; width: 100%;
	display: flex; align-items: center; justify-content: center;
}
.category-tile__icon svg { display: block; width: 100%; height: 100%; max-width: 130px; max-height: 130px; fill: currentColor; }
.category-tile__label {
	flex-shrink: 0; padding-top: 12px; text-align: center;
	font-family: var(--font-medium); font-weight: 400; font-size: 18px; line-height: 24px;
}

@media (max-width: 1024px) {
	.category-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; }
	.category-tile {
		aspect-ratio: auto; height: 140px; padding: 24px 4px 14px; border-radius: 0;
		border-bottom: 4px solid var(--cat-color, #3f51b5);
	}
	.category-tile__icon svg { max-width: 64px; max-height: 64px; }
	.category-tile__label { font-family: var(--font-book); font-size: 16px; line-height: 20px; padding-top: 12px; }
}

@media (max-width: 640px) {
	.category-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
	.category-tile { height: 138px; }
}

.composer-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-2); }
.composer-card { display: flex; flex-direction: column; background: #fff; box-shadow: 0 0 8px rgba(6, 50, 59, 0.08); }
.composer-card__photo { aspect-ratio: 180 / 190; overflow: hidden; background: var(--color-bg-alt); }
.composer-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.composer-card__photo-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #d7dbe3, #eef0f3); }
.composer-card__name { font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px; padding: 12px 8px; }

@media (max-width: 1024px) {
	.composer-card__name { font-size: 16px; line-height: 20px; padding: 12px 8px; }
}

.carousel-dots { display: none; }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.work-card {
	position: relative; display: flex; flex-direction: column;
	background: var(--color-bg-alt); border-bottom: 4px solid #3f51b5;
	box-shadow: 0 0 8px rgba(6, 50, 59, 0.06);
}
.work-card__badge {
	position: absolute; top: 19px; left: 16px; z-index: 1;
	background: #3f51b5; color: #fff; padding: 3px 12px;
	font-family: var(--font-book); font-weight: 400; font-size: 14px; line-height: 16px;
}
.work-card__preview { aspect-ratio: 250 / 241; background: #fff; margin: 19px 16px 0; overflow: hidden; }
.work-card__preview img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.work-card__preview-placeholder { width: 100%; height: 100%; background: repeating-linear-gradient(45deg, #eef0f3, #eef0f3 10px, #f7f8fa 10px, #f7f8fa 20px); }
.work-card__body { padding: 13px 16px 0; display: flex; flex-direction: column; gap: 4px; }
.work-card__title { font-family: var(--font-medium); font-weight: 400; font-size: 18px; line-height: 24px; }
.work-card__composer { font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px; }
.work-card__footer {
	margin-top: auto; padding: 22px 16px 14px; display: flex; align-items: center; justify-content: space-between;
	font-family: var(--font-book); font-weight: 400; font-size: 12px; line-height: 16px; color: var(--color-text);
}
.work-card__footer svg { width: 20px; height: 20px; }

@media (max-width: 1024px) {
	.composer-grid[data-carousel] { grid-template-columns: repeat(4, 1fr); gap: 16px; }
	.composer-grid[data-carousel] .composer-card:nth-child(n+5) { display: none; }
	[data-carousel] .composer-card__photo { aspect-ratio: 164 / 152; }
	.work-grid[data-carousel] { grid-template-columns: repeat(4, 1fr); gap: 16px; }
	.work-card__badge { top: 8px; left: 8px; }
	.work-card__preview { margin: 8px 8px 0; }
	.work-card__body { padding: 13px 10px 0; }
	.work-card__title { font-size: 18px; }
	.work-card__composer { font-size: 16px; }
	.work-card__footer { padding: 0 8px 12px; margin-top: 18px; }
}

@media (max-width: 640px) {
	.composer-grid[data-carousel], .work-grid[data-carousel] {
		display: grid; grid-auto-flow: column; grid-template-columns: none;
		overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
		margin: 0 -16px; padding: 4px 16px 8px; scroll-padding: 0 16px;
	}
	[data-carousel]::-webkit-scrollbar { display: none; }
	.composer-grid[data-carousel] { grid-auto-columns: 148px; gap: 8px; }
	.composer-grid[data-carousel] .composer-card:nth-child(n+5) { display: flex; }
	.work-grid[data-carousel] { grid-auto-columns: 164px; gap: 15px; }
	[data-carousel] > * { scroll-snap-align: start; }
	[data-carousel] .composer-card__photo { aspect-ratio: 1 / 1; }
	[data-carousel] .composer-card__name { font-size: 14px; line-height: 20px; padding: 12px 8px 8px; }
	.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
	.carousel-dots span { width: 8px; height: 8px; border-radius: 50%; background: #fbd5e6; }
	.carousel-dots span.is-active { background: #e20b6b; }
}

.about__badge { position: absolute; top: 55%; right: 20px; z-index: 2; }
.about__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-6); align-items: center; position: relative; }
.about__text h2 { font-family: var(--font-accent); font-weight: 700; font-size: 64px; line-height: 1.0625; }
.about__text p {
	font-family: var(--font-medium); font-weight: 400;
	font-size: 18px; line-height: 24px;
}
.about__text strong { font-family: var(--font-medium); font-weight: 400; }
.about__media { aspect-ratio: 4 / 3; position: relative; }
#about {
	background: var(--color-bg-alt) url('../img/about-bg.webp') center right / cover no-repeat;
}

@media (max-width: 1024px) {
	#about {
		background-image: url('../img/about-bg-portrait.webp');
		background-size: 1037px auto;
		background-position: calc(50% + 66px) -173px;
	}
	.about__inner { display: block; position: relative; }
	.about__text { max-width: 420px; padding-left: 8px; }
	.about__text h2 { font-size: 48px; line-height: 51px; margin-bottom: 36px; }
	.about__text p { font-family: var(--font-book); font-size: 16px; line-height: 24px; margin-bottom: 24px; }
	.about__media { position: absolute; right: 32px; bottom: 0; aspect-ratio: auto; }
	.about__badge { position: static; }
	.about__badge .support-badge__label { font-size: 15px; line-height: 20px; }
	.about__badge .support-badge__logo img { width: 63px; margin-left: calc(-10px * 63 / 162); }
}

@media (max-width: 640px) {
	#about {
		background-color: #eef2f4;
		background-image: url('../img/about-bg-mobile.webp');
		background-size: 185px auto;
		background-position: right top;
	}
	.about__text { padding-left: 0; }
	.about__text .eyebrow { font-size: 18px; line-height: 24px; }
	.about__text h2 { font-size: 36px; line-height: 40px; margin-bottom: 16px; }
	.about__media { position: static; margin-top: 32px; }
}

.site-logo--footer .site-logo__mark { width: 64px; height: 64px; }
.site-logo--footer .site-logo__text { color: #fff; }
.site-logo--footer .site-logo__text small { color: rgba(255,255,255,0.65); }
.site-footer { background: var(--color-footer-bg); color: #fff; padding-top: var(--space-3); }
.site-footer__inner {
	display: grid;
	grid-template-columns: 260px 1fr auto;
	grid-template-areas:
		"logo nav    social"
		"logo partners copy";
	column-gap: var(--space-4);
	row-gap: 5px;
	padding-bottom: var(--space-2);
}
.site-logo--footer { grid-area: logo; align-self: start; }
.site-footer__nav { grid-area: nav; align-self: center; }
.site-footer__social { grid-area: social; align-self: center; justify-self: end; display: flex; gap: var(--space-2); align-items: center; }
.site-footer__partners { grid-area: partners; align-self: center; display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.site-footer__copy { grid-area: copy; align-self: center; justify-self: end; }
.site-footer__links { display: flex; gap: 40px; flex-wrap: wrap; font-family: var(--font-book); font-size: 18px; line-height: 24px; }
.site-footer__links a { white-space: nowrap; }
.site-footer__links a:hover { opacity: 0.8; }
.site-footer__social a {
	color: #fff; display: flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; opacity: 0.9;
}
.site-footer__social a:hover { opacity: 1; }
.site-footer__social a svg { width: 20px; height: 20px; }
.site-footer__partner { display: flex; align-items: center; opacity: 0.9; }
.site-footer__partner img { display: block; height: 29px; width: auto; }
.site-footer__copy { font-family: var(--font-book); font-size: 18px; line-height: 24px; white-space: nowrap; }

@media (max-width: 1024px) {
	.site-footer { padding-top: 40px; }
	.site-footer__inner {
		grid-template-columns: auto 1fr auto;
		grid-template-areas:
			"logo nav nav"
			"partners partners social"
			"copy copy copy";
		column-gap: 32px;
		row-gap: 0;
		padding-bottom: 45px;
	}
	.site-logo--footer .site-logo__mark { width: 76px; height: 76px; }
	.site-logo--footer .site-logo__text { font-size: 18px; }
	.site-footer__nav { align-self: start; justify-self: end; margin-top: 8px; }
	.site-footer__links {
		display: grid; grid-auto-flow: column; grid-template-rows: auto auto;
		column-gap: 107px; row-gap: 8px; font-size: 16px;
	}
	.site-footer__partners { margin-top: 40px; gap: 32px; flex-wrap: nowrap; }
	.site-footer__partner img { height: 33px; }
	.site-footer__social { margin-top: 40px; gap: 17px; }
	.site-footer__social a { width: auto; height: auto; }
	.site-footer__social a svg { width: auto; height: 24px; }
	.site-footer__copy { justify-self: center; margin-top: 35px; font-size: 14px; }
}

@media (max-width: 640px) {
	.site-footer { padding-top: 24px; }
	.site-footer__inner { row-gap: 0; padding-bottom: 27px; }
	.site-logo--footer { gap: 3px; }
	.site-logo--footer .site-logo__mark { width: 44px; height: 44px; }
	.site-logo--footer .site-logo__text { font-size: 10.3px; }
	.site-logo--footer .site-logo__text small { font-size: 6.5px; margin-top: 1px; }
	.site-footer__nav { margin-top: 2px; }
	.site-footer__inner { grid-template-columns: auto 1fr; grid-template-areas: none; column-gap: 28px; }
	.site-logo--footer { grid-column: 1; grid-row: 1; }
	.site-footer__nav { grid-column: 2; grid-row: 1; }
	.site-footer__links { column-gap: 28px; font-size: 14px; }
	.site-footer__partners {
		grid-column: 1 / -1; grid-row: 2 / 4;
		flex-wrap: wrap; justify-content: space-between; gap: 17px 0;
	}
	.site-footer__partner:nth-child(4) { flex-basis: 100%; }
	.site-footer__social {
		grid-column: 2; grid-row: 2 / 4; align-self: end; justify-self: end;
		margin: 0 0 5px; position: relative; z-index: 1;
	}
	.site-footer__copy { grid-column: 1 / -1; grid-row: 4; margin-top: 44px; font-size: 12px; }
}

@media (max-width: 374px) {
	.site-footer__inner { grid-template-columns: 1fr auto; }
	.site-logo--footer { grid-column: 1 / -1; }
	.site-footer__nav { grid-column: 1 / -1; grid-row: 2; justify-self: start; margin-top: 24px; }
	.site-footer__partners { grid-row: 3 / 5; margin-top: 32px; }
	.site-footer__social { grid-row: 3 / 5; }
	.site-footer__copy { grid-row: 5; }
}

.catalog-breadcrumb {
	padding-top: var(--space-3); color: var(--color-text);
	font-family: var(--font-book); font-weight: 400; font-size: 12px; line-height: 24px;
}
.catalog-breadcrumb a:hover { color: #e20b6b; }
.catalog-breadcrumb span { color: #e20b6b; }
body.post-type-archive-work { background: #f6fafb; }
body.post-type-archive-work #main { display: flex; flex-direction: column; }
body.post-type-archive-work .catalog-layout { flex: 1 0 auto; }
.catalog-layout { display: grid; grid-template-columns: 384px minmax(0, 1fr); gap: 24px; align-items: stretch; }
.catalog-main { padding: 31px 0 32px; }
.catalog-main .catalog-breadcrumb { padding-top: 0; margin-bottom: 10px; }
.catalog-sidebar { background: #fff; padding: 18px 0 40px; }
.catalog-sidebar__head { display: flex; align-items: center; justify-content: space-between; padding: 0 16px; margin-bottom: 18px; }
.catalog-sidebar__head h2 { font-family: var(--font-medium); font-weight: 400; font-size: 24px; line-height: 32px; margin: 0; }
.catalog-sidebar__reset {
	display: inline-flex; align-items: center; gap: 6px; color: #3f51b5;
	font-family: var(--font-book); font-weight: 400; font-size: 12px; line-height: 16px;
}
.catalog-sidebar__reset svg { width: 8px; height: 8px; }
.catalog-sidebar__close { display: none; padding: 0; background: none; border: none; cursor: pointer; color: var(--color-text); }
.catalog-sidebar__close svg { width: 15px; height: 15px; }
.catalog-filter-group__head {
	display: flex; align-items: center; justify-content: space-between; gap: var(--space-1);
	height: 48px; padding: 0 14px 0 16px; color: var(--color-text);
}
.catalog-filter-group__head:hover {
	background: #fef3f8;
	background: color-mix(in srgb, var(--cat-color, #e20b6b) 10%, #fff);
}
.catalog-filter-group__label {
	display: flex; align-items: center; gap: 14px;
	font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px;
}
.catalog-filter-group__label svg { width: 18px; height: 18px; flex-shrink: 0; fill: currentColor; }
.catalog-filter-group__meta { display: flex; align-items: center; gap: 15px; }
.catalog-filter-group__count { font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px; }
.catalog-filter-group__chevron { display: flex; transition: transform 0.15s ease; }
.catalog-filter-group__chevron svg { width: 12px; height: 12px; }
.catalog-filter-group--open .catalog-filter-group__chevron { transform: rotate(180deg); }
.catalog-filter-group--open > .catalog-filter-group__head { background: var(--cat-color, #e20b6b); color: var(--cat-text, #fff); }
.catalog-filter-sub {
	background: #fef3f9;
	background: color-mix(in srgb, var(--cat-color, #e20b6b) 6%, #fff);
	padding: 4px 0;
}
.catalog-filter-sub li a {
	display: flex; align-items: center; justify-content: space-between;
	height: 32px; padding: 0 40px 0 64px; color: var(--color-text);
}
.catalog-filter-sub__label {
	display: flex; align-items: center; gap: 16px;
	font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px;
}
.catalog-filter-sub__count { font-family: var(--font-book); font-size: 18px; line-height: 24px; }
.radio-dot { width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--cat-color, #e20b6b); flex-shrink: 0; position: relative; background: #fff; }
.is-selected .radio-dot::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--cat-color, #e20b6b); }
.catalog-main__head { display: flex; flex-direction: column; margin-bottom: 16px; }
.catalog-main__head h1 { font-family: var(--font-medium); font-weight: 400; font-size: 24px; line-height: 32px; margin: 0; }
.catalog-main__controls {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2) var(--space-3);
	color: var(--color-text);
	font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px;
}
.catalog-count { font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px; }
.catalog-sort { position: relative; display: flex; align-items: center; gap: var(--space-2); font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px; }
.catalog-sort__button { display: none; }
.catalog-sort select {
	-webkit-appearance: none; appearance: none;
	height: 48px; min-width: 212px; padding: 0 60px 0 24px;
	border: 1px solid var(--color-accent-pink); border-radius: 0; cursor: pointer;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4.5l4 3.5 4-3.5' fill='none' stroke='%23171717' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 22px center / 12px 12px;
	font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px; color: var(--color-text);
}
.catalog-sort option:checked { color: #e20b6b; background: color-mix(in srgb, #e20b6b 6%, #fff); }
.catalog-filter-toggle {
	display: none; align-items: center; justify-content: center; gap: 12px;
	height: 48px; padding: 0 24px; cursor: pointer;
	background: #f5eef5; border: 1px solid #e20b6b; border-radius: 0; color: var(--color-text);
	font-family: var(--font-book); font-weight: 400; font-size: 16px; line-height: 24px;
}
.catalog-filter-toggle svg { width: 21px; height: 20px; }
.catalog-sidebar-overlay {
	display: none;
	position: fixed;
	inset: 0;
	top: var(--drawer-top, 0px);
	background: rgba(2, 20, 27, 0.5);
	z-index: 40;
}
.catalog-sidebar-overlay.is-open { display: block; }
.work-row {
	display: grid; grid-template-columns: minmax(0, 283fr) minmax(0, 187fr) minmax(0, 123fr) minmax(0, 113fr) auto auto;
	align-items: center; min-height: 56px; padding: 0 24px; margin-bottom: 4px; background: #fff; color: var(--color-text);
	font-family: var(--font-medium); font-weight: 400; font-size: 18px; line-height: 32px;
}
.work-row:hover { background: color-mix(in srgb, #e20b6b 4%, #fff); }
.work-row__title { font-weight: 400; }
.work-row__icon, .work-row__arrow { display: flex; }
.work-row__icon { margin-right: 12px; }
.work-row__icon svg { width: 17px; height: 20px; }
.work-row--search { grid-template-columns: 1fr auto; }
.catalog-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 25px; }
.catalog-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center; min-width: 28px; height: 28px; border-radius: 0;
	font-family: var(--font-book); font-weight: 400; font-size: 16px; line-height: 1; color: var(--color-text);
}
.catalog-pagination .page-numbers.current { background: #e20b6b; color: #fff; }
.catalog-pagination .page-numbers.dots { color: var(--color-text-muted); }
[data-ajax-catalog].is-loading { opacity: 0.5; pointer-events: none; transition: opacity 0.15s ease; }

@media (max-width: 1024px) {
	.catalog-layout { display: block; }
	.catalog-main { padding: 30px 0 40px; }
	.catalog-main__controls { flex-wrap: nowrap; gap: 8px; }
	.catalog-count { margin-right: auto; }
	.catalog-sort select { min-width: 185px; padding: 0 48px 0 24px; font-size: 16px; }
	.catalog-filter-toggle { display: inline-flex; }
	.catalog-sidebar {
		position: fixed; top: var(--drawer-top, 0px); bottom: 0; left: 0;
		width: 400px; max-width: 100%; z-index: 50; overflow-y: auto;
		display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto 1fr;
		align-content: start; padding: 26px 0 32px;
		transform: translateX(-100%); visibility: hidden;
		transition: transform 0.25s ease, visibility 0s linear 0.25s;
	}
	.catalog-sidebar.is-open { transform: none; visibility: visible; transition: transform 0.25s ease; }
	.catalog-sidebar__head { display: contents; }
	.catalog-sidebar__head h2 { grid-column: 1; grid-row: 1; padding: 0 0 18px 32px; }
	.catalog-sidebar__close { display: flex; grid-column: 2; grid-row: 1; align-self: start; margin: 8px 16px 0 0; }
	.catalog-filter-list { grid-column: 1 / -1; grid-row: 2; }
	.catalog-sidebar__reset { grid-column: 1 / -1; grid-row: 3; align-self: end; justify-self: start; margin: 40px 0 0 32px; font-size: 14px; }
	.catalog-filter-group__head { padding: 0 17px 0 32px; }
	.catalog-filter-sub li a { padding: 0 48px 0 81px; }
	.work-row {
		grid-template-columns: minmax(0, 216fr) minmax(0, 160fr) minmax(0, 130fr) minmax(0, 114fr) auto auto;
		font-size: 16px;
	}
	.work-row__composer, .work-row__genre, .work-row__type { font-family: var(--font-book); }
}

@media (max-width: 640px) {
	.catalog-main { padding: 24px 0 40px; }
	.catalog-main__head h1 { font-size: 22px; line-height: 28px; }
	.catalog-count { flex-basis: 100%; font-size: 16px; }
	.catalog-main__controls { flex-wrap: wrap; column-gap: 12px; row-gap: 16px; }
	.catalog-sort { flex: 1 1 0; height: 48px; justify-content: center; border: 1px solid #e20b6b; background: #fff; }
	.catalog-sort__label { display: none; }
	.catalog-sort__button { display: inline-flex; align-items: center; gap: 12px; font-size: 16px; }
	.catalog-sort__button svg:first-child { width: 20px; height: 15px; }
	.catalog-sort__button svg:last-child { width: 12px; height: 12px; margin-left: 12px; }
	.catalog-sort select { position: absolute; inset: 0; width: 100%; height: 100%; min-width: 0; opacity: 0; }
	.catalog-filter-toggle { width: 143px; padding: 0 12px; }
	.catalog-sidebar { width: 100%; }
	.catalog-sidebar__head h2 { padding-left: 16px; font-size: 22px; }
	.catalog-sidebar__reset { margin-left: 16px; }
	.catalog-filter-group__head { padding: 0 17px 0 16px; }
	.catalog-filter-sub li a { padding: 0 48px 0 64px; }
	.work-row {
		grid-template-columns: auto auto minmax(0, 1fr) auto auto;
		grid-template-areas: "title title title icon arrow" "composer genre type icon arrow";
		min-height: 66px; padding: 12px; margin-bottom: 8px; line-height: 24px;
	}
	.work-row__title { grid-area: title; font-size: 16px; }
	.work-row__composer { grid-area: composer; }
	.work-row__genre { grid-area: genre; }
	.work-row__type { grid-area: type; }
	.work-row__composer, .work-row__genre, .work-row__type { font-size: 14px; line-height: 18px; white-space: nowrap; }
	.work-row__genre::before, .work-row__type::before { content: '·'; margin: 0 8px; }
	.work-row__icon { grid-area: icon; margin-right: 29px; }
	.work-row__icon svg { width: 28px; height: 33px; }
	.work-row__arrow { grid-area: arrow; }
}

body.post-type-archive-composer { background: #f6fafb; }
.composers-archive { padding: var(--space-2) 0 var(--space-8); }
.composer-grid--archive { grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.composer-grid--archive .composer-card { gap: 0; background: #fff; box-shadow: 0 0 8px rgba(6, 50, 59, 0.08); }
.composer-grid--archive .composer-card__photo { aspect-ratio: 282 / 192; border-radius: 0; }
.composer-grid--archive .composer-card__name { padding: 12px 8px; }

@media (max-width: 1024px) {
	.composer-grid--archive { grid-template-columns: repeat(4, 1fr); gap: 24px 16px; }
	.composer-grid--archive .composer-card__photo { aspect-ratio: 164 / 176; }
}

@media (max-width: 640px) {
	.composer-grid--archive { grid-template-columns: repeat(2, 1fr); gap: 16px 14px; }
	.composer-grid--archive .composer-card__photo { aspect-ratio: 165 / 176; }
}

body.single-composer { background: #f6fafb; }
.composer-hero { display: grid; grid-template-columns: 384px 1fr; gap: 30px; padding-top: 32px; padding-bottom: 40px; align-items: start; }
.composer-hero__photo { overflow: hidden; aspect-ratio: 384 / 500; background: var(--color-bg-alt); }
.composer-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.composer-hero__photo-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #d7dbe3, #eef0f3); }
.composer-hero__info h1 { font-family: var(--font-medium); font-weight: 400; font-size: 32px; line-height: 40px; margin-bottom: 0; }
.composer-hero__specialty {
	font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px;
	color: var(--color-text); margin-bottom: var(--space-3);
}
.composer-hero__bio { font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px; }
.composer-hero__bio p { margin-bottom: 10px; line-height: 24px; }
.composer-hero__more {
	display: none; align-items: center; gap: 16px; margin-top: 14px; padding: 0;
	background: none; border: none; cursor: pointer; color: #e20b6b;
	font-family: var(--font-book); font-weight: 400; font-size: 16px; line-height: 24px;
}
.composer-hero__more span { text-decoration: underline; text-underline-offset: 3px; }
.composer-hero__more svg { width: 20px; height: 20px; stroke-width: 1.5; }
.composer-hero__more.is-visible { display: inline-flex; }
.composer-works { padding: 0 0 64px; }
.composer-works__head { display: flex; flex-direction: column; margin-bottom: 16px; }
.composer-works__head h2 { font-family: var(--font-medium); font-weight: 400; font-size: 24px; line-height: 32px; margin: 0; }
.work-item { background: #fff; margin-bottom: 4px; }
.work-item__head {
	width: 100%; display: grid;
	grid-template-columns: minmax(0, 588fr) minmax(0, 155fr) minmax(0, 149fr) minmax(0, 254fr) auto;
	align-items: center; min-height: 56px; padding: 0 24px;
	background: none; border: none; cursor: pointer; text-align: left; color: var(--color-text);
	font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px;
}
.work-item__title { font-family: var(--font-medium); font-weight: 400; }
.work-item__meta { font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px; color: var(--color-text); }
.work-item__chevron { display: flex; justify-content: flex-end; color: var(--color-text); transition: transform 0.15s ease; }
.work-item__chevron svg { width: 12px; height: 12px; }
.work-item.is-open .work-item__chevron { transform: rotate(180deg); }
.work-item__body { display: none; grid-template-columns: 1fr 1.4fr; gap: var(--space-4); padding: 8px 24px 32px; }
.work-item.is-open .work-item__body { display: grid; }
.work-item__description h3 { font-family: var(--font-medium); font-weight: 400; font-size: 18px; line-height: 24px; margin-bottom: 12px; }
.work-item__description p {
	font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px;
	color: var(--color-text); margin-bottom: 10px;
}
.work-item__pdf-actions { display: flex; gap: var(--space-1); flex-wrap: wrap; margin-top: 32px; }
.work-item__pdf-actions .btn--outline {
	height: 48px; gap: 16px; border-width: 1px;
	border-color: var(--color-accent-pink);
	color: var(--color-accent-pink);
}
.work-item__pdf-actions .btn--outline svg { width: 17px; height: 20px; }
.work-item__video {
	position: relative; aspect-ratio: 16 / 9;
	overflow: hidden; background: linear-gradient(135deg, #cfd6e0, #eef0f3);
	margin-top: 32px;
}
.work-item__video iframe { width: 100%; height: 100%; border: 0; }
.work-item__media { position: relative; }
.work-item__pdf-viewer { background: none; }
.work-item__pdf-canvas { display: block; width: 100%; height: auto; background: #fff; box-shadow: 0 0 8px rgba(6, 50, 59, 0.1); }
.work-item__pdf-controls {
	display: flex; align-items: center; justify-content: center; gap: 6px; padding-top: 24px;
}
.work-item__pdf-controls button {
	background: none; border: none; width: 28px; height: 28px; cursor: pointer;
	font-size: 20px; line-height: 1; color: var(--color-text);
}
.work-item__pdf-controls button:disabled { opacity: 0.3; cursor: default; }
.work-item__pdf-pages { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pdf-page-num {
	min-width: 28px; height: 28px; border: none; border-radius: 0; background: none;
	color: var(--color-text); cursor: pointer;
	font-family: var(--font-book); font-weight: 400; font-size: 16px; line-height: 1;
}
.pdf-page-num.is-active { background: #e20b6b; color: #fff; }

@media (max-width: 1024px) {
	.composer-hero { grid-template-columns: 224px 1fr; gap: 16px; padding-top: 30px; padding-bottom: 40px; }
	.composer-hero__photo { aspect-ratio: 224 / 288; }
	.composer-hero__info h1 { font-size: 28px; line-height: 36px; }
	.composer-hero__specialty { font-size: 16px; margin-bottom: 24px; }
	.composer-hero__bio { font-size: 16px; line-height: 24px; max-height: 168px; overflow: hidden; }
	.composer-hero__bio p { margin-bottom: 0; }
	.composer-hero__bio.is-expanded { max-height: none; }
	.composer-hero__bio.is-expanded p { margin-bottom: 10px; }
	.composer-works__head .catalog-main__controls { flex-wrap: nowrap; }
	.composer-works__head .catalog-count { margin-right: auto; }
	.work-item__head {
		grid-template-columns: minmax(0, 216fr) minmax(0, 162fr) minmax(0, 127fr) minmax(0, 142fr) auto;
		font-size: 16px;
	}
	.work-item__meta { font-size: 16px; }
	.work-item__body { grid-template-columns: 1fr 1fr; gap: 16px; }
	.work-item__description p { font-size: 16px; }
}

@media (max-width: 640px) {
	.composer-hero { grid-template-columns: 1fr; gap: 20px; padding-top: 24px; }
	.composer-hero__photo { aspect-ratio: 343 / 368; }
	.composer-hero__info h1 { font-size: 26px; line-height: 32px; }
	.composer-hero__bio { max-height: 216px; }
	.composer-works__head h2 { font-size: 22px; line-height: 28px; }
	.composer-works__head .catalog-main__controls { flex-wrap: wrap; }
	.work-item__head {
		grid-template-columns: auto auto 1fr auto auto;
		grid-template-areas: "title title . dur chev" "genre type . dur chev";
		column-gap: 16px; row-gap: 4px; padding: 12px 16px; min-height: 64px;
	}
	.work-item__title { grid-area: title; font-size: 16px; line-height: 20px; }
	.work-item__meta:nth-of-type(2) { grid-area: genre; }
	.work-item__meta:nth-of-type(3) { grid-area: type; }
	.work-item__meta:nth-of-type(2), .work-item__meta:nth-of-type(3) { font-size: 14px; line-height: 18px; }
	.work-item__meta:nth-of-type(4) { grid-area: dur; margin-right: 52px; }
	.work-item__chevron { grid-area: chev; }
	.work-item__body { grid-template-columns: 1fr; gap: 0; padding: 8px 16px 24px; }
	.work-item__description { display: contents; }
	.work-item__desc-text { order: 1; }
	.work-item__media { order: 2; margin-top: 24px; }
	.work-item__video { order: 3; margin-top: 24px; }
	.work-item__pdf-actions { order: 4; margin-top: 16px; }
	.work-item__pdf-actions .btn--outline { width: 100%; justify-content: center; }
}

.page-content-wrap { padding: var(--space-3) 0 var(--space-8); max-width: var(--content-width); margin: 0 auto; }
.page-content-wrap__title { font-size: 32px; margin-bottom: var(--space-4); }
.page-content { max-width: 760px; font-size: 16px; line-height: 1.7; color: var(--color-text); }
.page-content p { margin-bottom: var(--space-3); }
.page-content h2 { font-size: 22px; margin-top: var(--space-6); margin-bottom: var(--space-2); }
.page-content h3 { font-size: 18px; margin-top: var(--space-4); margin-bottom: var(--space-1); }
.page-content ul, .page-content ol { margin: 0 0 var(--space-3) var(--space-3); padding-left: var(--space-2); }
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 6px; }
.page-content a { color: var(--color-accent-pink); text-decoration: underline; }
.page-content img { border-radius: var(--radius-sm); margin: var(--space-3) 0; }
.page-content blockquote { border-left: 3px solid var(--color-accent-pink); padding-left: var(--space-2); color: var(--color-text-muted); font-style: italic; margin: var(--space-3) 0; }

body.error404 { background: #f6fafb; }
.error-404 { text-align: center; padding-top: 35px; padding-bottom: 36px; }
.error-404__stage { position: relative; max-width: 736px; margin: 0 auto; }
.error-404__art {
	position: relative;
	aspect-ratio: 736 / 658;
	container-type: inline-size;
}
.error-404__record {
	position: absolute;
	left: 1.658%;
	top: -0.426%;
	width: 92.05%;
	height: auto;
	max-width: none;
}
.error-404__code {
	position: absolute;
	left: 50%;
	top: 16.02cqw;
	transform: translateX(-50%);
	color: #e20a6b;
	white-space: nowrap;
	font-family: var(--font-medium); font-weight: 400; font-size: 58.882cqw; line-height: 1; letter-spacing: 0;
}
.error-404__title {
	position: absolute;
	left: 0; right: 0;
	top: 79.71%;
	margin: 0;
	color: #e20a6b;
	font-family: var(--font-medium); font-weight: 400; font-size: 32px; line-height: 32px;
}
.error-404__text {
	margin: 28px 0 0;
	color: var(--color-text);
	font-family: var(--font-book); font-weight: 400; font-size: 18px; line-height: 24px;
}
.error-404__text a { color: inherit; }
.error-404__text a:hover { color: #e20a6b; }

@media (max-width: 1024px) {
	.error-404__title { font-size: 28px; line-height: 28px; }
}

@media (max-width: 640px) {
	.error-404 { padding-top: 31px; }
	.error-404__stage { max-width: none; margin: 0 -2px; }
	.error-404__title { position: static; margin-top: 11px; font-size: 28px; }
	.error-404__br { display: none; }
	.error-404__text { margin-top: 16px; }
}
