/**
 * Cann Creative Works design system.
 * Keep token names in sync with bricks-json/design-system.json.
 */

:root {
	/* Layout */
	--layout-max: max(1600px, calc(91% - 35px));
	--layout-padding: 30px;
	--space-0: 0px;
	--space-30: 30px;
	--space-60: 60px;
	--space-90: 90px;
	--space-120: 120px;

	/* Font families */
	--font-heading: 'Castoro', sans-serif;
	--font-body: 'Inter', sans-serif;
	--font-subheading: "Inter", sans-serif;

	/* Desktop and mobile endpoints */
	--fs-h1-desktop: 86px;
	--fs-h1-mobile: 38px;
	--fs-h2-desktop: 49px;
	--fs-h2-mobile: 32px;
	--fs-h3-desktop: 33px;
	--fs-h3-mobile: 24px;
	--fs-h4-desktop: 24px;
	--fs-h4-mobile: 20px;
	--fs-h5-desktop: 17px;
	--fs-h5-mobile: 17px;
	--fs-h6-desktop: 15px;
	--fs-h6-mobile: 15px;
	--fs-paragraph: 15px;
	--fs-subtitle: 15px;
	--fs-subtitle-mobile: 14px;
	--subtitle-spacing: -0.02em;
	--fs-h1-wide: 100px;
	--fs-h2-wide: 60px;
	--fs-h3-wide: 36px;
	--fs-h4-wide: 32px;
	--fs-h5-wide: 17px;
	--fs-h6-wide: 20px;
	--fs-paragraph-wide: 17px;
	--fs-subtitle-wide: 15px;
	--fs-menu-wide: 17px;
	--fs-button-wide: 17px;

	/* Fluid values used by the site */
	--fs-h1: clamp(var(--fs-h1-mobile), 5.972vw, var(--fs-h1-desktop));
	--fs-h2: clamp(var(--fs-h2-mobile), 3.4vw, var(--fs-h2-desktop));
	--fs-h3: clamp(var(--fs-h3-mobile), 2.3vw, var(--fs-h3-desktop));
	--fs-h4: clamp(var(--fs-h4-mobile), 1.7vw, var(--fs-h4-desktop));
	--fs-h5: clamp(var(--fs-h5-mobile), 1.4vw, var(--fs-h5-desktop));
	--fs-h6: 15px;

	/* Radius variants */
	--radius-8: 8px;
	--radius-16: 16px;
	--radius-24: 24px;
	--radius-40: 40px;

	/* Palette additions */
	--color-subtitle: #2d2b3099;
	--color-border: #ebebeb;
	--color-dark: #2d2b30;
	--color-nav-surface: #f4f4f6;
	--color-brand-1: #ff363a;
}

/* Standalone single-portfolio design study: /single-portfolio-2/ */
.cc-single-portfolio-2-shell.brxe-shortcode,
.cc-single-portfolio-2 {
	width: 100%;
}

.cc-single-portfolio-2 {
	overflow: clip;
	background: #fff;
	color: #fff;
}

.cc-pf2-container {
	width: 100%;
	max-width: 1380px;
	margin-inline: auto;
}

.cc-pf2-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	width: calc(100% - 20px);
	max-width: none;
	min-height: calc(100svh - 130px);
	margin: 0 10px 10px;
	overflow: hidden;
	background: #17171a;
	border-radius: var(--radius-24);
}

.cc-pf2-hero__background {
	position: absolute;
	inset: 0;
	z-index: -3;
	background-image: var(--cc-pf2-hero-image);
	background-position: center;
	background-size: cover;
	transform: scale(1.02);
}

.cc-pf2-hero::before,
.cc-pf2-hero::after {
	position: absolute;
	inset: 0;
	z-index: -2;
	content: "";
}

.cc-pf2-hero::before {
	background: linear-gradient(180deg, rgba(13, 13, 16, .12) 0%, rgba(13, 13, 16, .35) 42%, rgba(13, 13, 16, .9) 100%);
}

.cc-pf2-hero::after {
	z-index: -1;
	background: linear-gradient(90deg, rgba(13, 13, 16, .52) 0%, transparent 58%);
}

.cc-pf2-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding-block: clamp(82px, 10vh, 128px) clamp(54px, 7vh, 86px);
}

.cc-pf2-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
	color: rgba(255, 255, 255, .78);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -.02em;
	line-height: 1.5;
}

.cc-pf2-hero__meta > span[aria-hidden="true"] {
	width: 4px;
	height: 4px;
	background: var(--color-brand-1);
	border-radius: 50%;
}

.cc-pf2-hero h1 {
	max-width: 1040px;
	margin: 0;
	color: #fff;
	font-family: var(--font-heading);
	font-size: clamp(64px, 8.2vw, 126px);
	font-weight: 400;
	line-height: .92;
	letter-spacing: -.055em;
}

.cc-pf2-hero__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	gap: 40px;
	margin-top: clamp(42px, 7vh, 76px);
}

.cc-pf2-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(120px, 210px));
	gap: clamp(24px, 4vw, 64px);
	margin: 0;
}

.cc-pf2-facts div {
	min-width: 0;
}

.cc-pf2-facts dt {
	margin-bottom: 9px;
	color: rgba(255, 255, 255, .5);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .08em;
	line-height: 1.3;
	text-transform: uppercase;
}

.cc-pf2-facts dd {
	margin: 0;
	color: #fff;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.45;
}

.cc-pf2-project-link {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 13px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, .7);
	color: #fff;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
}

.cc-pf2-project-link span {
	font-size: 19px;
	transition: transform .2s ease;
}

.cc-pf2-project-link:hover span,
.cc-pf2-project-link:focus-visible span {
	transform: translate(3px, -3px);
}

.cc-pf2-hero__index {
	position: absolute;
	top: 50%;
	right: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, .74);
	font-family: var(--font-body);
	font-size: 11px;
	font-style: normal;
	line-height: 1;
	transform: translateY(-50%);
}

.cc-pf2-hero__index strong,
.cc-pf2-hero__index em {
	font-style: normal;
	font-weight: 600;
}

.cc-pf2-hero__index span {
	width: 1px;
	height: 70px;
	background: linear-gradient(180deg, #fff 0 33%, rgba(255, 255, 255, .28) 33% 100%);
}

.cc-pf2-dark {
	width: calc(100% - 60px);
	max-width: max(1600px, calc(91% - 90px));
	margin: 0 auto 10px;
	overflow: hidden;
	background: #fff;
	border-radius: 24px;
	color: var(--color-dark);
}

.cc-pf2-story,
.cc-pf2-approach {
	padding-block: 120px;
	padding-bottom: 0;
}

.cc-pf2-split {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
	gap: clamp(70px, 9vw, 150px);
	align-items: start;
}

.cc-pf2-kicker {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 28px;
	color: rgba(45, 43, 48, .58);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.cc-pf2-kicker::before {
	width: 24px;
	height: 1px;
	background: var(--color-brand-1);
	content: "";
}

.cc-pf2-split h2 {
	max-width: 790px;
	margin: 0;
	color: var(--color-dark);
	font-family: var(--font-heading);
	font-size: clamp(48px, 5vw, 76px);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: -.052em;
}

.cc-pf2-copy {
	padding-top: 49px;
	color: rgba(45, 43, 48, .72);
	font-family: var(--font-body);
	font-size: 17px;
	font-weight: 400;
	letter-spacing: -.02em;
	line-height: 1.72;
}

.cc-pf2-copy p {
	margin: 0 0 24px;
	font: inherit;
	color: inherit;
}

.cc-pf2-copy p:last-child {
	margin-bottom: 0;
}

.cc-pf2-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-top: clamp(70px, 8vw, 120px);
}

.cc-pf2-gallery__column {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.cc-pf2-gallery__column--right {
	padding-top: clamp(70px, 7vw, 110px);
}

.cc-pf2-gallery__item,
.cc-pf2-wide-visual {
	position: relative;
	margin: 0;
	overflow: hidden;
	background: #1d1d21;
	border-radius: 28px;
}

.cc-pf2-gallery__item--portrait {
	aspect-ratio: 4 / 5;
}

.cc-pf2-gallery__item--landscape {
	aspect-ratio: 16 / 10;
}

.cc-pf2-gallery__image,
.cc-pf2-wide-visual__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.cc-pf2-gallery__item:hover .cc-pf2-gallery__image {
	transform: scale(1.025);
}

.cc-pf2-wide-visual--project {
	height: clamp(520px, 66vw, 840px);
	margin-top: clamp(70px, 8vw, 120px);
	background: #e7e7e7;
}

.cc-pf2-wide-visual--project .cc-pf2-wide-visual__image {
	object-fit: cover;
	object-position: center;
}

.cc-pf2-cta-band {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-top: 30px;
	background: #fff;
}

.cc-pf2-cta-band .cc-project-cta {
	width: calc(100% - 60px);
	max-width: max(1600px, calc(91% - 90px));
	margin: 0 auto 30px;
	background: var(--color-nav-surface);
	border-radius: var(--radius-24);
	color: var(--color-dark);
}

.cc-pf2-cta-band .cc-project-cta__eyebrow,
.cc-pf2-cta-band .cc-project-cta h2,
.cc-pf2-cta-band .cc-project-cta__description {
	color: var(--color-dark);
}

.cc-pf2-cta-band .cc-project-cta__description {
	color: rgba(45, 43, 48, .72);
}

.cc-pf2-cta-band .cc-project-cta__divider {
	background: #d4d3d6;
}

.cc-pf2-cta-band .cc-project-cta__button.site-header__cta.brxe-button {
	background: var(--color-dark) !important;
	color: #fff !important;
}

.cc-pf2-cta-band .cc-project-cta__button.site-header__cta.brxe-button:hover,
.cc-pf2-cta-band .cc-project-cta__button.site-header__cta.brxe-button:focus-visible {
	background: var(--color-brand-1) !important;
	color: #fff !important;
}

@media (max-width: 991px) {
	.cc-pf2-hero {
		min-height: calc(100svh - 96px);
	}

	.cc-pf2-hero__index {
		display: none;
	}

	.cc-pf2-hero__footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.cc-pf2-facts {
		width: 100%;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.cc-pf2-split {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.cc-pf2-copy {
		max-width: 680px;
		padding-top: 0;
	}
}

@media (max-width: 767px) {
	.cc-pf2-hero,
	.cc-pf2-dark {
		width: calc(100% - 60px);
		max-width: none;
		border-radius: var(--radius-16);
	}

	.cc-pf2-hero {
		width: calc(100% - 20px);
		margin-right: 10px;
		margin-left: 10px;
		border-radius: var(--radius-16);
	}

	.cc-pf2-hero {
		min-height: calc(100svh - 80px);
	}

	.cc-pf2-hero__background {
		background-position: 55% center;
	}

	.cc-pf2-hero__inner {
		padding-block: 74px 46px;
	}

	.cc-pf2-hero h1 {
		font-size: clamp(48px, 16vw, 72px);
		line-height: .96;
	}

	.cc-pf2-hero__footer {
		gap: 30px;
		margin-top: 40px;
	}

	.cc-pf2-facts {
		grid-template-columns: 1fr 1fr;
		gap: 24px 18px;
	}

	.cc-pf2-split h2 {
		font-size: clamp(40px, 12vw, 58px);
	}

	.cc-pf2-copy {
		font-size: 16px;
	}

	.cc-pf2-gallery {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 62px;
	}

	.cc-pf2-gallery__column {
		gap: 16px;
	}

	.cc-pf2-gallery__column--right {
		padding-top: 0;
	}

	.cc-pf2-gallery__item,
	.cc-pf2-wide-visual {
		border-radius: 20px;
	}

	.cc-pf2-wide-visual--project {
		height: min(118vw, 620px);
	}

	.cc-pf2-wide-visual--project {
		margin-top: 62px;
	}

	.cc-pf2-cta-band {
		padding-top: 12px;
	}

	.cc-pf2-cta-band .cc-project-cta {
		width: calc(100% - 24px);
		margin: 0 auto 12px;
		border-radius: var(--radius-16);
	}
}

/* Standalone single-post design study: /single-post-2/ */
.cc-single-post-2-shell.brxe-shortcode,
.cc-single-post-2 {
	width: 100%;
}

.cc-single-post-2 {
	color: var(--color-dark);
	background: #fff;
}

.cc-sp2-container {
	width: calc(100% - 60px);
	max-width: 1380px;
	margin-inline: auto;
}

.cc-sp2-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	width: calc(100% - 20px);
	min-height: calc(100svh - 130px);
	margin: 0 10px 10px;
	overflow: hidden;
	background: #222;
	border-radius: var(--radius-24);
}

.cc-sp2-hero__background {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image: var(--cc-sp2-hero-image);
	background-position: center;
	background-size: cover;
	transform: scale(1.015);
}

.cc-sp2-hero::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(17, 17, 18, .72) 0%, rgba(17, 17, 18, .48) 55%, rgba(17, 17, 18, .25) 100%);
	content: "";
}

.cc-sp2-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding-block: clamp(70px, 8vw, 110px);
}

.cc-sp2-hero__eyebrow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	margin-bottom: 22px;
	color: rgba(255, 255, 255, .86);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.cc-sp2-hero__categories {
	display: inline-flex;
}

.cc-sp2-hero__categories a {
	color: #fff;
	text-decoration: none;
}

.cc-sp2-hero__meta-dot {
	width: 5px;
	height: 5px;
	background: var(--color-brand-1);
	border-radius: 50%;
}

.cc-sp2-hero h1 {
	max-width: 1280px;
	margin: 0;
	color: #fff;
	font-family: var(--font-heading);
	font-size: clamp(58px, 6.3vw, 92px);
	font-weight: 400;
	line-height: 1.03;
	letter-spacing: -.04em;
}

.cc-sp2-article-section {
	padding: 35px 0 120px;
}

.cc-sp2-article-layout {
	display: grid;
	grid-template-columns: 54px minmax(0, 1000px) minmax(0, 1fr);
	column-gap: clamp(30px, 4vw, 58px);
	align-items: start;
}

.cc-sp2-share {
	position: sticky;
	top: 130px;
	grid-column: 1;
	align-self: start;
	padding-top: 3px;
}

.cc-sp2-share__sticky {
	position: static;
}

.cc-sp2-share__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
}

.cc-sp2-share__links {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 7px;
	background: var(--color-nav-surface);
	border-radius: 28px;
}

.cc-sp2-share__links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 50%;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}

.cc-sp2-share__links a:hover,
.cc-sp2-share__links a:focus-visible {
	background: var(--color-brand-1);
	color: #fff;
}

.cc-sp2-article {
	grid-column: 2;
	min-width: 0;
}

.cc-sp2-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 42px;
	color: var(--color-subtitle);
	font-family: var(--font-body);
	font-size: 13px;
	line-height: 1.45;
}

.cc-sp2-breadcrumb a {
	color: var(--color-dark);
	font-weight: 600;
	text-decoration: none;
}

.cc-sp2-breadcrumb > span:last-child {
	max-width: 540px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cc-sp2-article__content {
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 17px;
	font-weight: 350;
	line-height: 1.82;
	letter-spacing: -.018em;
}

.cc-single-post-2 .single-post-p p,
.cc-single-post-2 .single-post-p .type-paragraph {
	font-family: var(--font-body);
	font-size: 17px;
	letter-spacing: var(--subtitle-spacing);
	line-height: 1.7;
	font-weight: 400;
}

.cc-sp2-article__content > :first-child {
	margin-top: 0;
}

.cc-sp2-article__content > :last-child {
	margin-bottom: 0;
}

.cc-sp2-article__content p,
.cc-sp2-article__content ul,
.cc-sp2-article__content ol,
.cc-sp2-article__content blockquote,
.cc-sp2-article__content figure,
.cc-sp2-article__content table,
.cc-sp2-article__content > img {
	margin-block: 0 32px;
}

.cc-sp2-article__content h2,
.cc-sp2-article__content h3,
.cc-sp2-article__content h4,
.cc-sp2-article__content h5,
.cc-sp2-article__content h6 {
	margin: 62px 0 24px;
	color: var(--color-dark);
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: 1.14;
	letter-spacing: -.045em;
}

.cc-sp2-article__content h2 { font-size: var(--fs-h2); }
.cc-sp2-article__content h3 { font-size: var(--fs-h3); }
.cc-sp2-article__content h4 { font-size: var(--fs-h4); }
.cc-sp2-article__content h5 { font-size: var(--fs-h5); }
.cc-sp2-article__content h6 { font-size: var(--fs-h6); }

.cc-sp2-article__content img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 24px;
}

.cc-sp2-article__content a {
	color: var(--color-brand-1);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.cc-sp2-article__content blockquote {
	padding: 34px;
	background: var(--color-nav-surface);
	border-radius: 24px;
	font-family: var(--font-heading);
	font-size: var(--fs-h4);
	line-height: 1.4;
}

.cc-sp2-related {
	padding: 60px 0;
	background: #fff;
	border-top: 1px solid var(--color-border);
}

.cc-sp2-related__heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 42px;
}

.cc-sp2-related__heading h2 {
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(38px, 3.5vw, 52px);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -.05em;
}

.cc-sp2-related__heading > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 5px;
	border-bottom: 1px solid currentColor;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
}

.cc-sp2-related__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 420px));
	gap: 30px;
}

.cc-sp2-related-card {
	overflow: hidden;
	background: var(--color-nav-surface);
	border-radius: 24px;
}

