:root {
	--clp-navy: #0b1f3a;
	--clp-blue: #2f55d4;
	--clp-blue-dark: #2142b3;
	--clp-light-blue: #eef4ff;
	--clp-yellow: #fff5a8;
	--clp-text: #182230;
	--clp-muted: #5f6b7a;
	--clp-border: #d7dce3;
	--clp-surface: #f5f7fa;
	--clp-white: #fff;
	--clp-shadow: 0 12px 30px rgba(11, 31, 58, 0.09);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--clp-white);
	color: var(--clp-text);
}

img {
	height: auto;
	max-width: 100%;
}

:where(a, button, input, select, textarea):focus-visible {
	outline: 3px solid #ffbf47;
	outline-offset: 3px;
}

.wp-site-blocks {
	min-height: 100vh;
}

.clp-site-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 3px 16px rgba(0, 0, 0, 0.12);
	position: relative;
	z-index: 20;
}

.clp-site-header .wp-block-site-title a,
.clp-site-header .wp-block-navigation a {
	text-decoration: none;
}

.clp-site-header .wp-block-site-logo img {
	max-height: 52px;
	width: auto;
}

/* The CLP edge areas are the single source of truth for configurable menus.
 * Hide navigation blocks retained by an older saved template part so they do
 * not replace or visually compete with the selected CLP menu. */
.clp-site-header .clp-primary-navigation,
.clp-site-footer .wp-block-navigation {
	display: none !important;
}

.clp-site-footer {
	margin-block-start: 0;
}

.clp-site-footer :where(h1, h2, h3, h4, h5, h6, p, li, span, label) {
	color: #ffffff !important;
}

.clp-site-footer :where(a, .wp-block-navigation-item__content, .wp-block-site-title a) {
	color: #e8efff !important;
	text-decoration-color: currentColor;
}

.clp-site-footer :where(a, .wp-block-navigation-item__content, .wp-block-site-title a):hover,
.clp-site-footer :where(a, .wp-block-navigation-item__content, .wp-block-site-title a):focus {
	color: #ffffff !important;
	text-decoration: underline;
}

/* Independently configurable top and bottom advertising/menu bands. */
.clp-theme-edge {
	background: var(--clp-surface);
	border-bottom: 1px solid var(--clp-border);
	border-top: 1px solid var(--clp-border);
	padding: 12px clamp(16px, 2.5vw, 36px);
}

.clp-theme-edge-bottom {
	margin-top: 28px;
}

.clp-theme-edge-inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin: 0 auto;
	max-width: 1600px;
	width: 100%;
}

.clp-theme-edge .clp-edge-menu {
	background: var(--clp-white);
	border: 1px solid var(--clp-border);
	border-radius: 6px;
	box-shadow: 0 3px 12px rgba(11, 31, 58, 0.05);
	min-width: 220px;
}

.clp-theme-edge .clp-panel-menu {
	background: var(--clp-white);
	border: 1px solid var(--clp-border);
	border-radius: 6px;
	box-shadow: 0 3px 12px rgba(11, 31, 58, 0.05);
	flex: 1 1 240px;
	min-width: min(100%, 240px);
	max-width: 360px;
}

.clp-theme-edge .clp-panel-menu h2 {
	font-size: 1rem;
	margin: 0;
	padding: 12px 14px 8px;
}

.clp-theme-edge .clp-panel-menu .clp-sidebar-menu-list {
	display: block;
	padding-bottom: 6px;
}

.clp-theme-edge .clp-panel-menu .clp-sidebar-menu-list a {
	padding: 7px 14px;
}

.clp-theme-edge .clp-sidebar-menu-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.clp-theme-edge .clp-sidebar-menu-list a {
	display: block;
	padding: 9px 12px;
	text-decoration: none;
}

.clp-edge-banner-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	min-width: min(100%, 380px);
	flex: 1 1 520px;
}

.clp-edge-banner-grid .clp-sidebar-banner {
	min-height: 0;
}

.clp-edge-banner-grid .clp-sidebar-banner img {
	max-height: 180px;
	object-fit: cover;
}

/* Language home selector shared by the root, /en/ and /ru/ pages. */
.clp-language-switcher {
	background: var(--clp-white);
	border-bottom: 1px solid var(--clp-border);
	padding: 8px clamp(16px, 2.5vw, 36px);
	position: relative;
	z-index: 30;
}

.clp-language-switcher details {
	margin-left: auto;
	max-width: 1600px;
	position: relative;
	width: fit-content;
}