.cc-sp2-related-card__media {
	display: block;
	height: 280px;
	overflow: hidden;
	background: #e9e9eb;
}

.cc-sp2-related-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.cc-sp2-related-card:hover .cc-sp2-related-card__image {
	transform: scale(1.035);
}

.cc-sp2-related-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 220px;
	padding: 26px;
}

.cc-sp2-related-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: var(--color-subtitle);
	font-family: var(--font-body);
	font-size: 12px;
	line-height: 1.4;
}

.cc-sp2-related-card__meta > span[aria-hidden="true"] {
	width: 4px;
	height: 4px;
	background: var(--color-brand-1);
	border-radius: 50%;
}

.cc-sp2-related-card h3 {
	margin: 18px 0 24px;
	font-family: var(--font-heading);
	font-size: clamp(26px, 2.2vw, 32px);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -.045em;
}

.cc-sp2-related-card h3 a {
	color: inherit;
	text-decoration: none;
}

.cc-sp2-related-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
}

.cc-sp2-related-card__tags a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 7px 12px;
	background: #fff;
	border-radius: 99px;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
}

.cc-sp2-related__heading a:hover,
.cc-sp2-related__heading a:focus-visible,
.cc-sp2-related-card h3 a:hover,
.cc-sp2-related-card h3 a:focus-visible,
.cc-sp2-related-card__tags a:hover,
.cc-sp2-related-card__tags a:focus-visible {
	color: var(--color-brand-1);
}

@media (max-width: 1100px) {
	.cc-sp2-article-layout {
		grid-template-columns: 54px minmax(0, 1fr);
	}
}

@media (max-width: 767px) {
	.cc-sp2-container {
		width: calc(100% - 60px);
	}

	.cc-sp2-hero {
		min-height: calc(100svh - 108px);
		border-radius: var(--radius-16);
	}

	.cc-sp2-hero__background {
		background-position: 58% center;
	}

	.cc-sp2-hero::after {
		background: linear-gradient(90deg, rgba(17, 17, 18, .72), rgba(17, 17, 18, .38));
	}

	.cc-sp2-hero__inner {
		padding-block: 50px;
	}

	.cc-sp2-hero__eyebrow {
		margin-bottom: 18px;
		font-size: 12px;
	}

	.cc-sp2-hero h1 {
		font-size: clamp(44px, 13vw, 58px);
		line-height: 1.03;
	}

	.cc-sp2-article-section {
		padding: 30px 0 80px;
	}

	.cc-sp2-article-layout {
		display: flex;
		flex-direction: column;
		gap: 42px;
	}

	.cc-sp2-share {
		position: static;
		top: auto;
		width: 100%;
		order: 2;
	}

	.cc-sp2-share__sticky {
		position: static;
	}

	.cc-sp2-share__links {
		flex-direction: row;
		width: max-content;
	}

	.cc-sp2-article {
		order: 1;
	}

	.cc-sp2-breadcrumb {
		margin-bottom: 36px;
	}

	.cc-sp2-breadcrumb > span:last-child {
		display: none;
	}

	.cc-sp2-article__content {
		font-size: 16px;
		line-height: 1.75;
	}

	.cc-sp2-article__content h2,
	.cc-sp2-article__content h3,
	.cc-sp2-article__content h4,
	.cc-sp2-article__content h5,
	.cc-sp2-article__content h6 {
		margin-top: 46px;
	}

	.cc-sp2-article__content img {
		border-radius: 18px;
	}

	.cc-sp2-related {
		padding: 60px 0;
	}

	.cc-sp2-related__heading {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 34px;
	}

	.cc-sp2-related__grid {
		grid-template-columns: 1fr;
	}

	.cc-sp2-related-card {
		border-radius: 20px;
	}

	.cc-sp2-related-card__media {
		height: 235px;
	}

	.cc-sp2-related-card__body {
		min-height: 200px;
		padding: 24px;
	}
}

/* Single portfolio project */
.cc-project-single {
	width: 100%;
	color: var(--color-dark);
}

.cc-single-project-template.brxe-shortcode {
	width: 100%;
}

.cc-project-container {
	width: calc(100% - 60px);
	max-width: 1320px;
	margin-inline: auto;
}

.cc-project-intro {
	padding-top: 120px;
	padding-bottom: 60px;
}

.cc-project-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
	column-gap: clamp(70px, 9vw, 150px);
	align-items: start;
}

.cc-project-intro__main {
	min-width: 0;
}

.cc-project-intro__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
}

.cc-project-intro__categories {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0;
}

.cc-project-intro__categories > span {
	margin-right: .25em;
}

.cc-project-intro__categories a {
	color: inherit;
	transition: color .25s ease;
}

.cc-project-intro__categories a:hover,
.cc-project-intro__categories a:focus-visible {
	color: var(--color-brand-1);
}

.cc-project-intro__dot {
	width: 5px;
	height: 5px;
	background: var(--color-brand-1);
	border-radius: 50%;
}

.cc-project-intro__title {
	max-width: 860px;
	margin: 0;
	font-size: clamp(52px, 6vw, 88px);
	line-height: .98;
	letter-spacing: -.05em;
}

.cc-project-intro__summary {
	max-width: 580px;
	margin-top: 20px;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: -.025em;
	font-weight: 400;
}

.cc-project-brief {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding-top: 2px;
}

.cc-project-brief__task > span,
.cc-project-brief__facts dt {
	display: block;
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.cc-project-brief__task p,
.cc-project-brief__facts dd {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

.cc-project-brief__task p {
	font-weight: 400;
}

.cc-project-brief__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 0;
}

.cc-project-brief__facts > div {
	min-width: 0;
	padding-top: 20px;
	border-top: 1px solid #bdbcc0;
}

.cc-project-brief__facts dd {
	font-size: 14px;
	overflow-wrap: anywhere;
}

.cc-project-brief__link {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	color: var(--color-dark);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	transition: color .25s ease;
}

.cc-project-brief__link.button-link-dark {
	font-size: 15px;
}

.cc-project-brief__link:hover,
.cc-project-brief__link:focus-visible {
	color: var(--color-brand-1);
}

.cc-project-gallery {
	padding-bottom: 60px;
}

.cc-project-video {
	padding-bottom: 30px;
}

.cc-project-video--standalone {
	padding-bottom: 30px;
}

.cc-project-video .cc-project-media {
	height: clamp(360px, 60.61vw, 800px);
	border-radius: var(--radius-24);
}

.cc-project-gallery__slider {
	width: 100%;
	height: clamp(360px, 60.61vw, 800px);
	max-height: 800px;
	overflow: hidden;
	background: var(--color-nav-surface);
	border-radius: var(--radius-24);
}

.cc-project-gallery__slider .splide__track,
.cc-project-gallery__slider .splide__list,
.cc-project-gallery__slider .splide__slide {
	height: 100%;
}

.cc-project-gallery__slide {
	display: flex;
	align-items: stretch;
	justify-content: stretch;
}

.cc-project-gallery__slider .splide__arrow {
	width: 24px;
	height: 24px;
	padding: 3px;
	background: transparent;
	border: 0;
	opacity: 1;
	box-shadow: none;
	transition: opacity .25s ease;
}

.cc-project-gallery__slider .splide__arrow--prev {
	left: 16px;
}

.cc-project-gallery__slider .splide__arrow--next {
	right: 16px;
}

.cc-project-gallery__slider .splide__arrow svg {
	width: 18px;
	height: 18px;
	fill: #fff;
	transition: fill .25s ease;
}

.cc-project-gallery__slider .splide__arrow:hover svg,
.cc-project-gallery__slider .splide__arrow:focus-visible svg {
	fill: var(--color-brand-1);
}

.cc-project-media {
	width: 100%;
	height: 100%;
	max-height: 800px;
	margin: 0;
	overflow: hidden;
	background: var(--color-nav-surface);
}

.cc-project-media--image,
.cc-project-media__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cc-project-media--video {
	background: #111;
}

.cc-project-media--video video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cc-project-cta {
	width: calc(100% - 60px);
	max-width: max(1600px, calc(91% - 90px));
	margin: 0 auto 30px;
	padding-block: 68px 72px;
	padding-inline: 0;
	background: var(--color-nav-surface);
	border-radius: var(--radius-24);
}

.cc-project-cta__inner {
	display: flex;
	flex-direction: column;
}

.cc-project-cta__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 60px;
	align-items: end;
}

.cc-project-cta__heading {
	min-width: 0;
}

.cc-project-cta__eyebrow {
	display: block;
	margin-bottom: 15px;
	color: var(--color-dark);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: -.02em;
}

.cc-project-cta h2 {
	max-width: 760px;
	margin: 0;
	font-size: var(--fs-h2);
	line-height: 1.05;
	letter-spacing: -.04em;
}

.cc-project-cta__button.site-header__cta.brxe-button {
	justify-self: end;
	margin: 0;
}

.cc-project-cta__divider {
	width: 100%;
	height: 1px;
	margin-top: 34px;
	background: #d4d3d6;
}

.cc-project-cta__description {
	max-width: 650px;
	margin: 30px 0 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: -.02em;
}

@media (max-width: 991px) {
	.cc-project-intro__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.cc-project-intro__grid {
		row-gap: 60px;
	}

	.cc-project-brief {
		max-width: 680px;
	}

}

@media (max-width: 767px) {
	.cc-project-container {
		width: calc(100% - 60px);
	}

	.cc-project-intro {
		padding-top: 90px;
		padding-bottom: 60px;
	}

	.cc-project-intro__grid {
		row-gap: 50px;
	}

	.cc-project-intro__title {
		font-size: clamp(42px, 14vw, 58px);
	}

	.cc-project-intro__summary {
		font-size: 16px;
	}

	.cc-project-brief__facts {
		grid-template-columns: minmax(0, 1fr);
	}

	.cc-project-video {
		padding-bottom: 20px;
	}

	.cc-project-video .cc-project-media {
		height: clamp(340px, 105vw, 520px);
		border-radius: var(--radius-16);
	}

	.cc-project-gallery__slider {
		height: clamp(340px, 105vw, 520px);
		border-radius: var(--radius-16);
	}

	.cc-project-gallery__slider .splide__arrow {
		width: 24px;
		height: 24px;
		padding: 3px;
	}

	.cc-project-gallery__slider .splide__arrow--prev {
		left: 10px;
	}

	.cc-project-gallery__slider .splide__arrow--next {
		right: 10px;
	}

	.cc-project-cta {
		width: calc(100% - 24px);
		margin-bottom: 12px;
		padding-block: 60px;
		border-radius: var(--radius-16);
	}

	.cc-project-cta__top {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	.cc-project-cta__button.site-header__cta.brxe-button {
		display: inline-flex !important;
		justify-self: start;
	}

	.cc-project-cta__divider {
		margin-top: 40px;
	}

}

html {
	font-size: 15px;
}

body {
	font-family: var(--font-body);
	font-size: var(--fs-paragraph);
	line-height: 1.6;
}

:where(p:last-of-type) + h1,
:where(p:last-of-type) + h2,
:where(p:last-of-type) + h3,
:where(p:last-of-type) + h4,
:where(p:last-of-type) + h5,
:where(p:last-of-type) + h6 {
	margin-block: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.type-h1,
.type-h2,
.type-h3,
.type-h4,
.type-h5,
.type-h6 {
	font-family: var(--font-heading);
	font-weight: 400;
	text-wrap: balance;
}

h1,
.type-h1 {
	font-size: var(--fs-h1);
	letter-spacing: -0.045em;
	line-height: 1;
}

h2,
.type-h2 {
	font-size: var(--fs-h2);
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.type-h2.brxe-heading {
	font-family: "Castoro";
	font-size: var(--fs-h2);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin-top: 5px;
}

h3,
.type-h3 {
	font-size: var(--fs-h3);
	letter-spacing: -0.035em;
	line-height: 1.15;
}

h4,
.type-h4 {
	font-size: var(--fs-h4);
	letter-spacing: -0.03em;
	line-height: 1.2;
}

h5,
.type-h5 {
	font-family: var(--font-subheading);
	font-size: var(--fs-h5);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.4;
}

h6,
.type-h6 {
	font-family: var(--font-subheading);
	font-size: var(--fs-h6);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.4;
}

p,
.type-paragraph {
	font-family: var(--font-body);
	font-size: var(--fs-paragraph);
	letter-spacing: var(--subtitle-spacing);
	line-height: 1.6;
}

.type-subtitle {
	color: var(--color-subtitle);
	font-family: var(--font-body);
	font-size: var(--fs-subtitle);
	font-weight: 500;
	letter-spacing: var(--subtitle-spacing);
	line-height: 1;
	margin-bottom: 15px;
	text-transform: none;
}

.layout-container {
	width: 100%;
	max-width: var(--layout-max);
	margin-inline: auto;
}

.layout-padding {
	padding-inline: var(--layout-padding);
}

.radius-8 { border-radius: var(--radius-8); }
.radius-16 { border-radius: var(--radius-16); }
.radius-24 { border-radius: var(--radius-24); }
.radius-40 { border-radius: var(--radius-40); }

.bricks-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
	padding: 0;
	font-weight: 600;
	letter-spacing: .5px;
	text-align: center;
	border-width: 0;
}

.bricks-button:hover,
.bricks-button:focus-visible {
	background-color: var(--color-brand-1);
}

.type-h5,
.type-h6 {
	font-family: "Inter", sans-serif;
}

.type-subtitle,
.type-menu-title,
.type-menu-title .bricks-nav-menu > li > a,
.site-header__cta,
.mobile-menu__nav,
.mobile-menu__nav .bricks-nav-menu > li > a,
.product-section__filters {
	font-family: "Inter", sans-serif;
	font-weight: 500;
}

/* Home / Hero section 1 */
.hero-section1.brxe-section,
#hero-section1 {
	width: calc(100% - 60px) !important;
	margin-right: 30px !important;
	margin-left: 30px !important;
	padding-top: var(--space-60) !important;
	padding-bottom: var(--space-30) !important;
}

.hero-section1__layout {
	display: flex;
	flex-direction: column;
}

.hero-section1__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
	align-items: stretch;
	gap: var(--space-30);
}

.hero-section1__meta {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--space-30);
}

.hero-section1__info {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.hero-section1__info > * {
	margin: 0;
}

.hero-section1__headline {
	font-size: var(--fs-h1);
	line-height: 1.1;
	margin: 20px 0 0;
}

.hero-section1__headline .hero-line {
	display: block;
	white-space: nowrap;
}

.hero-section1__line {
	width: 100%;
	height: 1px;
	margin-top: var(--space-60);
	background: var(--color-border);
}

/* Homepage product section */
.product-section.brxe-section {
	width: calc(100% - 60px);
	margin-right: 30px;
	margin-left: 30px;
	padding-bottom: var(--space-120);
}

.product-section__layout {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.product-section__filter-bar {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	margin-top: 0;
	margin-bottom: var(--space-30);
}

.product-section__loading {
	position: absolute;
	inset: -4px 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: rgba(255, 255, 255, .88);
	color: var(--color-dark);
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.01em;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
}

.product-section__loading::before {
	width: 14px;
	height: 14px;
	border: 2px solid rgba(45, 43, 48, .2);
	border-top-color: var(--color-brand-1);
	border-radius: 50%;
	content: "";
	animation: product-filter-spin .7s linear infinite;
}

.product-section__filter-bar.is-filtering .product-section__loading {
	opacity: 1;
	visibility: visible;
}

.product-section__filter-bar.is-filtering .product-section__filter-label,
.product-section__filter-bar.is-filtering .product-section__filters {
	opacity: 1;
	pointer-events: none;
}

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

.product-section__filter-label {
	flex: 0 0 auto;
	margin: 0;
	color: var(--color-dark);
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.01em;
	white-space: nowrap;
}

.product-section__filters.brxe-div {
	--brx-btn-options-gap: 8px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
	margin: 0;
	padding: 0;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.01em;
}

.product-section__filter-button.brxe-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: auto;
	min-height: 30px;
	padding: 8px 12px;
	background: var(--color-nav-surface);
	border: 0;
	border-radius: 99px;
	color: var(--color-dark);
	font: inherit;
	white-space: nowrap;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease;
}

.product-section__filter-button.brxe-text-link:focus,
.product-section__filter-button.brxe-text-link:focus-visible {
	outline: none;
	box-shadow: none;
}

.product-section__filter-button[data-count]::after {
	margin-left: 0;
	color: var(--color-dark);
	content: "(" attr(data-count) ")";
	font-size: 11px;
	font-weight: 500;
}

.product-section__filter-button.brxe-text-link.is-active,
.product-section__filter-button.brxe-text-link[aria-pressed="true"] {
	background: var(--color-brand-1);
	color: #fff;
}

.product-section__filter-button.brxe-text-link.is-active::after,
.product-section__filter-button.brxe-text-link[aria-pressed="true"]::after {
	color: #fff;
}

.product-section__filter-button.brxe-text-link:hover,
.product-section__filter-button.brxe-text-link:focus-visible {
	background: var(--color-brand-1);
	color: #fff;
}

.product-section__filter-button.brxe-text-link:hover::after,
.product-section__filter-button.brxe-text-link:focus-visible::after {
	color: #fff;
}

.product-section__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	grid-auto-flow: dense;
	gap: var(--space-30);
	width: 100%;
	transition: height .5s cubic-bezier(.22, 1, .36, 1);
}

.projects-infinite-scroll__sentinel {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	color: var(--color-dark);
	font-size: 13px;
	font-weight: 500;
}

.projects-infinite-scroll__sentinel[hidden] {
	display: none;
}

.projects-infinite-scroll__sentinel.is-loading::before {
	width: 14px;
	height: 14px;
	margin-right: 8px;
	border: 2px solid rgb(45 43 48 / 20%);
	border-top-color: var(--color-brand-1);
	border-radius: 50%;
	content: '';
	animation: product-filter-spin .7s linear infinite;
}

.product-card {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	height: 580px;
	min-height: 580px;
	width: 100%;
	overflow: hidden;
	background: #fff;
	border-radius: var(--radius-24);
	cursor: pointer;
	transform-origin: center center;
	transition: opacity .46s ease, transform .62s cubic-bezier(.16, 1, .3, 1);
	will-change: opacity, transform;
}

.product-card[hidden],
.product-card[aria-hidden="true"] {
	display: none !important;
}

.product-card.is-filter-leaving {
	opacity: 0;
	transform: scale(.92);
	transition-duration: .19s;
}

.product-card.is-filter-entering {
	opacity: 0;
	transform: translateY(14px) scale(.94);
	transition-delay: calc(var(--product-card-index, 0) * 48ms);
}

.product-section__grid.is-filtering {
	overflow: hidden;
	pointer-events: none;
}

.product-card::after {
	position: absolute;
	inset: 35% 0 0;
	z-index: 1;
	background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .68));
	content: "";
	pointer-events: none;
}

.product-card.is-span-2 { grid-column: span 2; }
.product-card.is-span-4 { grid-column: span 4; }
.product-card.is-span-6 { grid-column: span 6; }

.product-card.is-row-pair,
.product-card.is-row-triple,
.product-card.is-row-single {
	height: 580px;
	min-height: 580px;
}

.product-card__media.brxe-shortcode {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.product-card__media .cc-product-media {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-drag: none;
	user-select: none;
}

.product-card__media .cc-product-media--contain {
	object-fit: contain;
	object-position: center center;
}

.product-card__body {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 24px;
	pointer-events: none;
}

.product-card__title {
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: var(--fs-h4);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.product-card__categories {
	margin: 0;
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.02em;
	transition: opacity .25s ease, transform .25s ease;
}

.product-card__cta {
	position: absolute;
	bottom: 24px;
	left: 24px;
	display: inline-flex;
	align-items: center;
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.02em;
	opacity: 0;
	pointer-events: auto;
	transform: translateY(6px);
	transition: opacity .25s ease, transform .25s ease;
}

.product-card__cta::after {
	position: absolute;
	right: 0;
	bottom: -3px;
	left: 0;
	height: 1px;
	background: currentcolor;
	content: "";
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .35s ease;
}

.product-card:hover .product-card__categories,
.product-card:focus-within .product-card__categories {
	opacity: 0;
	transform: translateY(-4px);
}

.product-card:hover .product-card__cta,
.product-card:focus-within .product-card__cta {
	opacity: 1;
	transform: translateY(0);
}

.product-card:hover .product-card__cta::after,
.product-card:focus-within .product-card__cta::after {
	transform: scaleX(1);
}

.product-card-cursor {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: rgba(255, 54, 58, .2);
	border-radius: 99px;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(.82);
	transition: opacity .18s ease, transform .18s ease;
}

.product-card-cursor::before {
	width: 28px;
	height: 28px;
	background: #fff;
	content: "";
	-webkit-mask: url('../images/right-arrow.svg') center / contain no-repeat;
	mask: url('../images/right-arrow.svg') center / contain no-repeat;
}

.product-card-cursor.is-visible {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.cc-site-cursor {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	width: 0;
	height: 0;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	will-change: transform;
}

.cc-site-cursor::before {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50%;
	content: "";
	transform: translate(-50%, -50%) scale(1);
	transition: transform .2s ease-out, background-color .2s ease-out, opacity .2s ease-out;
}

.cc-site-cursor--outer::before {
	width: 32px;
	height: 32px;
	border: 1px solid var(--color-brand-1);
	background-color: transparent;
}

.cc-site-cursor--inner {
	z-index: 10001;
}

.cc-site-cursor--inner::before {
	width: 7px;
	height: 7px;
	background-color: var(--color-brand-1);
}

.cc-site-cursor.is-visible {
	opacity: 1;
	visibility: visible;
}

.cc-site-cursor--outer.is-link-hover::before {
	background-color: color-mix(in srgb, var(--color-brand-1) 12%, transparent);
	transform: translate(-50%, -50%) scale(1.28);
}

.cc-site-cursor--inner.is-link-hover::before {
	transform: translate(-50%, -50%) scale(1);
}

.cc-site-cursor.is-pressed::before {
	transform: translate(-50%, -50%) scale(.82);
}

.cc-site-cursor.is-card-active,
.cc-site-cursor.is-native-cursor {
	opacity: 0;
	visibility: hidden;
}

@media (hover: hover) and (pointer: fine) {
	body.cc-custom-cursor-enabled a,
	body.cc-custom-cursor-enabled button,
	body.cc-custom-cursor-enabled [role="button"],
	body.cc-custom-cursor-enabled .cursor-as-pointer {
		cursor: pointer !important;
	}

	body.cc-custom-cursor-enabled input,
	body.cc-custom-cursor-enabled textarea,
	body.cc-custom-cursor-enabled select,
	body.cc-custom-cursor-enabled [contenteditable="true"] {
		cursor: auto !important;
	}
}

.services-section.brxe-section {
	width: calc(100% - 60px);
	margin-right: 30px;
	margin-left: 30px;
	padding-bottom: var(--space-0);
}

.services-section__layout {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.services-section__divider {
	width: 100%;
	height: 1px;
	background: var(--color-border);
}

.services-section__intro.brxe-div {
	display: grid;
	grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
	align-items: flex-end;
	gap: var(--space-30);
	margin-top: var(--space-30);
}

.services-section__intro-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.services-section__title {
	max-width: 900px;
}

.services-section__description {
	margin: 0;
	color: var(--color-dark);
}

.services-section__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-30);
	width: 100%;
	margin-top: var(--space-60);
}

.service-card {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 580px;
	min-height: 580px;
	padding: var(--space-30);
	overflow: hidden;
	background: var(--color-nav-surface);
	border-radius: var(--radius-24);
	color: var(--color-dark);
}

.service-card__hover-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)),
		url('/wp-content/uploads/2026/08/card1.png');
	background-position: center;
	background-size: cover;
	opacity: 0;
	transform: scale(1);
	transition: opacity .45s ease, transform .6s cubic-bezier(.22, 1, .36, 1);
}

.service-card--creative .service-card__hover-bg {
	background-image:
		linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)),
		url('/wp-content/uploads/2026/08/card2.png');
}

.service-card--identity .service-card__hover-bg {
	background-image:
		linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)),
		url('/wp-content/uploads/2026/08/card3.png');
}

.service-card--digital .service-card__hover-bg {
	background-image:
		linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)),
		url('/wp-content/uploads/2026/08/card4.png');
}

.service-card--content .service-card__hover-bg {
	background-image:
		linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)),
		url('/wp-content/uploads/2026/08/card6.png');
}

.service-card.service-card--cta.brxe-div {
	background-color: var(--color-dark);
	background-image: none;
}

.service-card--cta .service-card__hover-bg {
	display: block;
	background-image:
		linear-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 50%)),
		url('/wp-content/uploads/2026/08/card5.png');
	opacity: 1;
}

.service-card__title,
.service-card__content {
	position: relative;
	z-index: 1;
}

.service-card__title {
	margin: 0;
	transition: color .3s ease;
}

.service-card__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.service-card__description {
	max-width: 620px;
	margin: 0;
	color: var(--color-dark);
	letter-spacing: var(--subtitle-spacing);
	transition: color .3s ease;
}

.service-card__link {
	position: relative;
	display: inline-flex;
	width: max-content;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: var(--subtitle-spacing);
	transition: color .3s ease;
}

.service-card__link::after {
	position: absolute;
	right: 0;
	bottom: -3px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s ease;
}

.service-card__link:hover::after,
.service-card__link:focus-visible::after,
.service-card:hover .service-card__link::after,
.service-card:focus-within .service-card__link::after {
	transform: scaleX(1);
}

.service-card--cta .service-card__title,
.service-card--cta .service-card__description,
.service-card--cta .service-card__link {
	color: #fff !important;
}

.service-card:hover .service-card__hover-bg,
.service-card:focus-within .service-card__hover-bg {
	opacity: 1;
	transform: scale(1.06);
}

.service-card:hover .service-card__title,
.service-card:hover .service-card__description,
.service-card:hover .service-card__link,
.service-card:focus-within .service-card__title,
.service-card:focus-within .service-card__description,
.service-card:focus-within .service-card__link {
	color: #fff;
}

.references-section.brxe-section {
	padding-top: var(--space-60);
	padding-bottom: var(--space-90);
	overflow: hidden;
}

/* Re-enable preserved sections by removing this class in Bricks/source JSON. */
.cc-section--temporarily-hidden {
	display: none !important;
}

.references-section__layout {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.references-section__marquees.brxe-div {
	display: flex;
	flex-direction: column;
	row-gap: 0;
	width: 100vw;
	max-width: none;
	margin-top: 0;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
}

.references-marquee {
	display: flex !important;
	align-items: center !important;
	width: 100% !important;
	height: 108px !important;
	max-height: 108px !important;
	overflow: hidden !important;
}

.references-marquee__track {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 0 !important;
	width: max-content !important;
	height: 108px !important;
	max-height: 108px !important;
	white-space: nowrap !important;
	will-change: transform;
	animation: references-marquee-forward 40s linear infinite;
}

.references-marquee--reverse .references-marquee__track {
	animation-name: references-marquee-reverse;
}

.references-marquee__logo,
.references-marquee__track > img,
.references-marquee__track > .brxe-image {
	display: block !important;
	flex: 0 0 auto !important;
	flex-shrink: 0 !important;
	width: auto !important;
	max-width: 180px !important;
	height: auto !important;
	max-height: 60px !important;
	object-fit: contain !important;
	margin: 0 60px 0 0 !important;
	padding: 0 !important;
	box-sizing: border-box !important;
	filter: grayscale(1);
	opacity: 0.85;
	transition: filter 0.3s ease, opacity 0.3s ease;
}

.references-marquee__logo:hover,
.references-marquee__track > img:hover,
.references-marquee__track > .brxe-image:hover {
	filter: grayscale(0);
	opacity: 1;
}

.references-marquee__word.brxe-text-basic {
	display: inline-flex !important;
	flex: 0 0 auto !important;
	align-items: center;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--color-dark);
	font-family: var(--font-heading);
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -.035em;
	white-space: nowrap;
}

.references-marquee__word.brxe-text-basic::after {
	display: inline-flex;
	align-self: center;
	align-items: center;
	justify-content: center;
	margin: 0 .42em;
	font-family: var(--font-heading);
	font-size: .62em;
	font-weight: 400;
	line-height: 1;
	transform: translateY(.04em);
	content: '*';
}

@keyframes references-marquee-forward {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes references-marquee-reverse {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.references-marquee__track {
		animation-play-state: paused;
	}
}

@media (max-width: 767px) {
	.references-section.brxe-section {
		padding-bottom: var(--space-60);
	}

	.references-section__marquees.brxe-div {
		row-gap: 0;
	}

	.references-marquee,
	.references-marquee__track {
		height: 72px !important;
		max-height: 72px !important;
	}

	.references-marquee__group {
		gap: var(--space-30);
		padding-right: var(--space-30);
	}

	.references-marquee__logo,
	.references-marquee__logo.brxe-image {
		flex-basis: 140px !important;
		width: 140px !important;
		height: 60px !important;
		margin-right: 30px !important;
	}

	.references-marquee__logo img,
	.references-marquee__logo.brxe-image img {
		max-height: 32px !important;
	}
}

.about-section.brxe-section {
	width: calc(100% - 60px);
	margin-right: 30px;
	margin-left: 30px;
	padding-bottom: var(--space-30);
}

.about2-section.brxe-section {
	box-sizing: border-box;
	width: 100%;
	padding: 0 0 var(--space-30);
}

.about2-section__layout.brxe-div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: stretch;
	width: 100%;
	min-height: 600px;
}

.about2-section__media.brxe-div {
	position: relative;
	z-index: 1;
	width: 100%;
	min-width: 0;
	height: 600px;
	min-height: 600px;
	overflow: hidden;
	border-radius: 0 var(--radius-40) var(--radius-40) 0;
}

.about2-section__image.brxe-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-drag: none;
	user-select: none;
}

.about2-section__content.brxe-div {
	position: relative;
	z-index: 2;
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 60px;
}

@media (min-width: 768px) {
	.about2-section__content.brxe-div > * {
		position: relative;
		left: calc(max(var(--layout-padding), calc((100vw - max(1600px, calc(91vw - 35px))) / 2 + var(--layout-padding))) - 60px);
	}
}

.about2-section__title.brxe-heading {
	max-width: 680px;
	margin: 0;
	color: var(--color-dark);
}

.about2-section__description.brxe-text-basic {
	max-width: 620px;
	margin: 30px 0 0;
	color: var(--color-dark);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: -.02em;
}

.about2-section__description.brxe-text-basic + .about2-section__description.brxe-text-basic {
	margin-top: 20px;
}

.about2-section__button.site-header__cta.brxe-button {
	display: inline-flex !important;
	align-self: flex-start;
	justify-self: auto;
	margin-top: 30px;
	text-decoration: none;
}

.about3-section__media.brxe-div {
	border-radius: var(--radius-40) 0 0 var(--radius-40);
}

@media (max-width: 767px) {
	.about2-section.brxe-section {
		padding-bottom: var(--space-60);
	}

	.about2-section__layout.brxe-div {
		grid-template-columns: minmax(0, 1fr);
		min-height: 0;
	}

	.about2-section__media.brxe-div {
		height: 360px;
		min-height: 360px;
		border-radius: 0 var(--radius-24) var(--radius-24) 0;
	}

	.about3-section__media.brxe-div {
		border-radius: var(--radius-24) 0 0 var(--radius-24);
	}

	.about2-section__content.brxe-div {
		padding: 45px 30px 0;
	}
}

.about-testimonials-section.brxe-section {
	box-sizing: border-box;
	width: calc(100% - 60px);
	max-width: max(1600px, calc(91% - 90px));
	margin-right: auto;
	margin-left: auto;
	padding: var(--space-60) 30px;
	background: var(--color-nav-surface);
	border-radius: var(--radius-40);
}

.about-testimonials-section__layout.brxe-div {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	column-gap: clamp(60px, 8vw, 130px);
	align-items: start;
	width: 100%;
	max-width: max(1600px, 92%);
	margin: 0 auto;
}

.about-testimonials-section__intro.brxe-div,
.about-testimonials-section__slider-shell.brxe-div {
	min-width: 0;
}

.about-testimonials-section__title.brxe-heading {
	max-width: 620px;
	margin: 0;
}

.about-testimonials-section__button.site-header__cta.brxe-button {
	display: inline-flex !important;
	align-self: flex-start;
	justify-self: auto;
	margin-top: 30px;
	text-decoration: none;
}

.about-testimonials-section__slider-shell.brxe-div {
	position: relative;
}

.about-testimonials-slider.brxe-slider-nested {
	width: 100%;
	padding-bottom: 76px;
	background: transparent;
}

.about-testimonials-slider .splide__track {
	overflow: hidden;
}

.about-testimonials-slider .splide__slide {
	background: transparent;
}

.about-testimonial-card.brxe-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-width: 0;
	padding: 0;
	background: transparent;
}

.about-testimonial-card__avatar.brxe-image {
	display: block;
	width: 80px;
	height: 80px;
	margin: 0 0 28px;
	object-fit: cover;
	border-radius: 50%;
	pointer-events: none;
	-webkit-user-drag: none;
	user-select: none;
}

.about-testimonial-card__headline.brxe-heading {
	margin: 0 0 18px;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -.02em;
}

.about-testimonial-card__quote.brxe-text-basic {
	max-width: 650px;
	margin: 0;
	color: var(--color-dark);
	font-family: var(--font-heading);
	font-size: clamp(22px, 2vw, 29px);
	font-weight: 400;
	line-height: 1.38;
	letter-spacing: -.035em;
}

.about-testimonial-card__author.brxe-div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 30px;
}

.about-testimonial-card__name.brxe-heading {
	margin: 0;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -.02em;
}

.about-testimonial-card__role.brxe-text-basic {
	margin: 4px 0 0;
	color: var(--color-subtitle);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: -.02em;
}

.about-testimonials-slider .splide__arrows {
	display: flex;
	gap: 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
}

.about-testimonials-slider .splide__arrow {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	width: 44px;
	height: 44px;
	margin: 0;
	color: var(--color-dark);
	background: #fff;
	border: 0;
	border-radius: 50%;
	opacity: 1;
	transform: none;
	transition: color .25s ease, background-color .25s ease;
}

.about-testimonials-slider .splide__arrow:hover,
.about-testimonials-slider .splide__arrow:focus-visible {
	color: #fff;
	background: var(--color-brand-1);
}

.about-testimonials-slider .splide__arrow svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.about-testimonials-slider .splide__arrow--prev svg {
	transform: scaleX(-1);
}