.clp-language-switcher summary {
	background: var(--clp-light-blue);
	border: 1px solid var(--clp-border);
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	list-style: none;
	padding: 7px 12px;
}

.clp-language-switcher summary::-webkit-details-marker { display: none; }

.clp-language-switcher ul {
	background: var(--clp-white);
	border: 1px solid var(--clp-border);
	border-radius: 6px;
	box-shadow: var(--clp-shadow);
	list-style: none;
	margin: 6px 0 0;
	min-width: 150px;
	padding: 6px;
	position: absolute;
	right: 0;
	top: 100%;
}

.clp-language-switcher li a {
	display: block;
	padding: 8px 10px;
	text-decoration: none;
}

.clp-language-switcher li a:hover { background: var(--clp-light-blue); }

/* Role-aware portal links are kept in the public upper-right utility area. */
.clp-portal-links {
	align-items: center;
	background: var(--clp-navy);
	display: flex;
	gap: 8px;
	justify-content: flex-end;
	padding: 7px clamp(16px, 2.5vw, 36px);
	position: relative;
	z-index: 29;
}
.clp-portal-link {
	border: 1px solid rgba(255,255,255,.45);
	border-radius: 4px;
	color: var(--clp-white) !important;
	display: inline-block;
	font-size: .82rem;
	padding: 5px 10px;
	text-decoration: none !important;
}
.clp-portal-link:hover,
.clp-portal-link:focus { background: var(--clp-blue); border-color: var(--clp-blue); }
.clp-portal-register { background: rgba(255,255,255,.12); }
@media (max-width: 650px) {
	.clp-portal-links { flex-wrap: wrap; justify-content: center; }
}

.clp-page-main {
	min-height: 58vh;
}

.clp-home-hero {
	isolation: isolate;
	min-height: min(680px, 78vh);
	position: relative;
}