.about-testimonials-slider .splide__arrow--next svg {
	transform: none;
}

.about-testimonials-slider__count.brxe-div {
	display: flex;
	align-items: baseline;
	gap: 7px;
	position: absolute;
	right: 0;
	bottom: 12px;
	z-index: 3;
	width: auto;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -.02em;
}

.about-testimonials-slider__current.brxe-text-basic,
.about-testimonials-slider__total.brxe-text-basic {
	margin: 0;
	font: inherit;
	line-height: inherit;
}

@media (max-width: 767px) {
	.about-testimonials-section.brxe-section {
		padding: var(--space-60) 30px;
		border-radius: var(--radius-24);
	}

	.about-testimonials-section__layout.brxe-div {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 45px;
	}

	.about-testimonials-section__title.brxe-heading {
		max-width: 440px;
	}

	.about-testimonial-card__avatar.brxe-image {
		width: 70px;
		height: 70px;
		margin-bottom: 24px;
	}

	.about-testimonial-card__quote.brxe-text-basic {
		font-size: 22px;
	}
}

.team-section.brxe-section {
	box-sizing: border-box;
	width: calc(100% - 60px);
	max-width: max(1600px, calc(91% - 90px));
	margin-right: auto;
	margin-left: auto;
	padding: var(--space-60) 0 var(--space-30);
}

.team-section__layout.brxe-div {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0 auto;
}

.team-section__header.brxe-div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: var(--space-60);
}

.team-section__title.brxe-heading {
	max-width: 680px;
	margin: 0;
}

.team-section__track.brxe-div {
	display: flex;
	align-items: stretch;
	width: 100%;
	height: 600px;
	overflow: hidden;
	background: var(--color-nav-surface);
	border-radius: var(--radius-40);
}

.team-member__info.brxe-div {
	flex: 0 0 0;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	background: var(--color-nav-surface);
	opacity: 0;
	will-change: flex-basis, opacity;
	transition: flex-basis .85s cubic-bezier(.16, 1, .3, 1), opacity .4s ease;
}

.team-member__info.is-active {
	flex-basis: 25%;
	opacity: 1;
}

.team-member__info-inner.brxe-div {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	width: var(--team-panel-width, 400px);
	min-width: var(--team-panel-width, 400px);
	height: 100%;
	padding: 40px 30px;
	opacity: 0;
	transform: translate3d(-10px, 0, 0);
	backface-visibility: hidden;
	transition: opacity .28s ease, transform .65s cubic-bezier(.16, 1, .3, 1);
}

.team-member__info.is-active .team-member__info-inner.brxe-div {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition-delay: .16s;
}

.team-member__name.brxe-heading {
	margin: 0;
	color: var(--color-dark);
	font-family: var(--font-heading);
	font-size: clamp(22px, 1.8vw, 28px);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -.035em;
}

.team-member__role.brxe-text-basic {
	margin: 8px 0 0;
	color: var(--color-subtitle);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

.team-member__expertise.brxe-text-basic {
	margin: 12px 0 0;
	color: var(--color-dark);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: -.01em;
}

.team-member__description.brxe-text-basic {
	margin: 22px 0 0;
	color: var(--color-dark);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: -.02em;
}

.team-member__read-more.brxe-text-link {
	margin-top: 22px;
}

.team-member__socials.brxe-div {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
}

.team-member__social-link.brxe-text-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: var(--color-dark);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	border: 1px solid rgb(45 43 48 / 18%);
	border-radius: 50%;
	transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.team-member__social-link.brxe-text-link:hover,
.team-member__social-link.brxe-text-link:focus-visible {
	color: #fff;
	background: var(--color-brand-1);
	border-color: var(--color-brand-1);
}

.team-member__media.brxe-div {
	position: relative;
	flex: 0 0 25%;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	cursor: pointer;
}

.team-member__media::after {
	position: absolute;
	inset: 0;
	background: rgb(45 43 48 / 0%);
	content: '';
	pointer-events: none;
	transition: background-color .35s ease;
}

.team-member__media:hover::after,
.team-member__media:focus-visible::after,
.team-member__media.is-active::after {
	background: rgb(45 43 48 / 8%);
}

.team-member__image.brxe-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .65s cubic-bezier(.22, 1, .36, 1);
	-webkit-user-drag: none;
	user-select: none;
}

.team-member__media:hover .team-member__image.brxe-image,
.team-member__media:focus-visible .team-member__image.brxe-image,
.team-member__media.is-active .team-member__image.brxe-image {
	transform: scale(1.025);
}

@media (max-width: 767px) {
	.team-section.brxe-section {
		padding: var(--space-60) 0 var(--space-30);
	}

	.team-section__header.brxe-div {
		margin-bottom: var(--space-30);
	}

	.team-section__track.brxe-div {
		flex-direction: column;
		height: auto;
		overflow: visible;
		border-radius: 0;
	}

	.team-member__info.brxe-div {
		flex: 0 0 auto;
		width: 100%;
		height: auto;
		max-height: 0;
		border-radius: var(--radius-24);
		transition: max-height .5s cubic-bezier(.22, 1, .36, 1), opacity .3s ease, margin .3s ease;
	}

	.team-member__info.is-active {
		max-height: 560px;
		margin-bottom: 12px;
	}

	.team-member__info-inner.brxe-div {
		width: 100%;
		min-width: 0;
		height: auto;
		padding: 30px;
	}

	.team-member__media.brxe-div {
		flex-basis: auto;
		width: 100%;
		height: 430px;
		margin-bottom: 20px;
		border-radius: var(--radius-24);
	}

	.team-member__media:last-child {
		margin-bottom: 0;
	}
}

/* Dynamic team profiles: /ekip/member-slug/ */
.cc-team-single {
	width: 100%;
	padding: 10px 0 120px;
	color: var(--color-dark);
	background: #fff;
}

.cc-team-single__container {
	display: grid;
	grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
	align-items: start;
	gap: clamp(24px, 3vw, 48px);
	width: calc(100% - 60px);
	max-width: 1380px;
	margin-inline: auto;
}

.cc-team-single__portrait-column {
	position: sticky;
	top: 110px;
	height: calc(100svh - 140px);
	min-height: 620px;
}

.cc-team-single__portrait {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	background: var(--color-nav-surface);
	border-radius: var(--radius-24);
}

.cc-team-single__portrait::after {
	position: absolute;
	right: 24px;
	bottom: 24px;
	width: 18px;
	height: 18px;
	content: "";
	background: var(--color-brand-1);
	border: 5px solid rgb(255 255 255 / 82%);
	border-radius: 50%;
	box-shadow: 0 12px 32px rgb(45 43 48 / 24%);
}

.cc-team-single__image,
.cc-team-single__portrait img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
	-webkit-touch-callout: none;
}

.cc-team-single__article {
	min-width: 0;
}

.cc-team-single__header {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 0;
	padding: 30px 0;
	overflow: visible;
	background: transparent;
}

.cc-team-single__header::after {
	position: absolute;
	top: 38px;
	right: -82px;
	z-index: -1;
	width: 230px;
	height: 230px;
	content: "";
	border: 1px solid rgb(242 71 61 / 22%);
	border-radius: 50%;
}

.cc-team-single__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 64px;
	color: var(--color-subtitle);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
}

.cc-team-single__role {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 20px;
	padding: 0;
	color: var(--color-dark);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	background: transparent;
}

.cc-team-single__role span {
	display: block;
	flex: 0 0 9px;
	width: 9px;
	height: 9px;
	background: var(--color-brand-1);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgb(255 54 58 / 10%);
}

.cc-team-single__header h1 {
	max-width: 780px;
	margin: 0;
	color: var(--color-dark);
	font-family: var(--font-heading);
	font-size: clamp(58px, 6vw, 92px);
	font-weight: 400;
	line-height: .98;
	letter-spacing: -.05em;
}

.cc-team-single__expertise {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 720px;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
}

.cc-team-single__expertise li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 10px 14px;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -.02em;
	background: var(--color-nav-surface);
	border-radius: 999px;
}

.cc-team-single__expertise li::before {
	width: 5px;
	height: 5px;
	content: "";
	background: var(--color-brand-1);
	border-radius: 50%;
}

.cc-team-single__socials {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 28px;
}

.cc-team-single__socials:empty {
	display: none;
}

.cc-team-single__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: var(--color-dark);
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	border: 1px solid rgb(45 43 48 / 18%);
	border-radius: 50%;
	transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.cc-team-single__socials a:hover,
.cc-team-single__socials a:focus-visible {
	color: #fff;
	background: var(--color-brand-1);
	border-color: var(--color-brand-1);
}

.cc-team-single__content {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	max-width: none;
	padding: 10px 0 30px;
}

.cc-team-single__bio,
.cc-team-single__profile-section {
	padding: 72px 0;
}

.cc-team-single__bio {
	background: #fff;
	border-top: 1px solid rgb(45 43 48 / 10%);
}

.cc-team-single__section-heading {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 46px;
	padding-bottom: 0;
	border-bottom: 0;
}

.cc-team-single__section-heading > span {
	color: var(--color-brand-1);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .08em;
}

.cc-team-single__section-heading h2 {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -.04em;
}

.cc-team-single__prose {
	max-width: 760px;
}

.cc-team-single__prose p {
	margin: 0 0 24px;
	font-family: var(--font-body);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: -.02em;
}

.cc-team-single__prose p:first-child {
	margin-bottom: 34px;
	font-family: var(--font-heading);
	font-size: 22px;
	line-height: 1.4;
	letter-spacing: -.035em;
}

.cc-team-single__prose p:last-child {
	margin-bottom: 0;
}

.cc-team-single__skills {
	color: var(--color-dark);
	background: transparent;
}

.cc-team-single__profile-section {
	border-top: 1px solid rgb(45 43 48 / 10%);
}

.cc-team-single__section-heading--light {
	border-bottom: 0;
}

.cc-team-single__section-heading--light h2 {
	color: var(--color-dark);
}

.cc-team-single__skills-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
}

.cc-team-single__skill-card {
	position: relative;
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	column-gap: 30px;
	align-items: start;
	min-height: 0;
	padding: 28px 0;
	border: 0;
	border-top: 1px solid rgb(45 43 48 / 8%);
	transition: opacity .3s ease;
}

.cc-team-single__skill-card:first-child {
	border-top: 0;
}

.cc-team-single__skill-card:hover {
	opacity: .82;
}

.cc-team-single__skill-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	grid-row: 1 / span 2;
	width: 88px;
	height: 88px;
	margin: 0;
	background: transparent;
}

.cc-team-single__skill-icon img {
	display: block;
	width: 88px;
	height: 88px;
	object-fit: contain;
}

.cc-team-single__item-index {
	position: absolute;
	top: 34px;
	right: 0;
	color: rgb(45 43 48 / 42%);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .08em;
}

.cc-team-single__skill-card h3 {
	grid-column: 2;
	margin: 4px 52px 10px 0;
	color: var(--color-dark);
	font-size: clamp(19px, 1.4vw, 23px);
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: -.03em;
}

.cc-team-single__skill-card p {
	grid-column: 2;
	margin: 0;
	color: var(--color-subtitle);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
	letter-spacing: -.02em;
}

.cc-team-single__awards {
	background: #fff;
}

.cc-team-single__awards-list {
	display: flex;
	flex-direction: column;
}

.cc-team-single__award-card {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr);
	gap: 20px;
	padding: 25px 18px;
	border-top: 1px solid rgb(45 43 48 / 12%);
	transition: background-color .25s ease, border-radius .25s ease;
}

.cc-team-single__award-card:first-child {
	border-top: 0;
}

.cc-team-single__award-card:hover {
	background: transparent;
}

.cc-team-single__award-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	background: var(--color-brand-1);
	border-radius: 50%;
}

.cc-team-single__award-card h3 {
	margin: 0 0 8px;
	font-size: clamp(18px, 1.4vw, 22px);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -.025em;
}

.cc-team-single__award-card p {
	margin: 0;
	color: var(--color-subtitle);
	font-size: 15px;
	line-height: 1.6;
}

@media (max-width: 900px) {
	.cc-team-single__container {
		grid-template-columns: minmax(0, 40%) minmax(0, 1fr);
		gap: 24px;
	}

	.cc-team-single__header,
	.cc-team-single__bio,
	.cc-team-single__profile-section {
		padding-right: 0;
		padding-left: 0;
	}

	.cc-team-single__skills {
		padding-right: 0;
		padding-left: 0;
	}

	.cc-team-single__header h1 {
		font-size: clamp(48px, 7vw, 68px);
	}

	.cc-team-single__skills-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 767px) {
	.cc-team-single {
		padding: 10px 0 80px;
	}

	.cc-team-single__container {
		display: flex;
		flex-direction: column;
		gap: 0;
		width: calc(100% - 20px);
	}

	.cc-team-single__portrait-column {
		position: static;
		width: 100%;
		height: min(118vw, 620px);
		min-height: 0;
	}

	.cc-team-single__portrait {
		border-radius: var(--radius-16);
	}

	.cc-team-single__header {
		min-height: 0;
		margin-top: 10px;
		padding: 30px 0;
	}

	.cc-team-single__back {
		margin-bottom: 52px;
	}

	.cc-team-single__header h1 {
		font-size: clamp(48px, 14vw, 64px);
	}

	.cc-team-single__expertise {
		margin-top: 26px;
	}

	.cc-team-single__content {
		padding-top: 10px;
	}

	.cc-team-single__bio,
	.cc-team-single__profile-section {
		padding: 52px 24px;
	}

	.cc-team-single__skills {
		margin-right: 0;
		margin-left: 0;
		padding-right: 24px;
		padding-left: 24px;
	}

	.cc-team-single__section-heading {
		gap: 12px;
		margin-bottom: 34px;
	}

	.cc-team-single__section-heading h2 {
		font-size: 32px;
	}

	.cc-team-single__prose p {
		font-size: 16px;
	}

	.cc-team-single__prose p:first-child {
		font-size: 22px;
	}

	.cc-team-single__skill-card {
		grid-template-columns: 76px minmax(0, 1fr);
		column-gap: 18px;
		min-height: 0;
		padding: 24px 0;
	}

	.cc-team-single__skill-icon,
	.cc-team-single__skill-icon img {
		width: 70px;
		height: 70px;
	}

	.cc-team-single__award-card {
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 14px;
		padding-right: 0;
		padding-left: 0;
	}
}

.capabilities-section.brxe-section {
	width: calc(100% - 60px);
	margin-right: 30px;
	margin-left: 30px;
	padding-bottom: var(--space-60);
}

.about-section__layout.brxe-div {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 60px 30px;
	background: var(--color-nav-surface);
	border-radius: var(--radius-40);
}

.about-section__intro {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	align-items: flex-end;
	gap: var(--space-30);
}

.about-section__intro-copy,
.about-section__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.about-section__content {
	gap: var(--space-30);
}

.about-section__title,
.about-section__description {
	margin: 0;
}

.about-section__description {
	color: var(--color-dark);
	letter-spacing: var(--subtitle-spacing);
}

.button-link-dark {
	position: relative;
	display: inline-flex;
	width: max-content;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: var(--subtitle-spacing);
	transition: color .25s ease;
}

.button-link-dark::after {
	position: absolute;
	right: 0;
	bottom: -3px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(1);
	transform-origin: left;
}

.button-link-dark.brxe-text-link:hover::after,
.button-link-dark.brxe-text-link:focus-visible::after {
	background-color: var(--color-brand-1);
	animation: button-link-dark-underline .4s ease both;
}

.button-link-dark.brxe-text-link:hover,
.button-link-dark.brxe-text-link:focus-visible {
	color: var(--color-brand-1);
}

@keyframes button-link-dark-underline {
	from { transform: scaleX(0); }
	to { transform: scaleX(1); }
}

.about-section__media-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: var(--space-30);
	width: 100%;
	margin-top: var(--space-60);
}

.about-section__media {
	width: 100%;
	height: 580px;
	overflow: hidden;
	border-radius: var(--radius-24);
}

.about-section__image,
.about-section__image.brxe-image,
.about-section__image.brxe-image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
}

.about-section__image.brxe-image,
.about-section__image.brxe-image img {
	object-fit: cover;
	-webkit-user-drag: none;
	user-select: none;
}

.about-section__features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-30);
	width: 100%;
	margin-top: var(--space-60);
}

.about-feature {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}

.about-feature__icon.brxe-image {
	display: block;
	width: 120px;
	height: 120px;
	margin-bottom: -15px;
	object-fit: contain;
}

.about-feature__title,
.about-feature__description {
	margin: 0;
}

.about-feature__divider.brxe-div {
	width: 100%;
	height: 1px;
	margin-top: 15px;
	margin-bottom: 15px;
	background: var(--color-border);
}

.about-feature__description {
	color: var(--color-dark);
	letter-spacing: var(--subtitle-spacing);
}

@media (max-width: 1179px) {
	.about-section__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.about-section.brxe-section {
		padding-bottom: var(--space-30);
	}

	.about-section__intro,
	.about-section__media-grid,
	.about-section__features {
		grid-template-columns: minmax(0, 1fr);
	}

	.about-section__features {
		gap: var(--space-60);
	}

	.about-section__media {
		height: 350px;
	}

	.about-section__media--secondary.brxe-image {
		display: none;
	}
}

@media (max-width: 480px) {
	.about-section__media {
		height: 350px;
	}
}

/* Global footer */
.site-footer.brxe-section {
	overflow: hidden;
	max-width: max(1600px, calc(91% - 90px));
	margin-right: auto;
	margin-left: auto;
}

.site-footer__inner.layout-container {
	max-width: none;
}

.site-footer__label,
.site-footer__text,
.site-footer__link,
.site-footer__cta-copy,
.site-footer__copyright {
	margin: 0;
}

.site-footer__label.brxe-heading {
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: var(--subtitle-spacing);
	line-height: 1.2;
	opacity: .85;
}

.site-footer__text.brxe-text-link {
	transition: color .25s ease;
}

.site-footer__text.brxe-text-link:hover,
.site-footer__text.brxe-text-link:focus-visible {
	color: var(--color-brand-1);
}

.site-footer__link.brxe-text-link,
.site-footer__legal-link.brxe-text-link {
	position: relative;
	width: fit-content;
	transition: color .25s ease;
}

.site-footer__link.brxe-text-link::after,
.site-footer__legal-link.brxe-text-link::after {
	position: absolute;
	right: 0;
	bottom: -2px;
	left: 0;
	height: 1px;
	background: currentcolor;
	content: '';
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform .35s ease;
}

.site-footer__link.brxe-text-link:hover,
.site-footer__link.brxe-text-link:focus-visible,
.site-footer__legal-link.brxe-text-link:hover,
.site-footer__legal-link.brxe-text-link:focus-visible {
	color: var(--color-brand-1);
}

.site-footer__link.brxe-text-link:hover::after,
.site-footer__link.brxe-text-link:focus-visible::after,
.site-footer__legal-link.brxe-text-link:hover::after,
.site-footer__legal-link.brxe-text-link:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.site-footer__cta.brxe-button {
	transition: background-color .25s ease, color .25s ease;
}

.site-footer__cta.brxe-button:hover,
.site-footer__cta.brxe-button:focus-visible {
	background-color: var(--color-brand-1);
	color: #fff;
}

.site-footer__wordmark.brxe-heading {
	font-size: clamp(72px, 15.9vw, 305px);
	white-space: nowrap;
}

.site-footer__slogan.brxe-heading {
	font-size: clamp(var(--fs-h3-mobile), 3.2vw, 38px);
}

.site-footer__cta-copy.brxe-text-basic {
	max-width: 380px;
}

.site-footer__bottom.site-footer__divider {
	height: auto;
	background: transparent !important;
	border-top: 1px solid rgb(255 255 255 / 14%);
}

.site-footer__scroll-top.brxe-text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #aaa8ad;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: var(--subtitle-spacing);
	line-height: 1;
	transition: color .25s ease;
}

.site-footer__scroll-top.brxe-text-link::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: #5b5960;
	border-radius: 99px;
	color: #fff;
	content: '\2191';
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1;
	transition: background-color .25s ease;
}

.site-footer__scroll-top.brxe-text-link:hover,
.site-footer__scroll-top.brxe-text-link:focus-visible {
	color: var(--color-brand-1);
}

.site-footer__scroll-top.brxe-text-link:hover::before,
.site-footer__scroll-top.brxe-text-link:focus-visible::before {
	background: var(--color-brand-1);
}

@media (max-width: 767px) {
	.site-footer.brxe-section {
		width: calc(100% - 24px);
		margin-right: auto;
		margin-bottom: 12px;
		margin-left: auto;
		padding-right: 18px;
		padding-left: 18px;
	}

	.site-footer__wordmark.brxe-heading {
		font-size: clamp(48px, 14vw, 88px);
		white-space: normal;
	}
}

/* Homepage blog section */
.capabilities-section__subtitle.brxe-text-basic,
.capabilities-section__title.brxe-heading {
	color: #aaa8ad;
	text-align: right;
}

.capabilities-section__title.brxe-heading {
	font-size: clamp(48px, 6vw, 100px);
	line-height: 1.05;
	white-space: nowrap;
}

.capabilities-section__button.brxe-button {
	transition: background-color .25s ease, color .25s ease;
}

.capabilities-section__button.brxe-button:hover,
.capabilities-section__button.brxe-button:focus-visible {
	background-color: var(--color-brand-1);
	color: #fff;
}

.capabilities-section__button--muted.brxe-button {
	opacity: .5;
}

.capabilities-section__title.brxe-heading {
	font-family: "Castoro";
	font-size: clamp(48px, 5vw, 100px);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.05em;
	color: #aaa8ad;
}

.capabilities-item.brxe-div {
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

.capabilities-item__title.brxe-heading {
	white-space: nowrap;
}

.capabilities-item__index.brxe-text-basic {
	font-weight: 700;
}

.capabilities-item__description.brxe-text-basic {
	max-width: 280px;
}

.capabilities-item__index.brxe-text-basic::after {
	position: relative;
	top: -0.2em;
	margin-left: 5px;
	content: '+';
	font-size: .48em;
}

@media (max-width: 1179px) {
	.capabilities-section__grid.brxe-div {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.capabilities-section__header.brxe-div {
		align-items: flex-start;
		width: 100%;
		margin-left: 0;
	}

	.capabilities-section__subtitle.brxe-text-basic,
	.capabilities-section__title.brxe-heading {
		text-align: left;
	}

	.capabilities-section__title.brxe-heading {
		font-size: clamp(40px, 11vw, 64px);
		white-space: normal;
	}

	.capabilities-section__actions.brxe-div {
		justify-content: flex-start;
		flex-wrap: wrap;
		row-gap: 10px;
	}

	.capabilities-section__grid.brxe-div {
		width: 100%;
	}
}

.blog-section.brxe-section {
	width: calc(100% - 60px);
	margin-right: 30px;
	margin-left: 30px;
	padding-bottom: var(--space-60);
}

.blog-section__layout {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.blog-section__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--space-30);
	padding-top: var(--space-30);
	padding-bottom: var(--space-60);
}

.blog-section__header-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.blog-section__list {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.blog-card {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(0, 2.8fr) 30px;
	align-items: start;
	gap: var(--space-30);
	width: 100%;
	padding-block: var(--space-30);
	border-top: 1px solid var(--color-border);
}

.blog-card__meta,
.cc-blog-meta {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

.cc-blog-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	color: var(--color-dark);
}

.cc-blog-meta time {
	font-weight: 500;
}

.cc-blog-meta__reading-time {
	font-weight: 300;
}

.cc-blog-meta__dot {
	display: block;
	width: 4px;
	height: 4px;
	background: var(--color-brand-1);
	border-radius: 99px;
}

.blog-card__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}

.blog-card__title,
.blog-card__title.brxe-heading {
	margin: 0;
	color: var(--color-dark);
	font-family: var(--font-heading);
	font-size: var(--fs-h4);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.03em;
}

.blog-card__title a {
	color: inherit;
	transition: color .25s ease;
}

.blog-card__title a:hover,
.blog-card__title a:focus-visible {
	color: var(--color-brand-1);
}

.blog-card__excerpt.brxe-shortcode {
	margin-top: 10px;
}

.cc-blog-excerpt {
	margin: 0;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: var(--fs-paragraph);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: var(--subtitle-spacing);
}

.blog-card__tags.brxe-shortcode {
	margin-top: 15px;
}

.cc-blog-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.cc-blog-tag {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 7px 12px;
	background: var(--color-nav-surface);
	border-radius: 99px;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.01em;
	transition: background-color .25s ease, color .25s ease;
}

.cc-blog-tag:hover,
.cc-blog-tag:focus-visible {
	background: var(--color-brand-1);
	color: #fff;
}

/* Single blog post */
.single-post-hero.brxe-section {
	width: 100%;
	padding: 90px 0 0;
	background: #fff;
}

.single-post-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding-inline: var(--layout-padding);
}

.single-post-hero__meta.brxe-shortcode,
.cc-single-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	justify-content: flex-start;
	max-width: 1100px;
}

.cc-single-post-meta {
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -.01em;
}

.cc-single-post-meta a {
	color: inherit;
	text-decoration: none;
	transition: color .25s ease;
}

.cc-single-post-meta a:hover,
.cc-single-post-meta a:focus-visible {
	color: var(--color-brand-1);
}

.cc-single-post-meta__separator {
	width: 4px;
	height: 4px;
	background: var(--color-brand-1);
	border-radius: 50%;
}

.single-post-hero__title.brxe-heading {
	max-width: 1100px;
	margin: 30px 0 0;
	color: var(--color-dark);
	font-family: var(--font-heading);
	font-size: 68px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -.065em;
}

.single-post__featured.brxe-image {
	width: 100%;
	max-width: 1320px;
	margin-top: 60px;
	overflow: hidden;
	border-radius: 40px;
}

.single-post__featured.brxe-image img {
	display: block;
	width: 100%;
	max-height: 820px;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 40px;
}

.single-post-content-section.brxe-section {
	width: 100%;
	padding: 60px 0;
}

.single-post-content {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1100px;
	padding-inline: 0;
}

.single-post-content__body {
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: -.02em;
}

.single-post-content__body p,
.single-post-content__body .type-paragraph {
	font-family: var(--font-body);
	font-size: 17px;
	font-weight: 300;
	line-height: 1.8;
	letter-spacing: var(--subtitle-spacing);
}

.single-post-content__body > :first-child {
	margin-top: 0;
}

.single-post-content__body > :last-child {
	margin-bottom: 0;
}

.single-post-content__body p,
.single-post-content__body ul,
.single-post-content__body ol,
.single-post-content__body blockquote,
.single-post-content__body figure,
.single-post-content__body table {
	margin-block: 0 30px;
}

.single-post-content__body h2,
.single-post-content__body h3,
.single-post-content__body h4,
.single-post-content__body h5,
.single-post-content__body h6 {
	margin: 60px 0 24px;
	color: var(--color-dark);
	font-family: var(--font-heading);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -.045em;
}

.single-post-content__body h2 { font-size: var(--fs-h2); }
.single-post-content__body h3 { font-size: var(--fs-h3); }
.single-post-content__body h4 { font-size: var(--fs-h4); }
.single-post-content__body h5 { font-size: var(--fs-h5); }
.single-post-content__body h6 { font-size: var(--fs-h6); }

.single-post-content__body img,
.single-post-content__body figure,
.single-post-content__body .wp-block-image,
.single-post-content__body .wp-block-gallery {
	border-radius: 40px;
}

.single-post-content__body img {
	display: block;
	max-width: 100%;
	height: auto;
}

.single-post-content__body blockquote {
	padding: 30px;
	background: var(--color-nav-surface);
	border-radius: var(--radius-24);
	font-family: var(--font-heading);
	font-size: var(--fs-h4);
	line-height: 1.4;
}

.single-post-content__body a {
	color: var(--color-brand-1);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.single-post-content__tags.brxe-shortcode {
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid var(--color-border);
}

@media (max-width: 767px) {
	.single-post-hero.brxe-section {
		padding-top: 60px;
	}

	.single-post-hero__inner {
		padding-inline: 30px;
	}

	.single-post-hero__title.brxe-heading {
		margin-top: 20px;
	}

	.single-post__featured.brxe-image {
		margin-top: 40px;
	}

	.single-post-content-section.brxe-section {
		padding: 60px 0;
	}

	.single-post-content__body {
		font-size: 16px;
	}

	.single-post-content__body h2,
	.single-post-content__body h3,
	.single-post-content__body h4,
	.single-post-content__body h5,
	.single-post-content__body h6 {
		margin-top: 40px;
	}
}

.blog-card__arrow.brxe-text-link {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: end;
	width: 24px;
	height: 24px;
	color: var(--color-dark);
	font-size: 0;
	transition: color .25s ease;
}

.blog-card__arrow.brxe-text-link::before {
	display: block;
	width: 20px;
	height: 20px;
	background-color: currentColor;
	content: "";
	-webkit-mask: url('../images/right-arrow.svg') center / contain no-repeat;
	mask: url('../images/right-arrow.svg') center / contain no-repeat;
}

.blog-card__arrow.brxe-text-link:hover,
.blog-card__arrow.brxe-text-link:focus-visible {
	color: var(--color-brand-1);
}

@media (max-width: 767px) {
	.blog-section.brxe-section {
		padding-bottom: var(--space-60);
	}

	.blog-section__header {
		flex-direction: column;
		align-items: flex-start;
		padding-bottom: var(--space-30);
	}

	.blog-card {
		grid-template-columns: minmax(0, 1fr) 30px;
		gap: 20px;
	}

	.blog-card__meta {
		grid-column: 1 / -1;
	}

	.blog-card__content {
		grid-column: 1;
	}

	.blog-card__arrow {
		grid-column: 2;
		grid-row: 2;
	}
}

/* Homepage CTA section */
.cta-section.brxe-section {
	width: calc(100% - 60px);
	margin-right: 30px;
	margin-left: 30px;
	padding-bottom: var(--space-30);
}

.cta-section__layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: var(--space-30);
	width: 100%;
	min-height: 540px;
}

.cta-section__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: var(--space-30);
	background: var(--color-nav-surface);
	border-radius: var(--radius-24);
}

.cta-section__title,
.cta-section__description {
	margin: 0;
}

.cta-section__title {
	max-width: 920px;
}

.cta-section__description.brxe-text-basic {
	margin-top: var(--space-30);
	font-family: "Inter";
	font-size: var(--fs-paragraph);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: var(--subtitle-spacing);
	color: var(--color-dark);
}

.cta-section__email.brxe-text-link {
	position: relative;
	display: inline-flex;
	width: max-content;
	max-width: 100%;
	color: #2d2b30;
	font-family: "Castoro";
	font-size: var(--fs-h2);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.04em;
	opacity: .75;
	overflow-wrap: anywhere;
	transition: color .25s ease, opacity .25s ease;
}

.cta-section__email.brxe-text-link::after {
	position: absolute;
	right: 0;
	bottom: -3px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .4s ease;
}

.cta-section__email.brxe-text-link:hover,
.cta-section__email.brxe-text-link:focus-visible {
	color: var(--color-brand-1);
	opacity: 1;
}

.cta-section__email.brxe-text-link:hover::after,
.cta-section__email.brxe-text-link:focus-visible::after {
	transform: scaleX(1);
}

.cta-section__divider.brxe-div {
	width: 100%;
	height: 1px;
	margin-top: 30px;
	background-color: var(--color-border);
}

.cta-section__button.brxe-button {
	margin-top: var(--space-30);
	padding: 14px 24px;
	background-color: var(--color-dark);
	border-radius: var(--radius-40);
	color: #fff;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.02em;
	transition: background-color .25s ease;
}

.cta-section__button.brxe-button:hover,
.cta-section__button.brxe-button:focus-visible {
	background-color: var(--color-brand-1);
	color: #fff;
}

.cta-section__media {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: var(--radius-24);
}

.cta-section__image,
.cta-section__image.brxe-image,
.cta-section__image.brxe-image img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
}

@media (max-width: 767px) {
	.cta-section.brxe-section {
		padding-bottom: var(--space-30);
	}

	.cta-section__layout {
		grid-template-columns: minmax(0, 1fr);
		min-height: 0;
	}

	.cta-section__content {
		padding: var(--space-30);
	}

	.cta-section__media {
		height: 420px;
		min-height: 420px;
	}
}

@media (max-width: 480px) {
	.cta-section__media {
		height: 360px;
		min-height: 360px;
	}
}

@media (pointer: fine) {
	.product-card,
	.product-card a,
	.service-card,
	.service-card a {
		cursor: none;
	}
}

@media (hover: none) {
	.product-card__categories {
		opacity: 1 !important;
		transform: none !important;
	}

	.product-card__cta {
		position: relative;
		bottom: auto;
		left: auto;
		align-self: flex-start;
		opacity: 1;
		transform: none;
	}
}

/* Global header */
:where(.brxe-nav-menu) .bricks-nav-menu > li {
	margin: 0;
}

#brx-header {
	--cc-header-height: 158px;
	--cc-header-top: 0px;
	position: sticky;
	top: var(--cc-header-top);
	z-index: 9994;
	transition: top .42s cubic-bezier(.22, 1, .36, 1);
	will-change: top;
}

body.admin-bar #brx-header {
	--cc-header-top: 32px;
}

#brx-header.cc-header--hidden {
	top: calc(var(--cc-header-top) - var(--cc-header-height));
}

#brx-header.cc-header--scrolled .site-header {
	background: transparent;
	border: 0;
	box-shadow: none;
}

.site-header.brxe-section {
	width: calc(100% - 60px);
	margin-right: 30px;
	margin-left: 30px;
	padding-block: 24px;
	background: #fff;
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: var(--space-30);
}

.site-header__logo {
	position: relative;
	width: 110px;
	height: 110px;
	overflow: visible;
	isolation: isolate;
	justify-self: start;
}

@media (min-width: 1500px) {
	:root {
		--fs-h5: var(--fs-h5-wide) !important;
	}

	.cta-section__email.brxe-text-link {
		font-size: var(--fs-h2-wide);
	}

	body .type-h1-1500[class] { font-size: var(--fs-h1-wide); }
	body .type-h2-1500[class] { font-size: var(--fs-h2-wide); }
	body .type-h3-1500[class] { font-size: var(--fs-h3-wide); }
	body .type-h4-1500[class] { font-size: var(--fs-h4-wide); }
	body .type-h5-1500[class] { font-size: var(--fs-h5-wide); }
	body .type-h6-1500[class] { font-size: var(--fs-h6-wide); }
	body .type-paragraph-1500[class] { font-size: var(--fs-paragraph-wide); }
	body .type-subtitle-1500[class] { font-size: var(--fs-subtitle-wide); }
	body .type-menu-title-1500,
	body .type-menu-title-1500 .bricks-nav-menu > li > a { font-size: var(--fs-menu-wide); }
	body .type-button-1500[class] { font-size: var(--fs-button-wide); }
	body .capabilities-section__title.brxe-heading { font-size: 78px; }
}