.clp-home-hero::after {
	background: linear-gradient(90deg, rgba(7, 21, 42, 0.94) 0%, rgba(7, 21, 42, 0.76) 48%, rgba(7, 21, 42, 0.18) 100%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: -1;
}

.clp-home-hero .wp-block-cover__inner-container {
	z-index: 2;
}

/* Independent home page modules and automatic slider. */
.clp-home-modules {
	margin: 0 auto;
	max-width: 1600px;
	padding: clamp(18px, 3vw, 36px) clamp(16px, 2.5vw, 36px) 0;
}

.clp-home-language-intro {
	margin: 0 auto 24px;
	max-width: 1050px;
	text-align: center;
}

.clp-home-language-intro h1 { margin: 0 0 8px; }
.clp-home-language-intro p { color: var(--clp-muted); margin: 0; }

.clp-home-slider {
	background: var(--clp-navy);
	border-radius: 12px;
	box-shadow: var(--clp-shadow);
	color: var(--clp-white);
	height: clamp(380px, 42vw, 560px);
	min-height: 0;
	overflow: hidden;
	position: relative;
}

.clp-home-slide {
	align-items: stretch;
	display: none;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	height: 100%;
	min-height: 0;
}

.clp-home-slide.is-active {
	display: grid;
}

.clp-home-slide.no-media {
	grid-template-columns: 1fr;
}

.clp-home-slide.no-media .clp-home-slide-content {
	max-width: 900px;
}

.clp-home-slide-media {
	background: #102d51;
	height: 100%;
	min-height: 0;
	order: 2;
}

.clp-home-slide-media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.clp-home-slide-content {
	align-self: center;
	max-width: 680px;
	order: 1;
	padding: clamp(28px, 5vw, 68px);
}

.clp-home-slide-content h1 {
	color: var(--clp-white);
	font-size: clamp(1.7rem, 4vw, 3.4rem);
	margin: 0 0 14px;
}

.clp-home-slide-content p {
	color: #e4edff;
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	margin: 0 0 24px;
}

.clp-home-slider-prev,
.clp-home-slider-next {
	background: rgba(255, 255, 255, 0.9);
	border: 0;
	border-radius: 50%;
	color: var(--clp-navy);
	cursor: pointer;
	font-size: 1.8rem;
	height: 42px;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	z-index: 2;
}

.clp-home-slider-prev { left: 14px; }
.clp-home-slider-next { right: 14px; }
.clp-home-slider-prev:hover,
.clp-home-slider-next:hover { background: var(--clp-white); }

.clp-home-shell {
	display: grid;
	gap: clamp(18px, 2vw, 30px);
	grid-template-columns: minmax(190px, 230px) minmax(0, 1fr) minmax(230px, 285px);
	margin-top: 28px;
}

.clp-home-shell .clp-market-sidebar {
	display: grid;
}

.clp-home-main {
	min-height: 1px;
}

.clp-portal-card {
	background: var(--clp-white);
	border: 1px solid var(--clp-border);
	border-radius: 10px;
	box-shadow: var(--clp-shadow);
	height: 100%;
	padding: clamp(22px, 3vw, 34px);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.clp-portal-card:hover {
	box-shadow: 0 18px 38px rgba(11, 31, 58, 0.14);
	transform: translateY(-3px);
}

/* CLP public marketplace shell. */
.clp-market-page .wp-block-post-content {
	max-width: none !important;
}

.clp-market-page .wp-block-post-content > .clp-market-shell,
.clp-market-page .wp-block-post-content > .clp-market-content-full {
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: 1600px !important;
	width: 100% !important;
}

.clp-market-page .clp-page-title {
	display: none;
}

.clp-market-shell {
	display: grid;
	gap: clamp(18px, 2vw, 30px);
	margin: 0 auto;
	max-width: 1600px;
	padding: 8px 0 46px;
	width: 100%;
}

.clp-market-shell-both {
	grid-template-columns: minmax(190px, 230px) minmax(0, 1fr) minmax(230px, 285px);
}

.clp-market-shell-left {
	grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
}

.clp-market-shell-right {
	grid-template-columns: minmax(0, 1fr) minmax(230px, 290px);
}

.clp-market-content {
	min-width: 0;
}

.clp-market-content-full {
	margin-inline: auto;
	max-width: 1480px;
}

.clp-market-content .clp-public-directory {
	font-family: inherit;
	margin: 0;
	max-width: none;
	padding: 0;
}

.clp-public-actions {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	margin: 20px 0 16px;
}

.clp-public-submit-button {
	box-shadow: 0 8px 18px rgba(47, 85, 212, .2);
	font-size: 1rem;
	font-weight: 700;
}

.clp-public-notice-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.clp-market-sidebar {
	align-self: start;
	display: grid;
	gap: 18px;
	min-width: 0;
}

.clp-sidebar-panel {
	background: var(--clp-white);
	border: 1px solid var(--clp-border);
	border-radius: 8px;
	box-shadow: 0 5px 18px rgba(11, 31, 58, 0.06);
	overflow: hidden;
}

.clp-portal-register-form,
.clp-portal-login-form {
	background: linear-gradient(145deg, var(--clp-white) 0%, #f8fbff 100%);
	border: 1px solid var(--clp-border);
	border-radius: 18px;
	box-shadow: 0 18px 48px rgba(11, 31, 58, 0.12);
	max-width: 860px;
	padding: clamp(24px, 4vw, 48px);
}

.clp-portal-register-form::before,
.clp-portal-login-form::before {
	background: var(--clp-blue);
	border-radius: 0 0 6px 6px;
	content: "";
	display: block;
	height: 5px;
	margin: calc(clamp(24px, 4vw, 48px) * -1) calc(clamp(24px, 4vw, 48px) * -1) 28px;
}

.clp-portal-register-form h1,
.clp-portal-login-form h1 {
	color: var(--clp-navy);
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	letter-spacing: -0.02em;
	margin: 0 0 28px;
}

.clp-portal-form {
	display: block;
}

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

.clp-portal-form > p {
	margin: 0 0 18px;
}

.clp-account-fields > p {
	margin: 0 0 18px;
}

.clp-remember-field {
	color: var(--clp-muted);
	font-size: .9rem;
}

.clp-remember-field input {
	accent-color: var(--clp-blue);
	margin-right: 5px;
	vertical-align: -2px;
}

.clp-portal-form > p > label,
.clp-account-fields > p > label,
.clp-portal-form .clp-file-upload label {
	color: var(--clp-text);
	display: block;
	font-size: .94rem;
	font-weight: 600;
}

.clp-portal-form input[type="text"],
.clp-portal-form input[type="email"],
.clp-portal-form input[type="password"],
.clp-portal-form input[type="tel"],
.clp-portal-form input[type="file"],
.clp-portal-form textarea,
.clp-portal-form select {
	background: var(--clp-white);
	border: 1px solid #aeb8c8;
	border-radius: 8px;
	box-shadow: inset 0 1px 2px rgba(11, 31, 58, .04);
	box-sizing: border-box;
	font: inherit;
	margin-top: 8px;
	max-width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	transition: border-color 140ms ease, box-shadow 140ms ease;
	width: 100%;
}

.clp-portal-form input[type="file"] {
	padding: 8px 10px;
}

.clp-portal-form input:focus,
.clp-portal-form select:focus,
.clp-portal-form textarea:focus {
	border-color: var(--clp-blue);
	box-shadow: 0 0 0 3px rgba(47, 85, 212, .14);
	outline: 0;
}

.clp-portal-form .form-table {
	background: rgba(238, 244, 255, .62);
	border: 1px solid #d8e2f2;
	border-radius: 12px;
	display: block;
	margin: 24px 0;
	padding: 4px 16px;
	width: 100%;
}

.clp-portal-form .form-table tbody,
.clp-portal-form .form-table tr,
.clp-portal-form .form-table td,
.clp-portal-form .form-table th {
	display: block;
	width: 100%;
}

.clp-portal-form .form-table tr {
	padding: 12px 0;
}

.clp-portal-form .form-table th {
	color: var(--clp-navy);
	font-size: .95rem;
	padding: 0 0 8px;
	text-align: left;
}

.clp-portal-form .form-table td {
	padding: 0;
}

.clp-portal-form .clp-location-field p {
	margin: 0 0 14px;
}

.clp-portal-form .clp-location-field p:last-child {
	margin-bottom: 0;
}

.clp-portal-form .clp-location-field select {
	margin-top: 6px;
}

.clp-portal-form fieldset {
	background: var(--clp-white);
	border: 1px solid #d8e2f2;
	border-radius: 12px;
	margin: 22px 0;
	padding: 18px 20px 16px;
}

.clp-portal-form fieldset legend {
	color: var(--clp-navy);
	font-size: 1.05rem;
	padding: 0 8px;
}

.clp-transport-option {
	align-items: center;
	background: #f8faff;
	border: 1px solid #e0e6f1;
	border-radius: 7px;
	cursor: pointer;
	display: flex;
	gap: 9px;
	margin: 7px 0;
	padding: 10px 12px;
	transition: background 140ms ease, border-color 140ms ease;
}

.clp-transport-option:hover {
	background: var(--clp-light-blue);
	border-color: #b8c8e6;
}

.clp-transport-option input {
	accent-color: var(--clp-blue);
	height: 18px;
	width: 18px;
}

.clp-file-upload {
	background: #f7f9fc;
	border: 1px dashed #aebbd0;
	border-radius: 12px;
	padding: 16px;
}

.clp-portal-form .clp-public-button {
	background: var(--clp-blue);
	border: 1px solid var(--clp-blue);
	border-radius: 8px;
	box-shadow: 0 7px 16px rgba(47, 85, 212, .22);
	color: var(--clp-white);
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	padding: 12px 22px;
	transition: background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.clp-portal-form .clp-public-button:hover,
.clp-portal-form .clp-public-button:focus {
	background: var(--clp-blue-dark);
	border-color: var(--clp-blue-dark);
	box-shadow: 0 9px 20px rgba(33, 66, 179, .28);
	color: var(--clp-white);
	transform: translateY(-1px);
}

.clp-portal-login-links {
	border-top: 1px solid var(--clp-border);
	margin: 22px 0 0;
	padding-top: 18px;
}

@media (max-width: 650px) {
	.clp-portal-register-form,
	.clp-portal-login-form {
		border-radius: 12px;
		padding: 22px 16px;
	}

	.clp-portal-register-form::before,
	.clp-portal-login-form::before {
		margin: -22px -16px 24px;
	}

	.clp-portal-form .form-table {
		padding: 4px 12px;
	}

	.clp-account-fields {
		grid-template-columns: 1fr;
	}

	.clp-portal-form fieldset {
		padding-left: 13px;
		padding-right: 13px;
	}
}

.clp-sidebar-panel > h2 {
	background: var(--clp-navy);
	color: var(--clp-white);
	font-size: 1rem;
	letter-spacing: 0.01em;
	margin: 0;
	padding: 13px 15px;
}

.clp-sidebar-menu-list,
.clp-sidebar-listings ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.clp-sidebar-menu-list li + li,
.clp-sidebar-listings li + li {
	border-top: 1px solid var(--clp-border);
}

.clp-sidebar-menu-list a,
.clp-sidebar-listings li > a {
	color: var(--clp-text);
	display: block;
	font-size: 0.88rem;
	line-height: 1.35;
	padding: 12px 14px;
	text-decoration: none;
}

.clp-sidebar-menu-list a:hover,
.clp-sidebar-listings li > a:hover {
	background: var(--clp-light-blue);
	color: var(--clp-blue-dark);
}

.clp-sidebar-menu-list .clp-sidebar-sub-item > a {
	color: var(--clp-muted);
	font-size: 0.8rem;
	padding-left: 28px;
}

.clp-sidebar-menu-list .current-menu-item > a {
	background: var(--clp-blue);
	color: var(--clp-white);
}

.clp-sidebar-listings strong,
.clp-sidebar-listings span,
.clp-sidebar-listings small {
	display: block;
}

.clp-sidebar-listings span {
	color: var(--clp-muted);
	font-size: 0.78rem;
	margin-top: 5px;
}

.clp-sidebar-listings small {
	color: var(--clp-blue-dark);
	font-size: 0.74rem;
	margin-top: 5px;
}

.clp-sidebar-cis > h2 {
	background: var(--clp-blue);
}

.clp-sidebar-banner {
	background: var(--clp-surface);
	line-height: 0;
	min-height: 90px;
}

.clp-sidebar-banner img {
	display: block;
	width: 100%;
}

/* Filters and controls. */
.clp-market-content .clp-public-filters,
.clp-market-content .clp-translate-controls {
	background: var(--clp-surface);
	border: 1px solid var(--clp-border);
	border-radius: 8px;
	padding: 16px;
}

.clp-market-content :where(input, select, textarea) {
	background: var(--clp-white);
	border: 1px solid #8993a2;
	border-radius: 5px;
	color: var(--clp-text);
}

.clp-market-content .clp-public-button,
.clp-market-content .clp-public-button:visited {
	background: var(--clp-blue);
	border: 1px solid var(--clp-blue);
	border-radius: 5px;
	color: var(--clp-white) !important;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	text-decoration: none !important;
}

.clp-market-content .clp-public-button:hover,
.clp-market-content .clp-public-button:focus {
	background: var(--clp-blue-dark);
	border-color: var(--clp-blue-dark);
	color: var(--clp-white) !important;
}

/* Square card presentation. */
.clp-list-layout-grid .clp-public-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.clp-list-layout-grid .clp-public-grid > .clp-public-card {
	align-content: start;
	aspect-ratio: 1 / 1;
	border: 1px solid var(--clp-border);
	border-radius: 8px;
	box-shadow: 0 6px 20px rgba(11, 31, 58, 0.07);
	display: flex;
	flex-direction: column;
	min-height: 330px;
	overflow: auto;
	padding: 20px;
}

.clp-list-layout-grid .clp-public-card .clp-public-button {
	align-self: flex-start;
	margin-top: auto;
}

/* Horizontal screenshot-inspired presentation. */
.clp-list-layout-list .clp-public-grid {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.clp-list-layout-list .clp-public-grid > .clp-public-card {
	background-color: var(--clp-white);
	border: 1px solid var(--clp-border);
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(11, 31, 58, 0.05);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 1.7fr) auto;
	grid-template-rows: auto 1fr;
	min-height: 148px;
	overflow: hidden;
	padding: 18px 18px 18px 188px;
	position: relative;
}

.clp-list-layout-list .clp-public-grid > .clp-public-card::before {
	background-image: linear-gradient(rgba(11, 31, 58, 0.08), rgba(11, 31, 58, 0.08)), url('../images/listing-placeholder.jpg');
	background-position: center;
	background-size: cover;
	content: "";
	inset: 0 auto 0 0;
	position: absolute;
	width: 168px;
}

.clp-list-layout-list .clp-public-card.is-featured {
	background-color: var(--clp-yellow) !important;
	border-color: #d7bc30;
}

.clp-list-layout-list .clp-public-card h3 {
	align-self: start;
	font-size: 1rem;
	grid-column: 1;
	grid-row: 1;
	margin: 0 18px 8px 0;
}

.clp-list-layout-list .clp-public-card > p {
	color: var(--clp-muted);
	font-size: 0.84rem;
	grid-column: 1;
	grid-row: auto;
	margin: 0 18px 0 0;
}

.clp-list-layout-list .clp-public-card .clp-public-meta {
	align-self: center;
	display: grid;
	font-size: 0.78rem;
	gap: 10px 16px;
	grid-column: 2;
	grid-row: 1 / span 4;
	grid-template-columns: repeat(2, minmax(115px, 1fr));
	margin: 0;
}

.clp-list-layout-list .clp-public-card .clp-public-meta strong {
	color: var(--clp-muted);
	font-size: 0.7rem;
}

.clp-list-layout-list .clp-public-card .clp-public-button {
	align-self: center;
	grid-column: 3;
	grid-row: 1 / span 4;
	margin-left: 16px;
	white-space: nowrap;
}

.clp-list-layout-list .clp-public-badge {
	right: auto;
	left: 8px;
	top: 8px;
}

.clp-market-content .clp-public-profile {
	border: 1px solid var(--clp-border);
	border-radius: 8px;
	box-shadow: var(--clp-shadow);
}

.clp-market-content .clp-public-table th {
	background: var(--clp-surface);
}

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

	.clp-market-content {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.clp-market-sidebar-left {
		grid-column: 1;
		grid-row: 2;
	}

	.clp-market-sidebar-right {
		grid-column: 2;
		grid-row: 2;
	}

	.clp-market-shell-left .clp-market-sidebar-left,
	.clp-market-shell-right .clp-market-sidebar-right {
		grid-column: 1 / -1;
	}

	.clp-list-layout-list .clp-public-grid > .clp-public-card {
		grid-template-columns: minmax(0, 1fr) minmax(240px, 1.3fr);
		padding-left: 158px;
	}

	.clp-list-layout-list .clp-public-grid > .clp-public-card::before {
		width: 140px;
	}

	.clp-list-layout-list .clp-public-card .clp-public-button {
		grid-column: 1 / -1;
		grid-row: auto;
		justify-self: start;
		margin: 12px 0 0;
	}
}

@media (max-width: 760px) {
	.clp-header-actions {
		display: none !important;
	}

	.clp-site-header .clp-primary-navigation {
		margin-left: auto;
	}

	.clp-market-shell {
		display: flex;
		flex-direction: column;
	}

	.clp-market-content {
		order: 1;
	}

	.clp-market-sidebar-left {
		order: 2;
	}

	.clp-market-sidebar-right {
		order: 3;
	}

	.clp-list-layout-grid .clp-public-grid > .clp-public-card {
		aspect-ratio: auto;
		min-height: 0;
	}

	.clp-list-layout-list .clp-public-grid > .clp-public-card {
		display: block;
		min-height: 0;
		padding: 138px 16px 16px;
	}

	.clp-list-layout-list .clp-public-grid > .clp-public-card::before {
		height: 122px;
		inset: 0 0 auto;
		width: auto;
	}

	.clp-list-layout-list .clp-public-card h3,
	.clp-list-layout-list .clp-public-card > p {
		margin-right: 0;
	}

	.clp-list-layout-list .clp-public-card .clp-public-meta {
		grid-template-columns: 1fr;
		margin: 14px 0;
	}

	.clp-list-layout-list .clp-public-card .clp-public-button {
		display: block;
		margin: 14px 0 0;
		width: 100%;
	}

	.clp-home-slider {
		border-radius: 8px;
		height: clamp(500px, 128vw, 700px);
		min-height: 0;
	}

	.clp-home-slide,
	.clp-home-slide.is-active {
		display: flex;
		flex-direction: column;
		height: 100%;
		min-height: 0;
	}

	.clp-home-slide-media {
		flex: 0 0 48%;
		height: 48%;
		min-height: 0;
		order: 1;
	}

	.clp-home-slide-media img {
		background: #102d51;
		height: 100%;
		max-height: none;
		object-fit: contain;
		width: 100%;
	}

	.clp-home-slide-content {
		box-sizing: border-box;
		flex: 1 1 52%;
		min-height: 0;
		overflow: auto;
		order: 2;
		padding: 28px 22px 34px;
	}

	.clp-home-slider-prev,
	.clp-home-slider-next {
		top: 25%;
	}

	.clp-home-shell {
		grid-template-columns: 1fr;
	}

	.clp-home-shell .clp-home-main {
		display: none;
	}

	.clp-theme-edge-inner {
		align-items: stretch;
		flex-direction: column;
	}

	.clp-theme-edge .clp-edge-menu,
	.clp-edge-banner-grid {
		min-width: 0;
		width: 100%;
	}

	.clp-public-table,
	.clp-public-table tbody,
	.clp-public-table tr,
	.clp-public-table th,
	.clp-public-table td {
		display: block;
		width: 100%;
	}

	.clp-public-table th {
		border-bottom: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.clp-portal-card {
		transition: none;
	}
}