.site-header__logo .bricks-site-logo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-header__logo.cc-logo-animated .cc-logo-layer {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	backface-visibility: hidden;
	transform: translateZ(0);
	transform-origin: 50% 50%;
	will-change: transform;
}

.site-header__logo.cc-logo-animated .cc-logo-layer--center {
	z-index: 2;
	-webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 55%, transparent 61%);
	mask-image: radial-gradient(circle at 50% 50%, #000 0 55%, transparent 61%);
}

.site-header__logo.cc-logo-animated .cc-logo-layer--ring {
	z-index: 1;
	pointer-events: none;
	-webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 0 55%, #000 61%);
	mask-image: radial-gradient(circle at 50% 50%, transparent 0 55%, #000 61%);
}

.site-header__logo.cc-logo-animated:hover .cc-logo-layer--ring,
.site-header__logo.cc-logo-animated:focus-visible .cc-logo-layer--ring {
	filter: brightness(1.06);
}

@media (max-width: 782px) {
	body.admin-bar #brx-header {
		--cc-header-top: 46px;
	}
}

@media (prefers-reduced-motion: reduce) {
	#brx-header {
		transition-duration: .01ms;
	}

	.site-header__logo.cc-logo-animated .cc-logo-layer--ring {
		will-change: auto;
	}
}

.site-social-rail.brxe-div {
	position: fixed;
	top: 50%;
	right: 18px;
	z-index: 9990;
	display: block;
	width: 0;
	height: 0;
}

.site-social-rail__inner.brxe-div {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	width: max-content !important;
	min-width: max-content;
	gap: 8px;
	flex-wrap: nowrap;
	transform: translate(-58%, -50%) rotate(-90deg);
	transform-origin: center;
}

.site-social-rail__caption.brxe-text-basic,
.site-social-rail__separator.brxe-text-basic,
.site-social-rail__link.brxe-text-link {
	flex: 0 0 auto;
	width: max-content !important;
	min-width: max-content;
	white-space: nowrap;
}

.site-social-rail__link.brxe-text-link {
	position: relative;
	color: var(--color-dark);
	text-decoration: none;
	transition: color .25s ease;
}

.site-social-rail__link.brxe-text-link::after {
	position: absolute;
	right: 0;
	bottom: -3px;
	left: 0;
	height: 1px;
	background-color: var(--color-brand-1);
	content: "";
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .35s ease;
}

.site-social-rail__link.brxe-text-link:hover,
.site-social-rail__link.brxe-text-link:focus-visible {
	color: var(--color-brand-1);
}

.site-social-rail__link.brxe-text-link:hover::after,
.site-social-rail__link.brxe-text-link:focus-visible::after {
	transform: scaleX(1);
}

@media (max-width: 1179px) {
	.site-social-rail.brxe-div {
		display: none;
	}
}

.site-header__actions.brxe-div {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	justify-self: end;
	width: auto;
	gap: 12px;
}

.desktop-hamburger.brxe-div {
	position: relative;
	display: flex;
	flex: 0 0 44px;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background-color: var(--color-nav-surface);
	border-radius: 99px;
	cursor: pointer;
}

.desktop-hamburger.brxe-div::after {
	width: 20px;
	height: 16px;
	background-color: var(--color-dark);
	content: "";
	-webkit-mask: url('../images/hamburger-menu-ikon.svg') center / contain no-repeat;
	mask: url('../images/hamburger-menu-ikon.svg') center / contain no-repeat;
	transition: background-color .25s ease;
}

.desktop-hamburger.brxe-div:hover::after,
.desktop-hamburger.brxe-div:focus-visible::after {
	background-color: var(--color-brand-1);
}

.desktop-hamburger.brxe-div:focus-visible,
.desktop-offcanvas__close.brxe-div:focus-visible {
	outline: 2px solid var(--color-brand-1);
	outline-offset: 3px;
}

.desktop-offcanvas.brxe-div {
	position: fixed;
	inset: 0;
	z-index: 9995;
	display: flex;
	width: 100vw;
	height: 100dvh;
	margin: 0;
	background-color: rgb(45 43 48 / 97%);
	backdrop-filter: blur(2px);
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	visibility: hidden;
	transition: opacity .42s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .42s;
}

.desktop-offcanvas.brxe-div.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
	transition-delay: 0s;
}

.desktop-offcanvas__close.brxe-div {
	position: absolute;
	top: 60px;
	right: 30px;
	left: auto;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: #000;
	border-radius: 99px;
	cursor: pointer;
}

.desktop-offcanvas__close.brxe-div::after {
	width: 16px;
	height: 16px;
	color: #fff;
	background-color: transparent;
	background-image:
		linear-gradient(45deg, transparent 42%, currentcolor 43% 57%, transparent 58%),
		linear-gradient(-45deg, transparent 42%, currentcolor 43% 57%, transparent 58%);
	content: "";
	transition: color .25s ease;
}

.desktop-offcanvas__close.brxe-div:hover::after,
.desktop-offcanvas__close.brxe-div:focus-visible::after {
	color: var(--color-brand-1);
}

.desktop-offcanvas__inner.brxe-div {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding: 120px 60px 45px;
}

.desktop-offcanvas__nav.brxe-nav-menu {
	width: min(520px, 100%);
}

.desktop-offcanvas__nav .bricks-nav-menu {
	display: flex !important;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	margin: 0;
	gap: 2px;
	counter-reset: desktop-offcanvas-item;
}

.desktop-offcanvas__nav .bricks-nav-menu > li {
	width: 100%;
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .45s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
}

.desktop-offcanvas.is-open .desktop-offcanvas__nav .bricks-nav-menu > li {
	opacity: 1;
	transform: translateY(0);
}

.desktop-offcanvas.is-open .desktop-offcanvas__nav .bricks-nav-menu > li:nth-child(1) { transition-delay: .08s; }
.desktop-offcanvas.is-open .desktop-offcanvas__nav .bricks-nav-menu > li:nth-child(2) { transition-delay: .13s; }
.desktop-offcanvas.is-open .desktop-offcanvas__nav .bricks-nav-menu > li:nth-child(3) { transition-delay: .18s; }
.desktop-offcanvas.is-open .desktop-offcanvas__nav .bricks-nav-menu > li:nth-child(4) { transition-delay: .23s; }
.desktop-offcanvas.is-open .desktop-offcanvas__nav .bricks-nav-menu > li:nth-child(5) { transition-delay: .28s; }
.desktop-offcanvas.is-open .desktop-offcanvas__nav .bricks-nav-menu > li:nth-child(6) { transition-delay: .33s; }

.desktop-offcanvas__nav .bricks-nav-menu > li > a {
	position: relative;
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
	width: max-content;
	max-width: 100%;
	padding: 4px 0 4px 46px;
	font-family: "Inter", sans-serif;
	font-size: clamp(38px, 3.4vw, 56px);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.04em;
	color: #fff;
	text-align: left;
	transition: color .25s ease;
	counter-increment: desktop-offcanvas-item;
}

.desktop-offcanvas__nav .bricks-nav-menu > li > a::before {
	position: absolute;
	top: 13px;
	left: 0;
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	color: #aaa8ad;
	content: "0" counter(desktop-offcanvas-item);
}

.desktop-offcanvas__nav .bricks-nav-menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 46px;
	height: 2px;
	background-color: var(--color-brand-1);
	content: "";
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .38s cubic-bezier(.22, 1, .36, 1);
}

.desktop-offcanvas__nav .bricks-nav-menu > li > a:hover,
.desktop-offcanvas__nav .bricks-nav-menu > li > a:focus-visible {
	color: var(--color-brand-1);
}

.desktop-offcanvas__nav .bricks-nav-menu > li > a:hover::after,
.desktop-offcanvas__nav .bricks-nav-menu > li > a:focus-visible::after {
	transform: scaleX(1);
}

.desktop-offcanvas__details.brxe-div {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: end;
	width: 100%;
	gap: var(--space-30);
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .45s ease .25s, transform .55s cubic-bezier(.22, 1, .36, 1) .25s;
}

.desktop-offcanvas.is-open .desktop-offcanvas__details {
	opacity: 1;
	transform: translateY(0);
}

.desktop-offcanvas__detail-title.brxe-heading,
.desktop-offcanvas__detail-text.brxe-text-basic,
.desktop-offcanvas__detail-link.brxe-text-link {
	margin: 0;
}

.desktop-offcanvas__detail-link.brxe-text-link {
	position: relative;
	width: max-content;
	max-width: 100%;
	transition: color .25s ease;
}

.desktop-offcanvas__detail-link.brxe-text-link::after {
	position: absolute;
	right: 0;
	bottom: -2px;
	left: 0;
	height: 1px;
	background-color: var(--color-brand-1);
	content: "";
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .35s ease;
}

.desktop-offcanvas__detail-link.brxe-text-link:hover,
.desktop-offcanvas__detail-link.brxe-text-link:focus-visible {
	color: var(--color-brand-1);
}

.desktop-offcanvas__detail-link.brxe-text-link:hover::after,
.desktop-offcanvas__detail-link.brxe-text-link:focus-visible::after {
	transform: scaleX(1);
}

.desktop-offcanvas__socials.brxe-social-icons {
	justify-self: end;
	gap: 12px;
}

.desktop-offcanvas__socials.brxe-social-icons li {
	width: 40px;
	height: 40px;
	margin: 0;
	background-color: rgb(255 255 255 / 8%);
	border-radius: 99px;
}

.desktop-offcanvas__socials.brxe-social-icons li a {
	background-color: transparent;
	color: #fff;
	transition: color .25s ease;
}

.desktop-offcanvas__socials.brxe-social-icons li:hover a,
.desktop-offcanvas__socials.brxe-social-icons li:focus-within a {
	color: var(--color-brand-1) !important;
}

body.desktop-offcanvas-open {
	overflow: hidden;
}

body.desktop-offcanvas-open .site-social-rail {
	opacity: 0;
	pointer-events: none;
}

@media (min-width: 1500px) {
	.desktop-offcanvas__inner.brxe-div {
		padding: 140px 80px 55px;
	}

	.desktop-offcanvas__nav .bricks-nav-menu > li > a {
		font-size: 60px;
	}
}

@media (max-width: 767px) {
	.desktop-hamburger.brxe-div,
	.desktop-offcanvas.brxe-div {
		display: none;
	}
}

@media (max-width: 767px) {
	.site-header__actions.brxe-div {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.desktop-offcanvas.brxe-div,
	.desktop-offcanvas__nav .bricks-nav-menu > li,
	.desktop-offcanvas__details.brxe-div {
		transition-duration: .01ms;
	}
}

.site-header__nav-shell.brxe-div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	padding: 6px 16px;
	background-color: var(--color-nav-surface);
	border-radius: var(--radius-16);
}

.site-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
}

.type-menu-title .bricks-nav-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

#brxe-cchd05 .bricks-nav-menu {
	gap: 15px;
}

.type-menu-title .bricks-nav-menu > li {
	margin: 0;
}

.type-menu-title .bricks-nav-menu > li > a {
	padding: 8px 10px;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1;
	transition: opacity .25s ease;
}

#brxe-cchd05 .bricks-nav-menu > li > a {
	padding: 8px 10px;
}

.site-header__nav-shell .bricks-nav-menu:hover > li:not(:hover) > a {
	opacity: .35;
}

.site-header__nav-shell .bricks-nav-menu > li.cc-menu-item--inactive > a {
	opacity: .35;
}

.site-header__nav-shell .bricks-nav-menu > li.cc-menu-item--active > a {
	color: var(--color-brand-1);
	opacity: 1;
}

.site-header__nav-shell .bricks-nav-menu > li:hover > a,
.site-header__nav-shell .bricks-nav-menu > li > a:focus-visible,
.site-header__nav .bricks-mobile-menu > li > a:hover,
.site-header__nav .bricks-mobile-menu > li > a:focus-visible {
	color: var(--color-brand-1);
	opacity: 1;
}

.site-header__cta.brxe-button {
	justify-self: end;
	margin-top: 0;
	padding: 14px 24px;
	background-color: var(--color-dark);
	border-radius: var(--radius-40);
	color: #fff;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.02em;
	white-space: nowrap;
	transition: background-color .25s ease;
}

.site-header__cta.brxe-button:hover {
	background-color: var(--color-brand-1);
}

@media (min-width: 768px) and (max-width: 1078px) {
	.site-header__inner.brxe-div {
		grid-template-columns: minmax(0, 1fr) auto !important;
	}

	.site-header__nav-shell.brxe-div,
	.site-header__cta.brxe-button {
		display: none !important;
	}

	.site-header__actions.brxe-div,
	.desktop-hamburger.brxe-div {
		display: flex !important;
	}
}

@media (max-width: 1078px) {
	.product-section__filters.brxe-div {
		font-size: 11px !important;
	}
}

@media (max-width: 1179px) {
	.site-header__inner {
		gap: 16px;
	}

	.type-menu-title .bricks-nav-menu > li > a {
		padding-inline: 8px;
	}

	.services-section__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.hero-section1.brxe-section {
		padding-top: var(--space-60);
		padding-bottom: var(--space-60);
	}

	#brx-header .site-header {
		padding-block: 16px;
	}

	#brx-header .site-header__inner {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 12px;
	}

	#brx-header .site-header__logo {
		width: clamp(80px, 13vw, 96px);
		height: clamp(80px, 13vw, 96px);
	}

	#brx-header .site-header__nav-shell {
		flex: 0 0 44px;
		width: 44px;
		height: 44px;
		margin-left: auto;
		padding: 0;
		background: transparent;
	}

	.site-header__nav .bricks-mobile-menu-toggle {
		width: 44px;
		height: 44px;
		padding: 0;
		background-color: var(--color-nav-surface);
		border-radius: 99px;
	}

	:where(.brxe-nav-menu) .bricks-mobile-menu-toggle:before {
		content: none;
		display: none;
	}

	:where(.brxe-nav-menu) .bricks-mobile-menu-toggle span {
		display: none;
	}

	.site-header__nav .bricks-mobile-menu-toggle:after {
		content: '';
		position: absolute;
		left: 50%;
		top: 50%;
		width: 20px;
		height: 16px;
		background-color: var(--color-dark);
		-webkit-mask: url('../images/hamburger-menu-ikon.svg') center / contain no-repeat;
		mask: url('../images/hamburger-menu-ikon.svg') center / contain no-repeat;
		transform: translate(-50%, -50%);
		transition: background-color .25s ease;
	}

	.site-header__nav .bricks-mobile-menu-toggle:hover:after,
	.site-header__nav .bricks-mobile-menu-toggle:focus-visible:after {
		background-color: var(--color-brand-1);
	}

	.site-header__nav.show-mobile-menu .bricks-mobile-menu-toggle:after {
		width: 15px;
		height: 15px;
		color: var(--color-dark);
		background-color: transparent;
		background-image:
			linear-gradient(45deg, transparent 42%, currentcolor 43% 57%, transparent 58%),
			linear-gradient(-45deg, transparent 42%, currentcolor 43% 57%, transparent 58%);
		-webkit-mask: none;
		mask: none;
	}

	.site-header__nav.show-mobile-menu .bricks-mobile-menu-toggle:hover:after,
	.site-header__nav.show-mobile-menu .bricks-mobile-menu-toggle:focus-visible:after {
		color: var(--color-brand-1);
		background-color: transparent;
	}

	.site-header__nav .bricks-mobile-menu-wrapper,
	.site-header__nav .bricks-mobile-menu-overlay {
		display: none !important;
	}

	.site-header__nav .bricks-mobile-menu > li > a {
		padding-block: 12px;
		color: var(--color-dark);
		font-family: var(--font-body);
		font-size: 15px;
		font-weight: 500;
		letter-spacing: -0.02em;
	}

	#brx-header .site-header__cta {
		display: none;
	}

	.product-section.brxe-section {
		padding-bottom: var(--space-60);
	}

	.product-section__filters.brxe-div {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		scrollbar-width: none;
	}

	.projeler-hero + .product-section .product-section__filter-bar.brxe-div {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		column-gap: 16px;
		width: 100%;
		margin-bottom: var(--space-30);
		row-gap: 30px;
	}

	.projeler-hero + .product-section .product-section__filters.brxe-div {
		align-self: stretch;
		justify-content: flex-start;
		flex: 0 0 auto;
		width: 100%;
	}

	.product-section__filters.brxe-div::-webkit-scrollbar {
		display: none;
	}

	.product-section__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.product-card[class*="is-span-"] {
		grid-column: span 1;
		height: 580px;
		min-height: 580px;
	}

	.services-section.brxe-section {
		padding-bottom: var(--space-0);
	}

	.services-section__intro.brxe-div,
	.services-section__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.services-section__intro.brxe-div {
		gap: var(--space-30);
	}

	.services-section__grid {
		margin-top: var(--space-60);
	}

	.service-card,
	.service-card.brxe-div {
		height: 350px;
		min-height: 350px;
	}

	.product-card__body {
		padding: 20px;
	}

	.product-card__cta {
		position: relative;
		bottom: auto;
		left: auto;
		align-self: flex-start;
		opacity: 1;
		transform: none;
	}

	.product-card__categories {
		opacity: 1 !important;
		transform: none !important;
	}

	#brx-header .site-header__mobile-panel {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 10000;
		display: flex !important;
		flex-direction: column;
		width: 80%;
		height: 100dvh;
		max-width: none;
		padding: var(--space-30);
		overflow-y: auto;
		background: #fff;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateX(100%);
		transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
	}

	#brx-header .site-header__mobile-panel.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateX(0);
	}

	#brx-header .site-header__mobile-overlay {
		position: fixed;
		inset: 0;
		z-index: 9999;
		display: block !important;
		max-width: none;
		background: rgb(0 0 0 / 50%);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		-webkit-backdrop-filter: blur(2px);
		backdrop-filter: blur(2px);
		transition: opacity .25s ease, visibility .25s ease;
	}

	#brx-header .site-header__mobile-overlay.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.mobile-menu__top {
		display: flex;
		flex: 0 0 auto;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}

	.mobile-menu__logo {
		width: 80px;
		height: 80px;
	}

	.mobile-menu__logo .bricks-site-logo {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.mobile-menu__close.brxe-icon {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		font-size: 0;
		background: var(--color-nav-surface);
		border-radius: 99px;
		cursor: pointer;
	}

	.mobile-menu__close.brxe-icon:before {
		content: none;
		display: none;
	}

	.mobile-menu__close.brxe-icon:after {
		content: '';
		width: 15px;
		height: 15px;
		color: var(--color-dark);
		background-color: transparent;
		background-image:
			linear-gradient(45deg, transparent 42%, currentcolor 43% 57%, transparent 58%),
			linear-gradient(-45deg, transparent 42%, currentcolor 43% 57%, transparent 58%);
		transition: color .25s ease;
	}

	.mobile-menu__close.brxe-icon:hover:after,
	.mobile-menu__close.brxe-icon:focus-visible:after {
		color: var(--color-brand-1);
	}

	.mobile-menu__links {
		display: flex;
		flex: 0 0 auto;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		margin-top: var(--space-60);
	}

	.mobile-menu__nav,
	.mobile-menu__nav .bricks-nav-menu-wrapper,
	.mobile-menu__nav .bricks-nav-menu {
		width: 100%;
	}

	.mobile-menu__nav .bricks-nav-menu {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 0;
	}

	.mobile-menu__nav .bricks-nav-menu > li {
		width: 100%;
		margin: 0;
	}

	.mobile-menu__nav .bricks-nav-menu > li > a {
		justify-content: flex-start;
		width: 100%;
		padding: 10px 0;
		color: var(--color-dark);
		font-family: var(--font-body);
		font-size: 18px;
		font-weight: 500;
		line-height: 1.2;
		letter-spacing: -0.03em;
		text-align: left;
	}

	.mobile-menu__nav .bricks-nav-menu > li > a:hover,
	.mobile-menu__nav .bricks-nav-menu > li > a:focus-visible {
		color: var(--color-brand-1);
	}

	.mobile-menu__divider {
		flex: 0 0 1px;
		width: 100%;
		height: 1px;
		margin-top: var(--space-30) !important;
		background: var(--color-border);
	}

	.mobile-menu__socials {
		display: flex;
		flex: 0 0 auto;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		padding-top: var(--space-30);
	}

	.mobile-menu__social-icons {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 10px;
		padding: 0;
	}

	.mobile-menu__social-icons li {
		width: 40px;
		height: 40px;
		margin: 0;
		padding: 0;
		background: var(--color-nav-surface);
		border-radius: 99px;
		transition: background-color .25s ease;
	}

	.mobile-menu__social-icons li:hover,
	.mobile-menu__social-icons li:focus-within {
		background: var(--color-nav-surface);
	}

	.mobile-menu__social-icons li,
	.mobile-menu__social-icons li a {
		gap: 0;
	}

	.mobile-menu__social-icons li a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding: 0;
		color: var(--color-dark);
		transition: color .25s ease;
	}

	.mobile-menu__social-icons li:hover a,
	.mobile-menu__social-icons li:focus-within a {
		color: var(--color-brand-1) !important;
	}

	.mobile-menu__social-icons li:hover .icon,
	.mobile-menu__social-icons li:focus-within .icon {
		color: var(--color-brand-1) !important;
	}

	.mobile-menu__social-icons .icon {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.hero-section1__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--space-60);
	}
}

@media (max-width: 480px) {
	/* Explicit mobile endpoints prevent any viewport from undershooting the scale. */
	:root {
		--fs-h1: var(--fs-h1-mobile);
		--fs-h2: var(--fs-h2-mobile);
		--fs-h3: var(--fs-h3-mobile);
		--fs-h4: var(--fs-h4-mobile);
		--fs-h5: var(--fs-h5-mobile);
		--fs-h6: var(--fs-h6-mobile);
		--fs-subtitle: var(--fs-subtitle-mobile) !important;
	}

	.type-subtitle {
		font-size: var(--fs-subtitle-mobile) !important;
	}

	.hero-section1__headline {
		font-size: var(--fs-h1-mobile);
	}
}

/* Static 4-column References Grid for Referanslar Page */
.hero-section1.brxe-section,
#hero-section1 {
	width: calc(100% - 60px) !important;
	margin-right: 30px !important;
	margin-left: 30px !important;
	padding-top: var(--space-60) !important;
	padding-bottom: var(--space-30) !important;
}

#references-section {
	width: calc(100% - 60px) !important;
	margin-right: 30px !important;
	margin-left: 30px !important;
	padding-top: var(--space-60);
	padding-bottom: var(--space-60) !important;
}

#references-section .hero-section1__layout.brxe-div {
	display: flex;
	flex-direction: column;
	background: #f9f9f9;
	padding: 60px 30px;
	border-radius: var(--radius-40);
}

.references-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--space-40, 30px);
	width: 100%;
	align-items: center;
	justify-items: center;
}

.references-grid__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 108px;
	padding: var(--space-20, 16px);
}

.references-grid__item:hover {
	background: transparent;
}

.references-grid__text.brxe-text-basic {
	width: 100%;
	margin: 0;
	color: var(--color-dark);
	font-family: var(--font-heading);
	font-size: clamp(24px, 2.25vw, 36px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -.035em;
	text-align: center;
}

.references-grid__link,
.references-grid__image,
.references-grid__item .brxe-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	transition: opacity 0.3s ease, transform 0.3s ease;
	text-decoration: none;
}

.references-grid__link:hover,
.references-grid__link:focus,
.references-grid__image:hover,
.references-grid__image:focus,
.references-grid__item:hover .references-grid__image,
.references-grid__item:hover .brxe-image {
	opacity: 1;
	transform: scale(1.05);
}

.references-grid__link img,
.references-grid__image img,
.references-grid__item img {
	display: block;
	max-width: 140px;
	max-height: 60px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(1) brightness(1.2);
	transition: filter 0.3s ease;
}

.references-grid__link:hover img,
.references-grid__image:hover img,
.references-grid__item:hover img {
	filter: grayscale(0) brightness(1);
}

@media (max-width: 1024px) {
	.references-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: var(--space-30, 24px);
	}
}

@media (max-width: 767px) {
	.references-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--space-20, 16px);
	}

	.references-grid__item {
		min-height: 75px;
		padding: 12px;
	}

	.references-grid__text.brxe-text-basic {
		font-size: clamp(20px, 6vw, 28px);
	}

	.references-grid__link img {
		max-width: 90px;
		max-height: 40px;
	}
}

@media (max-width: 478px) {
	.references-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Services page */
.services-hero.inner-page-hero.brxe-section {
	height: 450px;
}

.services-hero .inner-page-hero__lead {
	max-width: 680px;
}

.services2-section.brxe-section {
	box-sizing: border-box;
	width: calc(100% - 60px);
	margin-right: 30px;
	margin-left: 30px;
	padding-top: 0;
	padding-bottom: var(--space-90);
}

.services2-section__layout.brxe-div {
	display: grid;
	grid-template-columns: minmax(280px, .8fr) minmax(0, 1.6fr);
	gap: clamp(50px, 7vw, 100px);
	width: 100%;
	margin-inline: auto;
	padding: 60px 30px;
	background: #f9f9f9;
	border-radius: var(--radius-40);
}

.services2-section__intro.brxe-div {
	position: sticky;
	top: 30px;
	display: flex;
	flex-direction: column;
	align-self: start;
}

.services2-section__eyebrow.brxe-text-basic {
	margin: 0 0 15px;
	color: var(--color-dark);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: -.02em;
}

.services2-section__title.brxe-heading {
	max-width: 520px;
	margin: 0;
}

.services2-section__list.brxe-div {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	row-gap: 70px;
	width: 100%;
}

.services2-card.brxe-div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	min-height: 210px;
	padding: 0 40px;
	border-left: 1px solid rgb(45 43 48 / 15%);
}

.services2-card__icon.brxe-image {
	display: block;
	width: 100px;
	height: 100px;
	margin: 0 0 10px 0;
	object-fit: contain;
}

.services2-card__title.brxe-heading {
	margin: 0 0 20px;
	color: var(--color-dark);
	font-family: var(--font-heading);
	font-size: clamp(22px, 1.8vw, 28px);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -.04em;
	text-transform: none;
}

.services2-card__description.brxe-text-basic {
	max-width: 380px;
	margin: 0;
	color: var(--color-dark);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: -.02em;
}

@media (max-width: 1024px) {
	.services2-section__layout.brxe-div {
		grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
		gap: 40px;
	}

	.services2-card.brxe-div {
		padding-right: 24px;
		padding-left: 24px;
	}
}

@media (max-width: 767px) {
	.services-hero.inner-page-hero.brxe-section {
		height: 350px;
	}

	.services-hero .inner-page-hero__lead {
		max-width: 680px;
	}

	.services2-section.brxe-section {
		width: calc(100% - 30px);
		margin-right: 15px;
		margin-left: 15px;
	}

	.services2-section__layout.brxe-div {
		grid-template-columns: minmax(0, 1fr);
		gap: 50px;
		padding: 45px 20px;
		border-radius: var(--radius-24);
	}

	.services2-section__intro.brxe-div {
		position: static;
	}

	.services2-section__list.brxe-div {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 0;
	}

	.services2-card.brxe-div {
		min-height: 0;
		padding: 30px 0;
		border-top: 1px solid var(--color-border);
		border-left: 0;
	}

	.services2-card__description.brxe-text-basic {
		max-width: 100%;
	}
}

/* Contact page */
.contact-hero.brxe-section {
	position: relative;
	isolation: isolate;
	display: flex;
	min-height: clamp(520px, 74vw, 620px);
	width: calc(100% - 60px);
	max-width: max(1600px, calc(91% - 90px));
	margin-top: 30px;
	margin-inline: auto;
	padding: 0;
	overflow: hidden;
	background-color: var(--color-dark);
	background-image: url('/wp-content/uploads/2026/08/cann-bg03.png');
	background-repeat: no-repeat;
	background-position: center 42%;
	background-size: cover;
	border-radius: var(--radius-24);
}

.contact-hero.brxe-section::after {
	position: absolute;
	inset: 0;
	z-index: 0;
	content: '';
	background:
		linear-gradient(90deg, rgb(20 19 22 / 76%) 0%, rgb(20 19 22 / 38%) 52%, rgb(20 19 22 / 28%) 100%),
		linear-gradient(0deg, rgb(20 19 22 / 48%) 0%, transparent 55%);
}

.contact-hero__layout {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	min-height: inherit;
	padding: var(--space-60) var(--layout-padding);
}

.contact-hero__details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: min(100%, 400px);
	padding: clamp(28px, 3vw, 40px);
	background: #fff;
	border: 1px solid #fff;
	border-radius: var(--radius-24);
	box-shadow: 0 30px 80px rgb(16 14 18 / 24%);
}

.contact-hero__details-title,
.contact-hero__label,
.contact-hero__address {
	margin: 0;
}

.contact-hero__details-title {
	margin-bottom: 14px;
	color: var(--color-dark);
}

.contact-hero__details-title--project {
	margin-top: var(--space-30);
	margin-bottom: 8px;
}

.contact-hero__label {
	margin-bottom: 10px;
}

.contact-hero__address {
	margin-top: 6px;
	color: var(--color-dark);
	line-height: 1.55;
}

.contact-hero__address--link {
	text-decoration: none;
	transition: color .25s ease;
}

.contact-hero__address--link:hover,
.contact-hero__address--link:focus-visible {
	color: var(--color-brand-1);
}

.contact-hero__direction.brxe-button {
	display: inline-flex !important;
	margin-top: var(--space-30);
	text-decoration: none;
}

.contact-form-section.brxe-section {
	width: calc(100% - 60px);
	margin-inline: 30px;
	padding: var(--space-90) 0;
}

.contact-form-layout {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	gap: var(--space-30);
}

.contact-form-intro {
	position: sticky;
	top: 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0;
}

.contact-form-intro__title,
.contact-form-intro__text {
	margin: 0;
}

.contact-form-intro__title {
	margin-top: 5px;
}

.contact-form-intro__text {
	max-width: 360px;
	margin-top: var(--space-30);
}

.contact-form-card,
.contact-form-card.brxe-shortcode {
	grid-column: span 2;
	box-sizing: border-box;
	min-width: 0;
	width: 100%;
	padding: clamp(24px, 2.4vw, 36px);
	background: var(--color-nav-surface);
	border: 0;
	border-radius: var(--radius-24);
}

.contact-form-card .wpcf7-form {
	display: grid;
	min-width: 0;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 20px;
	row-gap: 18px;
}

.contact-form-card .cc-form-field {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 7px;
	margin: 0;
	color: var(--color-dark);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.contact-form-card .cc-form-field > p {
	display: contents;
	margin: 0;
}

.contact-form-card .cc-form-field > p > br {
	display: none;
}

.contact-form-card .cc-form-field label {
	color: #000 !important;
}

.contact-form-card .wpcf7-form-control-wrap {
	display: block;
	min-width: 0;
	width: 100%;
}

.contact-form-card .cc-form-field--full,
.contact-form-card .cc-form-consent,
.contact-form-card .cc-form-submit,
.contact-form-card .wpcf7-response-output {
	grid-column: 1 / -1;
}

.contact-form-card input:not([type='checkbox']):not([type='submit']),
.contact-form-card select,
.contact-form-card textarea {
	width: 100%;
	margin: 0;
	min-height: 46px;
	padding: 12px 16px;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.45;
	background: #fff;
	border: 1px solid transparent;
	border-radius: var(--radius-16);
	outline: none;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.contact-form-card textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-form-card input:not([type='checkbox']):focus,
.contact-form-card input:not([type='checkbox']):focus-visible,
.contact-form-card select:focus,
.contact-form-card select:focus-visible,
.contact-form-card textarea:focus,
.contact-form-card textarea:focus-visible {
	border-color: transparent !important;
	outline: none !important;
	box-shadow: none !important;
}

.contact-form-card .cc-form-consent {
	margin: 0;
	color: var(--color-subtitle);
	font-size: 13px;
	font-weight: 400;
}

.contact-form-card .cc-form-consent .wpcf7-list-item {
	margin: 0;
}

.contact-form-card .cc-form-consent label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
	overflow-wrap: anywhere;
}

.contact-form-card .cc-form-consent input {
	position: relative;
	flex: 0 0 16px;
	box-sizing: border-box;
	width: 16px !important;
	min-width: 16px !important;
	max-width: 16px !important;
	height: 16px !important;
	min-height: 16px !important;
	max-height: 16px !important;
	margin-top: 3px;
	padding: 0 !important;
	appearance: none !important;
	background: #fff;
	border: 1px solid var(--color-dark);
	border-radius: 50% !important;
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease;
}

.contact-form-card .cc-form-consent input:hover,
.contact-form-card .cc-form-consent input:active,
.contact-form-card .cc-form-consent input:checked {
	background: var(--color-brand-1);
	border-color: var(--color-brand-1);
}

.contact-form-card .cc-form-consent a {
	color: var(--color-dark);
	font-weight: 600;
	text-decoration: none;
}

.contact-form-card .cc-form-submit {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.contact-form-card input[type='submit'] {
	padding: 14px 24px;
	color: #fff;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -.02em;
	background: var(--color-dark);
	border: 0;
	border-radius: var(--radius-40);
	cursor: pointer !important;
	pointer-events: auto;
	transition: background-color .25s ease;
}

.contact-form-card input[type='submit']:hover,
.contact-form-card input[type='submit']:focus-visible {
	background: var(--color-brand-1);
}

.contact-form-card .wpcf7-spinner {
	margin: 0;
}

.contact-form-card .wpcf7-not-valid-tip {
	margin-top: 7px;
	color: var(--color-brand-1);
	font-size: 12px;
}

.contact-form-card .wpcf7-response-output {
	margin: 0;
	padding: 14px 18px;
	border-radius: var(--radius-8);
}

@media (max-width: 1024px) {
	.contact-hero__layout {
		padding: var(--space-30);
	}

	.contact-form-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--space-60);
	}

	.contact-form-intro {
		position: static;
		padding-right: 0;
	}

	.contact-form-card,
	.contact-form-card.brxe-shortcode {
		grid-column: auto;
	}
}

@media (max-width: 767px) {
	.contact-hero.brxe-section,
	.contact-form-section.brxe-section {
		width: calc(100% - 30px);
		margin-inline: 15px;
	}

	.contact-hero.brxe-section {
		width: calc(100% - 24px);
		margin-inline: auto;
		border-radius: var(--radius-16);
	}

	.contact-hero.brxe-section::after {
		background: linear-gradient(0deg, rgb(20 19 22 / 72%) 0%, rgb(20 19 22 / 20%) 100%);
	}

	.contact-hero__layout {
		align-items: flex-end;
		padding: 90px 15px 15px;
	}

	.contact-hero__details {
		padding: 24px;
		border-radius: var(--radius-16);
	}

	.contact-form-section.brxe-section {
		padding-block: var(--space-60);
	}

	.contact-form-card,
	.contact-form-card.brxe-shortcode {
		padding: 24px;
		border-radius: var(--radius-16);
	}

	.contact-form-card .wpcf7-form {
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
	}

	.contact-form-card .cc-form-field--full,
	.contact-form-card .cc-form-consent,
	.contact-form-card .cc-form-submit,
	.contact-form-card .wpcf7-response-output {
		grid-column: auto;
	}
}

/* Reusable inner-page hero pattern: keep these values in sync across page-specific hero classes. */
.iletisim-hero.brxe-section,
.projeler-hero.brxe-section,
.hata-404-hero.brxe-section,
.blog-hero.brxe-section,
.inner-page-hero.brxe-section {
	box-sizing: border-box;
	width: 100%;
	height: 400px;
	margin: 0;
	padding: 0;
	background: #fff;
	border-radius: 0;
}

.projeler-hero + .product-section.brxe-section {
	width: calc(100% - 60px);
	margin-right: 30px;
	margin-left: 30px;
	padding-bottom: var(--space-30);
}

.projeler-hero + .product-section .product-section__layout.brxe-div {
	padding-top: 60px;
	border-top: 1px solid var(--color-border);
}

.hata-404-hero.brxe-section {
	height: 500px;
}

.iletisim-hero__inner,
.projeler-hero__inner,
.hata-404-hero__inner,
.blog-hero__inner,
.inner-page-hero__inner {
	position: relative;
	display: flex;
	box-sizing: border-box;
	height: 100%;
	min-height: inherit;
	flex-direction: column;
	justify-content: space-between;
	padding: 120px var(--layout-padding) 60px;
}

.iletisim-hero__content,
.projeler-hero__content,
.hata-404-hero__content,
.blog-hero__content,
.inner-page-hero__content {
	display: flex;
	width: min(760px, 72%);
	margin-left: 0;
	flex-direction: column;
	align-items: flex-start;
}

.iletisim-hero__title,
.iletisim-hero__lead,
.projeler-hero__title,
.projeler-hero__lead,
.hata-404-hero__title,
.hata-404-hero__lead,
.blog-hero__title,
.blog-hero__lead,
.inner-page-hero__title,
.inner-page-hero__lead {
	margin: 0;
}

.iletisim-hero__title,
.projeler-hero__title,
.hata-404-hero__title,
.blog-hero__title,
.inner-page-hero__title {
	color: var(--color-dark);
	font-family: var(--font-heading);
	font-size: var(--fs-h1);
	font-weight: 500;
	line-height: .98;
	letter-spacing: -.065em;
}

.iletisim-hero__lead,
.projeler-hero__lead,
.hata-404-hero__lead,
.blog-hero__lead,
.inner-page-hero__lead {
	max-width: 680px;
	margin-top: 30px;
	color: var(--color-dark);
	font-size: 18px;
	line-height: 1.6;
}

.iletisim-hero__button.site-header__cta.brxe-button,
.projeler-hero__button.site-header__cta.brxe-button,
.hata-404-hero__button.site-header__cta.brxe-button {
	align-self: flex-start;
	margin-top: 30px;
	text-decoration: none;
}

.iletisim-hero__breadcrumb,
.projeler-hero__breadcrumb,
.hata-404-hero__breadcrumb,
.blog-hero__breadcrumb,
.inner-page-hero__breadcrumb {
	position: relative;
	right: var(--layout-padding);
	left: 0;
	top: auto;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	color: var(--color-dark);
	font-size: 14px;
	line-height: 1.4;
}

.iletisim-hero__breadcrumb a,
.projeler-hero__breadcrumb a,
.hata-404-hero__breadcrumb a,
.blog-hero__breadcrumb a,
.inner-page-hero__breadcrumb a {
	color: var(--color-dark);
	font-weight: 600;
	text-decoration: none;
}

.iletisim-hero__breadcrumb a:hover,
.iletisim-hero__breadcrumb a:focus-visible,
.projeler-hero__breadcrumb a:hover,
.projeler-hero__breadcrumb a:focus-visible,
.hata-404-hero__breadcrumb a:hover,
.hata-404-hero__breadcrumb a:focus-visible,
.blog-hero__breadcrumb a:hover,
.blog-hero__breadcrumb a:focus-visible,
.inner-page-hero__breadcrumb a:hover,
.inner-page-hero__breadcrumb a:focus-visible {
	color: var(--color-brand-1);
}

.blog-page__pagination.brxe-pagination {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 30px;
}

.blog-page__list.brxe-div {
	background: var(--color-nav-surface);
	padding: 60px 30px;
	border-radius: 40px;
}

.blog-page__list > .blog-card:first-child {
	border-top: 0;
	padding-top: 0;
}

.blog-page__list > .blog-card:last-child {
	padding-bottom: 0;
}

.blog-page__list .cc-blog-tag {
	background: #fff;
}

.blog-page__list .cc-blog-tag:hover,
.blog-page__list .cc-blog-tag:focus-visible {
	background: var(--color-brand-1);
	color: #fff;
}

.blog-page__pagination .bricks-pagination ul {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.blog-page__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	background: var(--color-nav-surface);
	border-radius: 99px;
	color: var(--color-dark);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color .25s ease, color .25s ease;
}

.blog-page__pagination .page-numbers.current,
.blog-page__pagination .page-numbers:hover,
.blog-page__pagination .page-numbers:focus-visible {
	background: var(--color-brand-1);
	color: #fff;
}

.iletisim-offices.brxe-section {
	box-sizing: border-box;
	width: 100%;
	max-width: max(1600px, calc(91% - 90px));
	margin: 0 auto 60px;
	padding-top: var(--space-60);
	padding-right: var(--space-30);
	padding-bottom: var(--space-60);
	padding-left: var(--space-30);
	background-color: var(--color-nav-surface);
	border-radius: var(--radius-40);
}

.cann-contact-offices__grid {
	display: grid;
	grid-template-columns: minmax(210px, 1fr) minmax(0, 3fr);
	align-items: start;
	gap: clamp(30px, 5vw, 90px);
	padding-bottom: 90px;
	border-bottom: 1px solid rgb(45 43 48 / 15%);
}

.cann-contact-offices__details {
	display: grid;
	min-width: 0;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.cann-contact-offices__intro,
.cann-contact-office,
.cann-contact-work__intro {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
}

.cann-contact-offices__title,
.cann-contact-offices__lead,
.cann-contact-office__title,
.cann-contact-office__text,
.cann-contact-work__title,
.cann-contact-work__text {
	margin: 0;
}

.cann-contact-offices__title,
.cann-contact-work__title {
	color: var(--color-dark);
	font-size: var(--fs-h3);
	line-height: 1.1;
	letter-spacing: -.045em;
}

.cann-contact-offices__lead,
.cann-contact-work__text {
	max-width: 630px;
	margin-top: 30px;
	color: var(--color-dark);
	font-size: 18px;
	line-height: 1.6;
}

.cann-contact-office__title {
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: var(--fs-h5);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -.025em;
}

.cann-contact-office__text,
.cann-contact-office__email {
	max-width: 410px;
	margin-top: 22px;
	color: var(--color-dark);
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: -.025em;
}

.cann-contact-office__email {
	display: inline-block;
	max-width: 100%;
	overflow-wrap: anywhere;
	font-weight: 400;
	text-decoration: none;
	transition: color .25s ease;
}

.cann-contact-office__email:hover,
.cann-contact-office__email:focus-visible {
	color: var(--color-brand-1);
}

.cann-contact-office__text--muted {
	margin-top: 16px;
	color: var(--color-subtitle);
	font-size: var(--fs-paragraph);
}

.cann-contact-office__direction.brxe-text-link {
	display: inline-flex;
	max-width: 410px;
	margin-top: 22px;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: -.025em;
	text-decoration: none;
	transition: color .25s ease;
}

.cann-contact-office__direction.brxe-text-link:hover,
.cann-contact-office__direction.brxe-text-link:focus-visible {
	color: var(--color-brand-1);
}

.cann-contact-work__grid {
	display: grid;
	grid-template-columns: minmax(210px, 1fr) minmax(0, 3fr);
	align-items: start;
	gap: clamp(30px, 5vw, 90px);
	margin-top: 90px;
}

.cann-contact-work__text a {
	color: var(--color-brand-1);
	opacity: .6;
	text-decoration: none;
	transition: opacity .25s ease;
}

.cann-contact-work__text a:hover,
.cann-contact-work__text a:focus-visible {
	opacity: 1;
}

.cann-contact-form,
.cann-contact-form.brxe-shortcode {
	box-sizing: border-box;
	min-width: 0;
	width: 100%;
}

.cann-contact-form .wpcf7,
.cann-contact-form .wpcf7-form {
	min-width: 0;
	max-width: 100%;
}

.cann-contact-form .hidden-fields-container {
	display: none !important;
}

.cann-contact-form .wpcf7-form {
	display: grid;
	min-width: 0;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 20px;
	row-gap: 22px;
}

.cann-contact-form .cc-form-field {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	color: var(--color-dark);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.cann-contact-form .cc-form-field label {
	color: var(--color-dark);
	font-weight: 600;
	opacity: 1;
}

.cann-contact-form .cc-form-field > p {
	display: contents;
	margin: 0;
}

.cann-contact-form .cc-form-field > p > br {
	display: none;
}

.cann-contact-form .wpcf7-form-control-wrap {
	display: block;
	min-width: 0;
	width: 100%;
}

.cann-contact-form .cc-form-field--full,
.cann-contact-form .cc-form-consent,
.cann-contact-form .cc-form-submit,
.cann-contact-form .wpcf7-response-output {
	grid-column: 1 / -1;
}

.cann-contact-form input:not([type='checkbox']):not([type='submit']),
.cann-contact-form select,
.cann-contact-form textarea {
	box-sizing: border-box;
	width: 100%;
	min-height: 52px;
	margin: 0;
	padding: 14px 16px;
	color: var(--color-dark);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.45;
	background: rgb(136 136 137 / 9%);
	border: 1px solid transparent;
	border-radius: var(--radius-8);
	outline: 0;
	transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.cann-contact-form textarea {
	height: 160px;
	min-height: 160px;
	max-height: 160px;
	resize: none;
}

.cann-contact-form input:not([type='checkbox']):focus,
.cann-contact-form select:focus,
.cann-contact-form textarea:focus {
	background: #fff;
	border-color: rgb(45 43 48 / 35%);
	box-shadow: 0 0 0 3px rgb(45 43 48 / 6%);
}

.cann-contact-form .cc-form-consent {
	margin: 4px 0 0;
	color: var(--color-subtitle);
	font-size: 13px;
}

.cann-contact-form .cc-form-consent .wpcf7-list-item {
	margin: 0;
	cursor: pointer;
}

.cann-contact-form .cc-form-consent label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
	overflow-wrap: anywhere;
	cursor: pointer;
}

.cann-contact-form .cc-form-consent input {
	flex: 0 0 16px;
	box-sizing: border-box;
	width: 16px !important;
	height: 16px !important;
	min-height: 16px !important;
	margin-top: 3px;
	padding: 0 !important;
	appearance: none;
	background: #fff;
	border: 1px solid var(--color-dark);
	border-radius: 50%;
	cursor: pointer !important;
}

.cann-contact-form .cc-form-consent input:checked {
	background: var(--color-brand-1);
	border-color: var(--color-brand-1);
}

.cann-contact-form .cc-form-consent a {
	color: var(--color-dark);
	font-weight: 600;
	text-decoration: none;
}

.cann-contact-form .cc-form-submit {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 4px;
}

.cann-contact-form input[type='submit'] {
	min-height: 48px;
	padding: 14px 24px;
	color: #fff;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	background: var(--color-dark);
	border: 0;
	border-radius: var(--radius-40);
	cursor: pointer !important;
	transition: background-color .25s ease;
}

.cann-contact-form input[type='submit']:hover,
.cann-contact-form input[type='submit']:focus-visible {
	background: var(--color-brand-1);
	cursor: pointer !important;
}

@media (hover: hover) and (pointer: fine) {
	body.cc-custom-cursor-enabled .cann-contact-form .cc-form-consent label,
	body.cc-custom-cursor-enabled .cann-contact-form .cc-form-consent input,
	body.cc-custom-cursor-enabled .cann-contact-form input[type='submit'] {
		cursor: pointer !important;
	}
}

.cann-contact-form .wpcf7-spinner {
	margin: 0;
}

.cann-contact-form .wpcf7-not-valid-tip {
	margin-top: 7px;
	color: var(--color-brand-1);
	font-size: 12px;
}

.cann-contact-form .wpcf7-response-output {
	margin: 0;
	padding: 14px 18px;
	border-radius: var(--radius-8);
}

@media (max-width: 1024px) {
	.cann-contact-offices__grid {
		grid-template-columns: minmax(200px, .8fr) minmax(0, 2fr);
	}

	.cann-contact-offices__details {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cann-contact-offices__lead {
		max-width: 630px;
	}

	.cann-contact-work__grid {
		grid-template-columns: minmax(200px, .8fr) minmax(0, 2fr);
	}

	.cann-contact-form .wpcf7-form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.iletisim-hero.brxe-section,
	.projeler-hero.brxe-section,
	.hata-404-hero.brxe-section,
	.blog-hero.brxe-section,
	.inner-page-hero.brxe-section {
		width: 100%;
		height: 350px;
		margin: 0;
		border-radius: 0;
	}

	.iletisim-hero__inner,
	.projeler-hero__inner,
	.hata-404-hero__inner,
	.blog-hero__inner,
	.inner-page-hero__inner {
		padding: 60px 30px 30px;
	}

	.iletisim-hero__content,
	.projeler-hero__content,
	.hata-404-hero__content,
	.blog-hero__content,
	.inner-page-hero__content {
		min-width: 0;
		width: 100%;
		max-width: 100%;
		margin-left: 0;
	}

	.iletisim-hero__title,
	.projeler-hero__title,
	.hata-404-hero__title,
	.blog-hero__title,
	.inner-page-hero__title {
		font-size: var(--fs-h1);
	}

	.iletisim-hero__lead,
	.projeler-hero__lead,
	.hata-404-hero__lead,
	.blog-hero__lead,
	.inner-page-hero__lead {
		width: 100%;
		max-width: 680px;
		margin-top: 20px;
		font-size: 16px;
		overflow-wrap: anywhere;
	}

	.iletisim-hero__button.site-header__cta.brxe-button,
	.projeler-hero__button.site-header__cta.brxe-button,
	.hata-404-hero__button.site-header__cta.brxe-button {
		display: inline-flex !important;
		margin-top: 20px;
	}

	.iletisim-hero__breadcrumb,
	.projeler-hero__breadcrumb,
	.hata-404-hero__breadcrumb,
	.blog-hero__breadcrumb,
	.inner-page-hero__breadcrumb {
		right: 0;
		left: 0;
		top: auto;
	}

	.blog-page__list.brxe-div {
		border-radius: 24px;
	}

	.iletisim-offices.brxe-section {
		overflow: hidden;
		width: calc(100% - 60px);
		max-width: none;
		margin: 0 auto 30px;
		padding: 60px 30px;
		border-radius: var(--radius-24);
	}

	.cann-contact-offices__grid,
	.cann-contact-work__grid {
		min-width: 0;
		width: 100%;
		max-width: 100%;
		grid-template-columns: minmax(0, 1fr);
		gap: 48px;
	}

	.cann-contact-offices__details {
		width: 100%;
		max-width: 100%;
		grid-template-columns: minmax(0, 1fr);
		gap: 36px;
	}

	.cann-contact-offices__grid {
		padding-inline: 0;
		padding-bottom: 60px;
	}

	.cann-contact-office + .cann-contact-office {
		padding-top: 0;
		border-top: 0;
	}

	.cann-contact-work__grid {
		margin-top: 60px;
		padding-inline: 0;
	}

	.cann-contact-offices__lead,
	.cann-contact-work__text {
		width: 100%;
		max-width: 630px;
		margin-top: 20px;
		font-size: 16px;
		overflow-wrap: anywhere;
	}

	.cann-contact-form .wpcf7-form {
		width: 100%;
		max-width: 100%;
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
	}

	.cann-contact-form input:not([type='checkbox']):not([type='submit']),
	.cann-contact-form select,
	.cann-contact-form textarea {
		max-width: 100%;
	}

	.cann-contact-form .cc-form-field--full,
	.cann-contact-form .cc-form-consent,
	.cann-contact-form .cc-form-submit,
	.cann-contact-form .wpcf7-response-output {
		grid-column: auto;
	}
}
