/*
Theme Name: DevLab Theme
Theme URI: https://wordpress.org/themes/twentytwentyone/
Description: Child theme for Twenty Twenty-One.
Author: WordPress
Author URI: https://wordpress.org/
Template: twentytwentyone
Version: 1.0.12
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone-child
*/

:root {
	--devlab-container-width: 1180px;
	--devlab-container-gutter: 24px;
	--devlab-container-edge: max(var(--devlab-container-gutter), calc((100vw - var(--devlab-container-width)) / 2));
	--global--color-background: #fff;
	--global--color-primary: #20262c;
	--responsive--color-background: #fff;
}

html {
	overflow-x: hidden;
}

html,
body,
#page,
.site,
.site-content,
.content-area,
.site-main,
#content,
#primary,
#main {
	background: #fff;
}

.site-main,
#main {
	padding-top: 0;
	padding-bottom: 0 !important;
}

/*
 * Twenty Twenty-One flashes a dark/white highlight background and a dotted
 * underline on any plain :focus (which also fires on mouse click, not just
 * keyboard nav). These selectors match the parent theme's exact specificity
 * so the child stylesheet (loaded after it) wins the cascade without needing
 * !important. Every devlab-* component now drives its hover/click styling
 * off :hover and :focus-visible instead, so this only ever neutralizes the
 * parent theme's own click flash and default dotted outline.
 */
.site a:focus,
.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button),
.has-background-white .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button),
.is-dark-theme .site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
	background: transparent;
	color: inherit;
	outline: 2px solid transparent;
	text-decoration: none;
}

.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) img {
	outline: none;
}

.site .button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
.wp-block-search .wp-block-search__button:focus,
.wp-block-button .wp-block-button__link:focus,
.wp-block-file a.wp-block-file__button:focus {
	outline: none;
}

.site-main > article > * {
	margin-bottom: 0 !important;
}

.devlab-site-header {
	background: #f7f7f9;
	border-bottom: 1px solid #dfe3e7;
	box-shadow: 0 2px 8px rgba(21, 32, 41, 0.08);
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	position: relative;
	width: 100%;
	z-index: 20;
}

.devlab-site-header *,
.devlab-site-header *::before,
.devlab-site-header *::after {
	box-sizing: border-box;
}

.devlab-site-header__inner {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	min-height: 70px;
	padding: 14px var(--devlab-container-gutter);
	width: 100%;
}

.devlab-site-header__brand {
	align-items: center;
	color: #006b86;
	display: inline-flex;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	text-decoration: none;
	width: fit-content;
}

.devlab-site-header__brand:hover,
.devlab-site-header__brand:focus-visible {
	color: #006b86;
	text-decoration: none;
}

.devlab-site-header__logo {
	display: block;
	height: 40px;
	max-width: 100%;
	width: auto;
}

.devlab-site-header__toggle {
	align-items: center;
	background: #006f8f;
	border: 0;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: none;
	height: 46px;
	justify-content: center;
	padding: 0;
	width: 50px;
}

.devlab-site-header__toggle span:not(.screen-reader-text) {
	background: currentColor;
	border-radius: 999px;
	display: block;
	height: 2px;
	position: absolute;
	transition: transform 180ms ease, opacity 180ms ease;
	width: 22px;
}

.devlab-site-header__toggle span:nth-of-type(2) {
	transform: translateY(-7px);
}

.devlab-site-header__toggle span:nth-of-type(4) {
	transform: translateY(7px);
}

.devlab-site-header__toggle[aria-expanded="true"] span:nth-of-type(2) {
	transform: rotate(45deg);
}

.devlab-site-header__toggle[aria-expanded="true"] span:nth-of-type(3) {
	opacity: 0;
}

.devlab-site-header__toggle[aria-expanded="true"] span:nth-of-type(4) {
	transform: rotate(-45deg);
}

.devlab-site-header__nav {
	justify-self: center;
}

.devlab-primary-menu,
.devlab-primary-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.devlab-primary-menu {
	align-items: center;
	display: flex;
	gap: clamp(24px, 3vw, 38px);
	justify-content: center;
}

.devlab-primary-menu > li {
	margin: 0;
	position: relative;
}

.devlab-primary-menu a {
	color: #373f49;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	padding: 8px 0 10px;
	position: relative;
	text-decoration: none;
	white-space: nowrap;
}

.devlab-primary-menu > li > a::after {
	background: #006f8f;
	bottom: 0;
	content: "";
	height: 3px;
	left: 0;
	opacity: 0;
	position: absolute;
	transform: scaleX(0.72);
	transform-origin: center;
	transition: opacity 180ms ease, transform 180ms ease;
	width: 100%;
}

.devlab-primary-menu a:hover,
.devlab-primary-menu a:focus-visible,
.devlab-primary-menu .current-menu-item > a,
.devlab-primary-menu .current-menu-ancestor > a,
.devlab-primary-menu .current_page_item > a {
	color: #006f8f;
	text-decoration: none;
}

.devlab-primary-menu > .current-menu-item > a::after,
.devlab-primary-menu > .current-menu-ancestor > a::after,
.devlab-primary-menu > .current_page_item > a::after,
.devlab-primary-menu > li > a:hover::after,
.devlab-primary-menu > li > a:focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}

.devlab-primary-menu .sub-menu {
	background: #fff;
	border: 1px solid #e0e5e8;
	border-radius: 8px;
	box-shadow: 0 16px 34px rgba(21, 32, 41, 0.12);
	left: 50%;
	min-width: 220px;
	opacity: 0;
	padding: 10px;
	pointer-events: none;
	position: absolute;
	top: calc(100% + 15px);
	transform: translate(-50%, 8px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
	visibility: hidden;
	z-index: 30;
}

.devlab-primary-menu li:hover > .sub-menu,
.devlab-primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
	visibility: visible;
}

.devlab-primary-menu .sub-menu a {
	color: #373f49;
	display: block;
	font-size: 16px;
	line-height: 1.2;
	padding: 11px 12px;
	white-space: normal;
}

.devlab-primary-menu .sub-menu a:hover,
.devlab-primary-menu .sub-menu a:focus-visible {
	color: #006f8f;
}

.devlab-site-header__contact {
	align-items: center;
	background: #006f8f;
	border-radius: 6px;
	color: #fff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	justify-content: center;
	justify-self: end;
	letter-spacing: 0;
	line-height: 1;
	min-height: 36px;
	min-width: 92px;
	padding: 10px 18px;
	text-decoration: none;
}

.devlab-site-header__contact:hover,
.devlab-site-header__contact:focus-visible {
	background: #005f7a;
	color: #fff;
	text-decoration: none;
}

@media (max-width: 1180px) {
	.devlab-primary-menu {
		gap: 22px;
	}

	.devlab-primary-menu a {
		font-size: 14px;
	}

	.devlab-site-header__contact {
		font-size: 14px;
		min-height: 36px;
		min-width: 88px;
	}
}

@media (max-width: 900px) {
	.devlab-site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		min-height: 66px;
		padding: 16px 24px;
	}

	.devlab-site-header__brand {
		font-size: 23px;
	}

	.devlab-site-header__toggle {
		display: inline-flex;
		justify-self: end;
		position: relative;
	}

	.devlab-site-header__nav,
	.devlab-site-header__contact {
		display: none;
		grid-column: 1 / -1;
		justify-self: stretch;
	}

	.devlab-site-header.is-menu-open .devlab-site-header__nav,
	.devlab-site-header.is-menu-open .devlab-site-header__contact {
		display: block;
	}

	.devlab-site-header__nav {
		border-top: 1px solid #e0e5e8;
		margin-top: 6px;
		padding-top: 14px;
	}

	.devlab-primary-menu {
		align-items: stretch;
		display: grid;
		gap: 0;
		justify-content: stretch;
	}

	.devlab-primary-menu a {
		display: flex;
		font-size: 18px;
		justify-content: space-between;
		padding: 15px 0;
		white-space: normal;
	}

	.devlab-primary-menu > li > a::after {
		display: none;
	}

	.devlab-primary-menu .sub-menu {
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		left: auto;
		min-width: 0;
		opacity: 1;
		padding: 0 0 0 14px;
		pointer-events: auto;
		position: static;
		transform: none;
		visibility: visible;
	}

	.devlab-primary-menu .sub-menu a {
		font-size: 16px;
		padding: 11px 0;
	}

	.devlab-site-header__contact {
		font-size: 20px;
		margin-top: 10px;
		min-height: 52px;
		text-align: center;
	}
}

.devlab-admin-hero-panel[hidden],
.devlab-admin-slide-preview[hidden] {
	display: none;
}

.devlab-admin-slide-number {
	overflow: visible;
	position: relative;
	width: 72px;
}

.devlab-admin-slide-badge {
	align-items: center;
	background: #f0f4f6;
	border: 1px solid #d8e1e5;
	border-radius: 999px;
	color: #006f8f;
	display: inline-flex;
	font-weight: 700;
	height: 34px;
	justify-content: center;
	width: 34px;
}

.devlab-admin-slide-preview {
	background: #fff;
	border: 1px solid #d8e1e5;
	border-radius: 8px;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
	left: 46px;
	opacity: 0;
	padding: 8px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) translateX(-6px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
	visibility: hidden;
	z-index: 1000;
}

.devlab-admin-slide-preview img {
	display: block;
	height: 92px;
	object-fit: cover;
	width: 150px;
}

.devlab-admin-slide-number:hover .devlab-admin-slide-preview,
.devlab-admin-slide-number:focus-within .devlab-admin-slide-preview {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
	visibility: visible;
}

.devlab-home {
	margin-top: 0;
}

.devlab-home-hero {
	box-sizing: border-box;
	width: 100%;
}

.devlab-home-hero--static {
	background: #f6f7f9;
	overflow: hidden;
}

.devlab-hero-static__inner {
	align-items: center;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	min-height: 730px;
	padding: 0;
	width: 100%;
}

.devlab-hero-static__content {
	max-width: 560px;
	padding: 96px 0;
	position: relative;
	z-index: 2;
}

.devlab-hero-static__content h1 {
	color: #525f63;
	font-size: clamp(48px, 5vw, 64px);
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0;
}

.devlab-hero-static__content h1::first-line {
	color: #006b8d;
}

.devlab-hero-static__content p {
	color: #444f55;
	font-size: 17px;
	line-height: 1.45;
	margin: 28px 0 0;
	max-width: 540px;
}

.devlab-hero-static__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 36px;
}

.devlab-button {
	align-items: center;
	border-radius: 8px;
	box-sizing: border-box;
	display: inline-flex;
	font-size: 14px;
	font-weight: 500;
	justify-content: center;
	line-height: 1.2;
	min-height: 48px;
	min-width: 175px;
	padding: 14px 24px;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.devlab-button--primary {
	background: #006f8f;
	border: 1px solid #006f8f;
	box-shadow: 0 10px 20px rgba(0, 111, 143, 0.22);
	color: #fff;
}

.devlab-button--primary:hover,
.devlab-button--primary:focus-visible {
	background: #005a74;
	border-color: #005a74;
	color: #fff;
}

.devlab-button--secondary {
	background: transparent;
	border: 1px solid #d2d8dd;
	color: #1e272d;
}

.devlab-button--secondary:hover,
.devlab-button--secondary:focus-visible {
	border-color: #006f8f;
	color: #006f8f;
}

.devlab-hero-static__media {
	align-self: stretch;
	border-top-left-radius: 34px;
	border-bottom-left-radius: 34px;
	min-height: 620px;
	overflow: visible;
	position: relative;
}

.devlab-hero-static__media::before {
	background: #f6f7f9;
	border-radius: 50%;
	content: "";
	height: 164px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 164px;
	z-index: 2;
}

.devlab-hero-static__media img,
.devlab-hero-static__placeholder {
	border-top-left-radius: 34px;
	border-bottom-left-radius: 34px;
	display: block;
	height: 100%;
	min-height: 730px;
	object-fit: cover;
	width: 100%;
}

.devlab-hero-static__placeholder {
	background: linear-gradient(135deg, #d7e5ea 0%, #f2f4f6 45%, #b8cad0 100%);
}

.devlab-home-hero--dynamic {
	background: #f6f7f9;
	margin-left: calc(50% - 50vw);
	width: 100vw;
}

.devlab-hero-slider {
	height: clamp(420px, 56vw, 680px);
	overflow: hidden;
	position: relative;
	width: 100%;
}

.devlab-hero-slider__track,
.devlab-hero-slider__slide,
.devlab-hero-slider__slide picture,
.devlab-hero-slider__slide img {
	display: block;
	height: 100%;
	width: 100%;
}

.devlab-hero-slider__slide {
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 420ms ease;
}

.devlab-hero-slider__slide.is-active {
	opacity: 1;
	position: relative;
	z-index: 1;
}

.devlab-hero-slider__slide img {
	object-fit: cover;
}

.devlab-hero-slider__arrow {
	align-items: center;
	background: rgba(18, 26, 30, 0.32);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	height: 46px;
	justify-content: center;
	opacity: 0.85;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
	width: 46px;
	z-index: 3;
}

.devlab-hero-slider__arrow svg {
	fill: none;
	height: 22px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 22px;
}

.devlab-hero-slider__arrow:hover,
.devlab-hero-slider__arrow:focus-visible {
	background: rgba(0, 111, 143, 0.92);
	opacity: 1;
	transform: translateY(-50%) scale(1.06);
}

.devlab-hero-slider__arrow:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.devlab-hero-slider__arrow--prev {
	left: clamp(14px, 3vw, 32px);
}

.devlab-hero-slider__arrow--next {
	right: clamp(14px, 3vw, 32px);
}

.devlab-hero-slider__dots {
	align-items: center;
	bottom: 24px;
	display: flex;
	gap: 8px;
	justify-content: center;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	z-index: 3;
}

.devlab-hero-slider__dots button {
	background: rgba(255, 255, 255, 0.55);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	height: 8px;
	padding: 0;
	transition: background-color 180ms ease, width 180ms ease;
	width: 8px;
}

.devlab-hero-slider__dots button:hover,
.devlab-hero-slider__dots button:focus-visible {
	background: rgba(255, 255, 255, 0.85);
}

.devlab-hero-slider__dots button.is-active {
	background: #fff;
	width: 26px;
}

.devlab-home-services {
	background: #f6f7f9;
	padding: 84px 0;
}

.devlab-home-services__container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	padding: 0 var(--devlab-container-gutter);
	width: 100%;
}

.devlab-home-services__header {
	align-items: flex-end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 44px;
}

.devlab-home-services__heading h2 {
	color: #045a78;
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 12px;
}

.devlab-home-services__heading p {
	color: #55606a;
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
	max-width: 560px;
}

.devlab-home-services__nav {
	display: flex;
	flex-shrink: 0;
	gap: 12px;
}

.devlab-home-services__arrow {
	align-items: center;
	background: #fff;
	border: 1px solid #e2e7eb;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(20, 30, 40, 0.06);
	color: #006f8f;
	cursor: pointer;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	padding: 0;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
	width: 44px;
}

.devlab-home-services__arrow svg {
	fill: none;
	height: 20px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 20px;
}

.devlab-home-services__arrow:hover,
.devlab-home-services__arrow:focus-visible {
	background: #006f8f;
	border-color: #006f8f;
	color: #fff;
	transform: scale(1.05);
}

.devlab-home-services__arrow:focus-visible {
	outline: 2px solid #006f8f;
	outline-offset: 2px;
}

.devlab-home-services__page {
	display: none;
}

.devlab-home-services__page.is-active {
	display: block;
}

.devlab-home-services__grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devlab-home-services__card {
	background: #fff;
	border: 1px solid #e9edf0;
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(20, 30, 40, 0.05);
	overflow: hidden;
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.devlab-home-services__card:hover {
	box-shadow: 0 14px 28px rgba(20, 30, 40, 0.1);
	transform: translateY(-3px);
}

.devlab-home-services__card-link {
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
}

.devlab-home-services__media {
	display: block;
	height: 190px;
	overflow: hidden;
	position: relative;
}

.devlab-home-services__media img,
.devlab-home-services__placeholder {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 320ms ease;
	width: 100%;
}

.devlab-home-services__placeholder {
	background: linear-gradient(135deg, #d7e5ea 0%, #f2f4f6 45%, #b8cad0 100%);
}

.devlab-home-services__card-link:hover .devlab-home-services__media img,
.devlab-home-services__card-link:focus-visible .devlab-home-services__media img {
	transform: scale(1.05);
}

.devlab-home-services__body {
	box-sizing: border-box;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px 24px 24px;
}

.devlab-home-services__body strong {
	color: #045a78;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 10px;
}

.devlab-home-services__text {
	color: #57626b;
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 20px;
}

.devlab-home-services__link {
	align-items: center;
	color: #007a9c;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 6px;
	margin-top: auto;
}

.devlab-home-services__link svg {
	fill: none;
	height: 14px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.4;
	transition: transform 180ms ease;
	width: 14px;
}

.devlab-home-services__card-link:hover .devlab-home-services__link svg,
.devlab-home-services__card-link:focus-visible .devlab-home-services__link svg {
	transform: translateX(3px);
}

.devlab-home-services__card-link:focus-visible {
	outline: 2px solid #006f8f;
	outline-offset: -2px;
}

.devlab-home-cases {
	background: #fff;
	padding: 84px 0;
}

.devlab-home-cases__container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	padding: 0 var(--devlab-container-gutter);
	width: 100%;
}

.devlab-home-cases__header {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 44px;
}

.devlab-home-cases__heading h2 {
	color: #045a78;
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 12px;
}

.devlab-home-cases__heading p {
	color: #55606a;
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
	max-width: 560px;
}

.devlab-home-cases__all {
	color: #007a9c;
	flex-shrink: 0;
	font-size: 14px;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 4px;
	white-space: nowrap;
}

.devlab-home-cases__all:hover,
.devlab-home-cases__all:focus-visible {
	color: #045a78;
}

.devlab-home-cases__grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devlab-home-cases__card-link {
	color: inherit;
	display: block;
	text-decoration: none;
}

.devlab-home-cases__media {
	border-radius: 8px;
	display: block;
	overflow: hidden;
}

.devlab-home-cases__media img,
.devlab-home-cases__placeholder {
	aspect-ratio: 570 / 356;
	display: block;
	height: auto;
	object-fit: cover;
	transition: transform 320ms ease;
	width: 100%;
}

.devlab-home-cases__placeholder {
	background:
		linear-gradient(135deg, rgba(5, 34, 48, 0.2), rgba(5, 34, 48, 0.72)),
		linear-gradient(135deg, #203746 0%, #081a24 100%);
}

.devlab-home-cases__card-link:hover .devlab-home-cases__media img,
.devlab-home-cases__card-link:focus-visible .devlab-home-cases__media img {
	transform: scale(1.045);
}

.devlab-home-cases__body {
	display: block;
	padding: 20px 4px 0;
}

.devlab-home-cases__category {
	color: #00769a;
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.devlab-home-cases__body strong {
	color: #1d252c;
	display: block;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.28;
	margin-bottom: 10px;
	transition: color 180ms ease;
}

.devlab-home-cases__card-link:hover .devlab-home-cases__body strong,
.devlab-home-cases__card-link:focus-visible .devlab-home-cases__body strong {
	color: #00769a;
}

.devlab-home-cases__text {
	color: #55606a;
	display: block;
	font-size: 14px;
	line-height: 1.55;
}

.devlab-home-cases__card-link:focus-visible {
	outline: 2px solid #006f8f;
	outline-offset: 4px;
}

.devlab-home-blog {
	background: #fff;
	padding: 84px 0;
}

.devlab-home-blog__container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	padding: 0 var(--devlab-container-gutter);
	width: 100%;
}

.devlab-home-blog__container > h2 {
	color: #045a78;
	font-size: clamp(32px, 3.6vw, 44px);
	font-weight: 800;
	margin: 0 0 48px;
	text-align: center;
}

.devlab-home-blog__layout {
	align-items: stretch;
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.devlab-home-blog__layout--solo {
	grid-template-columns: minmax(0, 1fr);
	margin: 0 auto;
	max-width: 700px;
}

.devlab-home-blog__featured {
	background: #f6f7f9;
	border: 1px solid #e6eaed;
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(20, 30, 40, 0.05);
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: hidden;
}

.devlab-home-blog__featured-media {
	display: block;
	min-height: 320px;
	overflow: hidden;
}

.devlab-home-blog__featured-media img,
.devlab-home-blog__placeholder {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.devlab-home-blog__placeholder {
	background: linear-gradient(135deg, #d7e5ea 0%, #f2f4f6 45%, #b8cad0 100%);
	min-height: 220px;
}

.devlab-home-blog__featured-body {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 40px 40px 0;
}

.devlab-home-blog__meta {
	color: #6a747d;
	font-size: 13px;
	margin: 0 0 14px;
}

.devlab-home-blog__featured-body h3 {
	font-size: clamp(22px, 2.4vw, 28px);
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 16px;
}

.devlab-home-blog__featured-body h3 a {
	color: #045a78;
	text-decoration: none;
}

.devlab-home-blog__featured-body h3 a:hover,
.devlab-home-blog__featured-body h3 a:focus-visible {
	color: #00769a;
}

.devlab-home-blog__excerpt {
	color: #55606a;
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 28px;
}

.devlab-home-blog__more {
	align-items: center;
	color: #00769a;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 6px;
	width: fit-content;
}

.devlab-home-blog__more svg {
	fill: none;
	height: 16px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.2;
	width: 16px;
}

.devlab-home-blog__more:hover,
.devlab-home-blog__more:focus-visible {
	color: #045a78;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.devlab-home-blog__list {
	display: flex;
	flex-direction: column;
	gap: 28px;
	justify-content: center;
}

.devlab-home-blog__item-link {
	color: inherit;
	display: flex;
	gap: 18px;
	text-decoration: none;
}

.devlab-home-blog__item-media {
	border-radius: 8px;
	flex-shrink: 0;
	height: 74px;
	overflow: hidden;
	width: 74px;
}

.devlab-home-blog__item-media img,
.devlab-home-blog__item-media .devlab-home-blog__placeholder {
	display: block;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	width: 100%;
}

.devlab-home-blog__item-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.devlab-home-blog__item-category {
	color: #6a747d;
	font-size: 12px;
	margin-bottom: 4px;
}

.devlab-home-blog__item-body strong {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #1d252c;
	display: -webkit-box;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 4px;
	overflow: hidden;
	transition: color 180ms ease;
}

.devlab-home-blog__item-excerpt {
	color: #66717b;
	font-size: 13px;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.devlab-home-blog__item-link:hover .devlab-home-blog__item-body strong,
.devlab-home-blog__item-link:focus-visible .devlab-home-blog__item-body strong {
	color: #00769a;
}

.devlab-home-blog__item-link:focus-visible {
	border-radius: 8px;
	outline: 2px solid #006f8f;
	outline-offset: 4px;
}

.devlab-security-performance {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-left: calc(50% - 50vw);
	width: 100vw;
}

.devlab-security-performance__panel {
	box-sizing: border-box;
	min-height: 318px;
	padding-bottom: 58px;
	padding-top: 58px;
}

.devlab-security-performance__panel--security {
	background: #e8eaed;
	color: #3f4c53;
	padding-left: var(--devlab-container-edge);
	padding-right: 58px;
}

.devlab-security-performance__panel--performance {
	background: #006f86;
	color: #fff;
	padding-left: 58px;
	padding-right: var(--devlab-container-edge);
}

.devlab-security-performance__content {
	max-width: 390px;
}

.devlab-security-performance__icon {
	align-items: center;
	background: rgba(0, 111, 134, 0.12);
	border-radius: 9px;
	display: inline-flex;
	height: 40px;
	justify-content: center;
	margin-bottom: 24px;
	width: 40px;
}

.devlab-security-performance__panel--performance .devlab-security-performance__icon {
	background: rgba(255, 255, 255, 0.12);
}

.devlab-security-performance__icon svg {
	fill: #006f86;
	height: 22px;
	width: 22px;
}

.devlab-security-performance__panel--performance .devlab-security-performance__icon svg {
	fill: #fff;
}

.devlab-security-performance h2 {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0 0 14px;
}

.devlab-security-performance__panel--security h2 {
	color: #006f86;
}

.devlab-security-performance__panel--performance h2 {
	color: #fff;
}

.devlab-security-performance p {
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
	max-width: 345px;
}

.devlab-security-performance__panel--security p {
	color: #4b555c;
}

.devlab-security-performance__panel--performance p {
	color: rgba(255, 255, 255, 0.92);
}

.devlab-empathy-banner {
	align-items: center;
	background-color: #121820;
	box-sizing: border-box;
	color: #fff;
	display: flex;
	justify-content: center;
	margin-left: calc(50% - 50vw);
	min-height: 360px;
	padding: 72px var(--devlab-container-edge);
	position: relative;
	text-align: center;
	width: 100vw;
}

.devlab-empathy-banner__background {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
	z-index: 0;
}

.devlab-empathy-banner::before {
	background: rgba(0, 0, 0, 0.42);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.devlab-empathy-banner--placeholder {
	background: linear-gradient(135deg, #17242d 0%, #006f86 100%);
}

.devlab-empathy-banner__inner {
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	position: relative;
	width: 100%;
	z-index: 2;
}

.devlab-empathy-banner h2 {
	color: #fff;
	font-size: 32px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0 auto;
	max-width: 560px;
}

.devlab-empathy-banner p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	line-height: 1.4;
	margin: 14px auto 0;
	max-width: 520px;
}

.devlab-blog-page {
	background: #f6f7f9;
	box-sizing: border-box;
	margin-left: calc(50% - 50vw);
	padding: 42px var(--devlab-container-edge) 84px;
	width: 100vw;
}

.devlab-blog-header {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	width: 100%;
}

.devlab-blog-header h1 {
	color: #1f252b;
	font-size: 36px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 0 0 13px;
}

.devlab-blog-header p {
	color: #4b535b;
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
	max-width: 520px;
}

.devlab-blog-controls {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin: 54px auto 34px;
	max-width: var(--devlab-container-width);
	width: 100%;
}

.devlab-blog-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.devlab-blog-categories a {
	background: #e6eaee;
	border-radius: 999px;
	color: #3f4750;
	font-size: 12px;
	line-height: 1;
	padding: 10px 14px;
	text-decoration: none;
}

.devlab-blog-categories a.is-active,
.devlab-blog-categories a:hover,
.devlab-blog-categories a:focus-visible {
	background: #187f9e;
	color: #fff;
}

.devlab-blog-search {
	position: relative;
	width: min(320px, 100%);
}

.devlab-blog-search::before {
	border: 2px solid #7f8b95;
	border-radius: 999px;
	box-sizing: border-box;
	content: "";
	height: 12px;
	left: 13px;
	position: absolute;
	top: 14px;
	width: 12px;
}

.devlab-blog-search::after {
	background: #7f8b95;
	content: "";
	height: 7px;
	left: 24px;
	position: absolute;
	top: 24px;
	transform: rotate(-45deg);
	transform-origin: top center;
	width: 2px;
}

.devlab-blog-search input {
	background: #f0f2f5;
	border: 1px solid transparent;
	border-radius: 7px;
	box-sizing: border-box;
	color: #1f252b;
	font-size: 13px;
	min-height: 42px;
	padding: 10px 14px 10px 38px;
	width: 100%;
}

.devlab-blog-featured {
	background: #fff;
	border: 1px solid #e2e7eb;
	border-radius: 9px;
	box-sizing: border-box;
	margin: 0 auto 56px;
	max-width: var(--devlab-container-width);
	overflow: hidden;
	position: relative;
	width: 100%;
}

.devlab-blog-featured__track {
	height: 400px;
	position: relative;
}

.devlab-blog-featured__slide {
	align-items: stretch;
	display: grid;
	grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.88fr);
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(16px);
	transition: opacity 280ms ease, transform 320ms ease, visibility 280ms ease;
	visibility: hidden;
	width: 100%;
}

.devlab-blog-featured__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
	visibility: visible;
	z-index: 1;
}

.devlab-blog-featured__media {
	display: block;
	height: 100%;
	overflow: hidden;
}

.devlab-blog-featured__image,
.devlab-blog-card__image,
.devlab-blog-image-placeholder {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.devlab-blog-featured__media img,
.devlab-blog-card__media img {
	height: 100% !important;
	max-width: none;
	object-fit: cover;
	width: 100% !important;
}

.devlab-blog-image-placeholder {
	background: linear-gradient(135deg, #d8e4e8 0%, #f4d6a4 100%);
}

.devlab-blog-featured__content {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	padding: 34px 46px 28px;
}

.devlab-blog-eyebrow {
	color: #007a9c;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.devlab-blog-featured h2 {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.16;
	margin: 0;
	overflow: hidden;
}

.devlab-blog-featured h2 a,
.devlab-blog-card h2 a {
	color: #1f252b;
	text-decoration: none;
}

.devlab-blog-featured h2 a:hover,
.devlab-blog-featured h2 a:focus-visible,
.devlab-blog-card h2 a:hover,
.devlab-blog-card h2 a:focus-visible {
	color: #007a9c;
}

.devlab-blog-featured__excerpt {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: #4d5962;
	display: -webkit-box;
	font-size: 13px;
	line-height: 1.55;
	margin: 19px 0 0;
	overflow: hidden;
}

.devlab-blog-featured__meta {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	gap: 12px;
	margin-top: auto;
	padding-top: 24px;
}

.devlab-blog-author-avatar {
	border-radius: 999px;
	display: block;
	height: 40px;
	width: 40px;
}

.devlab-blog-featured__meta span {
	color: #1f252b;
	display: block;
	font-size: 13px;
	font-weight: 600;
}

.devlab-blog-featured__meta small {
	color: #5f6972;
	display: block;
	font-size: 11px;
	margin-top: 2px;
}

.devlab-blog-featured__arrow {
	align-items: center;
	background: rgba(255, 255, 255, 0.85) !important;
	border: 1px solid rgba(31, 37, 43, 0.08) !important;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(15, 23, 30, 0.08);
	box-sizing: border-box;
	color: rgba(31, 37, 43, 0.55) !important;
	cursor: pointer;
	display: inline-flex;
	height: 36px;
	justify-content: center;
	line-height: 1;
	margin: 0;
	outline-offset: 0;
	padding: 0 !important;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
	width: 36px;
	z-index: 3;
}

.devlab-blog-featured__arrow--prev {
	left: 14px;
}

.devlab-blog-featured__arrow--next {
	right: 14px;
}

.devlab-blog-featured__arrow:hover,
.devlab-blog-featured__arrow:focus-visible {
	background: #fff !important;
	border-color: rgba(0, 122, 156, 0.25) !important;
	box-shadow: 0 3px 10px rgba(15, 23, 30, 0.12);
	color: #007a9c !important;
	outline: none !important;
}

.devlab-blog-featured__arrow:focus-visible {
	outline: 2px solid #007a9c !important;
	outline-offset: 2px;
}

.devlab-blog-featured__arrow svg {
	display: block;
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 18px;
}

.devlab-blog-featured__dots {
	align-items: center;
	bottom: 15px;
	display: flex;
	gap: 7px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	z-index: 3;
}

.devlab-blog-featured__dots button {
	background: #c3cbd2;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	height: 7px;
	outline: none !important;
	padding: 0;
	transition: background-color 180ms ease, width 180ms ease;
	width: 7px;
}

.devlab-blog-featured__dots button.is-active {
	background: #007a9c;
	width: 24px;
}

.devlab-blog-featured__dots button:focus-visible {
	outline: 2px solid #007a9c !important;
	outline-offset: 2px;
}

.devlab-blog-listing {
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	width: 100%;
}

.devlab-blog-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devlab-blog-card {
	background: #fff;
	border: 1px solid #e2e7eb;
	border-radius: 8px;
	overflow: hidden;
}

.devlab-blog-card__media {
	display: block;
	height: 238px;
	overflow: hidden;
}

.devlab-blog-card__body {
	box-sizing: border-box;
	padding: 26px 24px 24px;
}

.devlab-blog-card__category {
	color: #6a747d;
	font-size: 12px;
	line-height: 1;
	margin: 0 0 15px;
}

.devlab-blog-card h2 {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.22;
	margin: 0;
}

.devlab-blog-card__body > p:not(.devlab-blog-card__category) {
	color: #4d5962;
	font-size: 13px;
	line-height: 1.45;
	margin: 14px 0 24px;
}

.devlab-blog-card__footer {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.devlab-blog-card__footer time {
	color: #66717b;
	font-size: 11px;
}

.devlab-blog-card__footer a {
	color: #007a9c;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
}

.devlab-blog-load-more {
	background: #007a9c;
	border: 1px solid #007a9c;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	margin: 44px auto 0;
	min-height: 46px;
	min-width: 168px;
	padding: 13px 24px;
}

.devlab-blog-load-more:disabled {
	cursor: wait;
	opacity: 0.7;
}

.devlab-blog-load-more--link {
	text-decoration: none;
}

.devlab-blog-empty {
	color: #4d5962;
	grid-column: 1 / -1;
	margin: 0;
}

.devlab-single-post {
	background: #f6f7f9;
	box-sizing: border-box;
	margin-left: calc(50% - 50vw);
	padding: 18px var(--devlab-container-edge) 80px;
	width: 100vw;
}

.devlab-single-hero {
	background: #fff;
	margin: -18px calc(-1 * var(--devlab-container-edge)) 0;
	padding: 26px var(--devlab-container-edge) 72px;
	text-align: center;
}

.devlab-single-hero__meta {
	align-items: center;
	display: flex;
	gap: 22px;
	justify-content: center;
	margin-bottom: 24px;
}

.devlab-single-hero__meta span {
	background: #e8f5f7;
	border-radius: 999px;
	color: #007a9c;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	padding: 7px 12px;
}

.devlab-single-hero__meta small {
	color: #1f252b;
	font-size: 12px;
	font-weight: 700;
}

.devlab-single-hero h1 {
	color: #1f252b;
	font-size: clamp(42px, 5vw, 60px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0 auto;
	max-width: 900px;
}

.devlab-single-author {
	align-items: center;
	display: inline-flex;
	gap: 14px;
	justify-content: center;
	margin-top: 36px;
	text-align: left;
}

.devlab-single-author__avatar {
	border-radius: 999px;
	display: block;
	height: 56px;
	width: 56px;
}

.devlab-single-author strong {
	color: #1f252b;
	display: block;
	font-size: 14px;
	line-height: 1.2;
}

.devlab-single-author p {
	color: #2f3941;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
	margin: 3px 0 0;
}

.devlab-single-layout {
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 760px) 352px;
	margin: 48px auto 0;
	max-width: var(--devlab-container-width);
	width: 100%;
}

.devlab-single-main {
	min-width: 0;
}

.devlab-single-featured {
	background: #fff;
	border: 1px solid #dde5ea;
	border-radius: 8px;
	margin: 0 0 54px;
	overflow: hidden;
}

.devlab-single-featured__image {
	aspect-ratio: 760 / 760;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.devlab-single-featured figcaption {
	background: #fff;
	color: #1f252b;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	padding: 10px 16px;
	text-align: center;
}

.devlab-single-content {
	color: #4b535b;
	font-size: 18px;
	line-height: 1.72;
}

.devlab-single-content > * {
	margin-left: 0;
	margin-right: 0;
	max-width: 100%;
}

.devlab-single-content p {
	margin: 0 0 28px;
}

.devlab-single-content h2 {
	color: #1f252b;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 42px 0 18px;
}

.devlab-single-content h3 {
	color: #1f252b;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 34px 0 16px;
}

.devlab-single-content blockquote {
	background: #f0f2f5;
	border-left: 4px solid #007a9c;
	border-radius: 0 8px 8px 0;
	color: #4b535b;
	font-size: 18px;
	font-style: italic;
	font-weight: 700;
	line-height: 1.7;
	margin: 42px 0;
	padding: 34px 38px;
}

.devlab-single-content blockquote p:last-child {
	margin-bottom: 0;
}

.devlab-single-sidebar {
	display: flex;
	flex-direction: column;
	gap: 34px;
	min-width: 0;
}

.devlab-single-newsletter {
	background: #007a95;
	border-radius: 12px;
	box-shadow: 0 14px 26px rgba(0, 122, 149, 0.25);
	box-sizing: border-box;
	color: #fff;
	padding: 34px 32px;
}

.devlab-single-newsletter h2 {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 24px;
}

.devlab-single-newsletter p {
	color: rgba(255, 255, 255, 0.92);
	font-size: 15px;
	line-height: 1.45;
	margin: 0 0 26px;
}

.devlab-single-newsletter form {
	display: grid;
	gap: 14px;
}

.devlab-single-newsletter input {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	box-sizing: border-box;
	color: #fff;
	font-size: 14px;
	min-height: 50px;
	padding: 13px 15px;
	width: 100%;
}

.devlab-single-newsletter input::placeholder {
	color: rgba(255, 255, 255, 0.76);
}

.devlab-single-newsletter button {
	background: #fff;
	border: 0;
	border-radius: 6px;
	color: #007a95;
	cursor: pointer;
	font-size: 14px;
	font-weight: 800;
	min-height: 50px;
	padding: 13px 18px;
}

.devlab-single-related h2,
.devlab-single-tags h2 {
	color: #4b535b;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.2;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.devlab-single-related__item {
	align-items: center;
	display: grid;
	gap: 16px;
	grid-template-columns: 76px minmax(0, 1fr);
	margin-bottom: 22px;
	text-decoration: none;
}

.devlab-single-related__image,
.devlab-single-related__placeholder {
	border-radius: 7px;
	display: block;
	height: 76px;
	object-fit: cover;
	width: 76px;
}

.devlab-single-related__placeholder {
	background: linear-gradient(135deg, #d8e4e8 0%, #f4d6a4 100%);
}

.devlab-single-related__item strong {
	color: #1f252b;
	display: block;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.18;
}

.devlab-single-related__item small {
	color: #1f252b;
	display: block;
	font-size: 11px;
	font-style: italic;
	font-weight: 700;
	margin-top: 3px;
}

.devlab-single-tags div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.devlab-single-tags a {
	background: #eef1f4;
	border-radius: 999px;
	color: #4b535b;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	padding: 8px 10px;
	text-decoration: none;
}

.devlab-single-tags a:hover,
.devlab-single-tags a:focus-visible {
	background: #007a95;
	color: #fff;
}

.devlab-site-footer {
	background: #f4f5f7;
	color: #3f4850;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	margin-top: 0;
}

.devlab-footer__inner {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	padding: 88px 42px 92px;
	width: 100%;
}

.devlab-footer__brand {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.devlab-footer__brand-link {
	align-items: center;
	color: #006b91;
	display: inline-flex;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	text-decoration: none;
}

.devlab-footer__brand-link:hover,
.devlab-footer__brand-link:focus-visible {
	color: #006b91;
	text-decoration: none;
}

.devlab-footer__brand-text {
	display: inline-flex;
}

.devlab-footer__logo {
	display: block;
	height: auto;
	max-height: 42px;
	max-width: 180px;
	width: auto;
}

.devlab-footer__description {
	color: #444d55;
	font-size: 14px;
	line-height: 1.45;
	margin: 16px auto 0;
	max-width: 470px;
}

.devlab-footer__nav {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 22px 32px;
	justify-content: center;
	margin: 52px auto 0;
}

.devlab-footer__nav a {
	color: #4a535b;
	font-size: 14px;
	line-height: 1.2;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.devlab-footer__nav a:hover,
.devlab-footer__nav a:focus-visible {
	color: #006b91;
}

.devlab-footer__bottom {
	align-items: center;
	border-top: 1px solid #e2e6ea;
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
	min-height: 74px;
	padding-top: 31px;
}

.devlab-footer__copyright {
	color: #444d55;
	font-size: 13px;
	line-height: 1.4;
	margin: 0;
}

.devlab-footer__socials {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

.devlab-footer__socials a {
	align-items: center;
	color: #006f97;
	display: inline-flex;
	height: 22px;
	justify-content: center;
	text-decoration: none;
	width: 22px;
}

.devlab-footer__socials a:hover,
.devlab-footer__socials a:focus-visible {
	color: #004f6c;
}

.devlab-footer__socials svg {
	display: block;
	fill: currentColor;
	height: 18px;
	width: 18px;
}

@media (max-width: 980px) {
	.devlab-home-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.devlab-home-cases__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.devlab-home-blog__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.devlab-home-blog__list {
		gap: 24px;
	}
}

@media (max-width: 700px) {
	.devlab-home-services {
		padding: 56px 0;
	}

	.devlab-home-services__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
		margin-bottom: 32px;
	}

	.devlab-home-services__nav {
		align-self: flex-end;
	}

	.devlab-home-services__grid {
		grid-template-columns: 1fr;
	}

	.devlab-home-cases {
		padding: 56px 0;
	}

	.devlab-home-cases__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		margin-bottom: 32px;
	}

	.devlab-home-cases__grid {
		gap: 36px;
		grid-template-columns: 1fr;
	}

	.devlab-home-blog {
		padding: 56px 0;
	}

	.devlab-home-blog__container > h2 {
		margin-bottom: 32px;
	}

	.devlab-home-blog__featured {
		grid-template-columns: minmax(0, 1fr);
	}

	.devlab-home-blog__featured-media {
		aspect-ratio: 16 / 10;
		min-height: 0;
	}

	.devlab-home-blog__featured-body {
		padding: 28px 24px 32px;
	}

	.devlab-home-blog__item-media {
		height: 64px;
		width: 64px;
	}

	.devlab-hero-static__inner {
		display: flex;
		flex-direction: column;
		min-height: 0;
		padding: 0;
	}

	.devlab-hero-static__content {
		max-width: none;
		padding: 56px 24px 38px;
		width: 100%;
	}

	.devlab-hero-static__content h1 {
		font-size: 44px;
	}

	.devlab-hero-static__content p {
		font-size: 16px;
		margin-top: 22px;
	}

	.devlab-hero-static__actions {
		gap: 12px;
		margin-top: 30px;
	}

	.devlab-button {
		min-width: 0;
		width: 100%;
	}

	.devlab-hero-static__media {
		border-radius: 0;
		min-height: 360px;
		width: 100%;
	}

	.devlab-hero-static__media::before {
		display: none;
	}

	.devlab-hero-static__media img,
	.devlab-hero-static__placeholder {
		border-radius: 0;
		min-height: 360px;
	}

	.devlab-hero-slider {
		height: 62vw;
		max-height: 480px;
		min-height: 320px;
	}

	.devlab-hero-slider__arrow {
		height: 44px;
		opacity: 0.92;
		width: 44px;
	}

	.devlab-hero-slider__arrow svg {
		height: 20px;
		width: 20px;
	}

	.devlab-hero-slider__arrow--prev {
		left: 12px;
	}

	.devlab-hero-slider__arrow--next {
		right: 12px;
	}

	.devlab-hero-slider__dots {
		bottom: 14px;
	}

	.devlab-security-performance {
		grid-template-columns: 1fr;
	}

	.devlab-security-performance__panel {
		min-height: 0;
		padding: 48px 24px;
	}

	.devlab-security-performance__panel--security .devlab-security-performance__content,
	.devlab-security-performance__panel--performance .devlab-security-performance__content {
		margin-left: 0;
		margin-right: 0;
		max-width: none;
	}

	.devlab-security-performance h2 {
		font-size: 32px;
	}

	.devlab-security-performance p {
		max-width: none;
	}

	.devlab-empathy-banner {
		min-height: 300px;
		padding-bottom: 56px;
		padding-top: 56px;
	}

	.devlab-empathy-banner h2 {
		font-size: 28px;
		max-width: 360px;
	}

	.devlab-blog-page {
		padding-bottom: 60px;
		padding-top: 34px;
	}

	.devlab-blog-header h1 {
		font-size: 34px;
	}

	.devlab-blog-controls {
		align-items: stretch;
		flex-direction: column;
		margin: 36px auto 24px;
	}

	.devlab-blog-search {
		width: 100%;
	}

	.devlab-blog-featured {
		margin-bottom: 34px;
	}

	.devlab-blog-featured__track {
		height: 620px;
	}

	.devlab-blog-featured__slide,
	.devlab-blog-featured__slide.is-active {
		display: flex;
		flex-direction: column;
	}

	.devlab-blog-featured__media {
		flex-shrink: 0;
		height: 230px;
	}

	.devlab-blog-featured__content {
		flex: 1 1 auto;
		padding: 26px 22px 30px;
	}

	.devlab-blog-featured h2 {
		font-size: 25px;
	}

	.devlab-blog-grid {
		grid-template-columns: 1fr;
	}

	.devlab-blog-card__media {
		height: 220px;
	}

	.devlab-single-post {
		padding-bottom: 60px;
	}

	.devlab-single-hero {
		padding-bottom: 52px;
		padding-top: 30px;
	}

	.devlab-single-hero h1 {
		font-size: 38px;
	}

	.devlab-single-author {
		margin-top: 28px;
	}

	.devlab-single-layout {
		display: flex;
		flex-direction: column;
		gap: 42px;
		margin-top: 34px;
	}

	.devlab-single-featured {
		margin-bottom: 38px;
	}

	.devlab-single-content {
		font-size: 16px;
		line-height: 1.65;
	}

	.devlab-single-content h2 {
		font-size: 24px;
	}

	.devlab-single-content blockquote {
		font-size: 16px;
		padding: 26px 24px;
	}

	.devlab-single-sidebar {
		gap: 30px;
	}

	.devlab-footer__inner {
		padding: 56px 24px 60px;
	}

	.devlab-footer__brand-link {
		font-size: 21px;
	}

	.devlab-footer__description {
		font-size: 14px;
		max-width: 330px;
	}

	.devlab-footer__nav {
		flex-direction: column;
		gap: 18px;
		margin-top: 42px;
	}

	.devlab-footer__bottom {
		flex-direction: column;
		gap: 20px;
		justify-content: center;
		margin-top: 44px;
		padding-top: 28px;
		text-align: center;
	}

	.devlab-footer__socials {
		justify-content: center;
	}
}

.devlab-about {
	background: #f6f7f9;
	color: #20262c;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	margin-left: calc(50% - 50vw);
	margin-top: 0;
	width: 100vw;
}

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

.devlab-about__container {
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	padding-left: var(--devlab-container-gutter);
	padding-right: var(--devlab-container-gutter);
	width: 100%;
}

.devlab-about-hero {
	background: #f6f7f9;
	padding: 100px 0 100px;
}

.devlab-about-hero__inner {
	align-items: center;
	display: grid;
	gap: 72px;
	grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
}

.devlab-about-hero__content {
	max-width: 540px;
}

.devlab-about-hero h1 {
	color: #20262c;
	font-size: clamp(38px, 4.7vw, 54px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0;
	text-wrap: balance;
}

.devlab-about-hero h1 span {
	color: #00769a;
}

.devlab-about-hero p {
	color: #4d5861;
	font-size: 14px;
	line-height: 1.5;
	margin: 24px 0 0;
	max-width: 485px;
}

.devlab-about-hero__media {
	background: #ffbd6e;
	border-radius: 14px;
	box-shadow: 0 18px 36px rgba(18, 39, 50, 0.14);
	padding: 24px 22px;
}

.devlab-about-hero__device {
	background: #1d252b;
	border: 8px solid #1d252b;
	border-radius: 15px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
	overflow: hidden;
	position: relative;
}

.devlab-about-hero__device::before {
	background: #263038;
	content: "";
	inset: 0 auto 0 0;
	position: absolute;
	width: 26px;
	z-index: 2;
}

.devlab-about-hero__device span {
	display: grid;
	gap: 18px;
	left: 10px;
	position: absolute;
	top: 22px;
	z-index: 3;
}

.devlab-about-hero__device span::before,
.devlab-about-hero__device span::after {
	background: #778188;
	border-radius: 999px;
	content: "";
	height: 4px;
	width: 4px;
}

.devlab-about-hero__device img {
	aspect-ratio: 16 / 9;
	display: block;
	height: auto;
	object-fit: cover;
	padding-left: 26px;
	width: 100%;
}

.devlab-about-timeline {
	background: #fff;
	padding: 64px 0 70px;
}

.devlab-about-section-label {
	color: #00769a;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1;
	margin: 0 0 34px;
	position: relative;
	text-transform: uppercase;
}

.devlab-about-section-label::after {
	background: #00769a;
	bottom: -13px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 42px;
}

.devlab-about-timeline__list {
	display: grid;
	gap: 34px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.devlab-about-timeline__list::before {
	background: #dce4e8;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	top: 8px;
}

.devlab-about-timeline__list li {
	position: relative;
	z-index: 1;
}

.devlab-about-timeline__list li > span {
	background: #fff;
	border: 2px solid #00769a;
	border-radius: 999px;
	display: block;
	height: 18px;
	margin: 0 0 14px;
	width: 18px;
}

.devlab-about-timeline__list li.is-current > span {
	background: #00769a;
	box-shadow: 0 0 0 6px rgba(0, 118, 154, 0.12);
}

.devlab-about-timeline__list strong {
	color: #20262c;
	display: block;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0;
}

.devlab-about-timeline__list p {
	color: #53606a;
	font-size: 11px;
	line-height: 1.45;
	margin: 13px 0 0;
	max-width: 210px;
}

.devlab-about-mission {
	background: #f1f3f5;
	padding: 84px 0 86px;
}

.devlab-about-mission__grid {
	display: grid;
	gap: 100px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.devlab-about-inline-heading {
	align-items: center;
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
}

.devlab-about-inline-heading svg {
	fill: #00769a;
	flex: 0 0 auto;
	height: 22px;
	width: 22px;
}

.devlab-about-inline-heading h2 {
	color: #20262c;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 0;
}

.devlab-about-mission__item p {
	color: #46525c;
	font-size: 14px;
	line-height: 1.62;
	margin: 0;
	max-width: 540px;
}

.devlab-about-pillars {
	background: #f6f7f9;
	padding: 76px 0 110px;
}

.devlab-about-section-header {
	margin: 0 auto 64px;
	max-width: 560px;
	text-align: center;
}

.devlab-about-section-header h2 {
	color: #20262c;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.16;
	margin: 0;
}

.devlab-about-section-header p {
	color: #4e5963;
	font-size: 13px;
	line-height: 1.55;
	margin: 18px auto 0;
	max-width: 470px;
}

.devlab-about-pillars__grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devlab-about-pillar-card {
	background: #f8f9fb;
	border: 1px solid #dfe6ea;
	border-radius: 8px;
	min-height: 310px;
	padding: 34px 32px 32px;
}

.devlab-about-pillar-card__icon {
	align-items: center;
	background: #bdeaff;
	border-radius: 9px;
	display: inline-flex;
	height: 48px;
	justify-content: center;
	margin-bottom: 30px;
	width: 48px;
}

.devlab-about-pillar-card__icon svg {
	fill: #00769a;
	height: 24px;
	width: 24px;
}

.devlab-about-pillar-card h3 {
	color: #20262c;
	font-size: 21px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 22px;
}

.devlab-about-pillar-card p {
	color: #4c5862;
	font-size: 12px;
	line-height: 1.55;
	margin: 0;
}

.devlab-about-curator {
	background: #2188a4;
	color: #fff;
	padding: 108px 0;
}

.devlab-about-curator__inner {
	align-items: center;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
}

.devlab-about-curator__photo {
	border-radius: 12px;
	margin: 0;
	overflow: hidden;
}

.devlab-about-curator__photo img {
	aspect-ratio: 380 / 380;
	display: block;
	height: auto;
	object-fit: cover;
	object-position: center 16%;
	width: 100%;
}

.devlab-about-curator__content {
	max-width: 790px;
	padding-left: 8px;
}

.devlab-about-curator__tag {
	background: rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	color: #d7f5ff;
	display: inline-flex;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	margin: 0 0 22px;
	padding: 9px 14px;
}

.devlab-about-curator h2 {
	color: #fff;
	font-size: clamp(36px, 4vw, 48px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0;
}

.devlab-about-curator__content > p:not(.devlab-about-curator__tag) {
	color: rgba(255, 255, 255, 0.94);
	font-size: 15px;
	line-height: 1.7;
	margin: 24px 0 0;
}

.devlab-about-curator__proof {
	align-items: center;
	display: flex;
	gap: 16px;
	margin-top: 30px;
}

.devlab-about-curator__proof span {
	align-items: center;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	display: inline-flex;
	flex: 0 0 auto;
	height: 46px;
	justify-content: center;
	width: 46px;
}

.devlab-about-curator__proof svg {
	fill: #d7f5ff;
	height: 22px;
	width: 22px;
}

.devlab-about-curator__proof p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	line-height: 1.35;
	margin: 0;
}

.devlab-about-curator__proof strong {
	color: #fff;
	display: block;
	font-size: 13px;
	margin-bottom: 3px;
}

@media (max-width: 980px) {
	.devlab-about-hero {
		padding-bottom: 78px;
	}

	.devlab-about-hero__inner {
		gap: 44px;
		grid-template-columns: 1fr;
	}

	.devlab-about-hero__content {
		max-width: 680px;
	}

	.devlab-about-hero__media {
		max-width: 680px;
		width: 100%;
	}

	.devlab-about-timeline__list {
		gap: 28px 36px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.devlab-about-timeline__list::before {
		display: none;
	}

	.devlab-about-mission__grid {
		gap: 56px;
	}

	.devlab-about-pillars__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.devlab-about-curator__inner {
		align-items: start;
		grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
	}
}

@media (max-width: 700px) {
	.devlab-about__container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.devlab-about-hero {
		padding: 46px 0 58px;
	}

	.devlab-about-hero__inner {
		gap: 34px;
	}

	.devlab-about-hero h1 {
		font-size: 38px;
		line-height: 1.06;
	}

	.devlab-about-hero p {
		font-size: 14px;
		margin-top: 20px;
	}

	.devlab-about-hero__media {
		border-radius: 10px;
		padding: 14px;
	}

	.devlab-about-hero__device {
		border-width: 6px;
		border-radius: 12px;
	}

	.devlab-about-hero__device::before {
		width: 18px;
	}

	.devlab-about-hero__device img {
		padding-left: 18px;
	}

	.devlab-about-timeline,
	.devlab-about-mission,
	.devlab-about-pillars,
	.devlab-about-curator {
		padding-bottom: 58px;
		padding-top: 58px;
	}

	.devlab-about-timeline__list,
	.devlab-about-mission__grid,
	.devlab-about-pillars__grid,
	.devlab-about-curator__inner {
		grid-template-columns: 1fr;
	}

	.devlab-about-timeline__list {
		gap: 28px;
	}

	.devlab-about-timeline__list p {
		max-width: none;
	}

	.devlab-about-inline-heading {
		margin-bottom: 22px;
	}

	.devlab-about-inline-heading h2 {
		font-size: 25px;
	}

	.devlab-about-mission__grid {
		gap: 44px;
	}

	.devlab-about-section-header {
		margin-bottom: 38px;
	}

	.devlab-about-section-header h2 {
		font-size: 28px;
	}

	.devlab-about-pillar-card {
		min-height: 0;
		padding: 28px 26px 30px;
	}

	.devlab-about-pillar-card__icon {
		margin-bottom: 24px;
	}

	.devlab-about-curator__photo {
		max-width: 360px;
	}

	.devlab-about-curator__content {
		padding-left: 0;
	}

	.devlab-about-curator h2 {
		font-size: 34px;
	}
}

.devlab-service-single {
	background: #f5f6f8;
	color: #20262c;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	margin-left: calc(50% - 50vw);
	margin-top: 0;
	width: 100vw;
}

.devlab-service-single *,
.devlab-service-single *::before,
.devlab-service-single *::after {
	box-sizing: border-box;
}

.devlab-service__container {
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	padding-left: var(--devlab-container-gutter);
	padding-right: var(--devlab-container-gutter);
	width: 100%;
}

.devlab-service-eyebrow {
	color: #00769a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.devlab-service-hero {
	background-color: #eef1f4;
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 500px;
	overflow: hidden;
	position: relative;
}

.devlab-service-hero__overlay {
	background: linear-gradient(90deg, #f7f8fa 0%, #f7f8fa 42%, rgba(247, 248, 250, 0.72) 58%, rgba(247, 248, 250, 0.08) 100%);
	inset: 0;
	position: absolute;
	z-index: 0;
}

.devlab-service-hero__inner {
	align-items: center;
	display: grid;
	gap: 56px;
	grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
	min-height: 500px;
	position: relative;
	z-index: 1;
}

.devlab-service-hero__content {
	max-width: 610px;
	padding: 86px 0;
}

.devlab-service-hero h1 {
	color: #20262c;
	font-size: clamp(42px, 5vw, 62px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.06;
	margin: 0;
	text-wrap: balance;
}

.devlab-service-hero__content > p:not(.devlab-service-eyebrow) {
	color: #46515b;
	font-size: 16px;
	line-height: 1.6;
	margin: 24px 0 0;
	max-width: 560px;
}

.devlab-service-hero__logo {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 220px;
}

.devlab-service-hero__logo img {
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 12px;
	box-shadow: 0 18px 38px rgba(18, 39, 50, 0.16);
	display: block;
	height: auto;
	max-height: 170px;
	max-width: 360px;
	padding: 22px 28px;
	width: auto;
}

.devlab-service-about {
	padding: 92px 0;
}

.devlab-service-about__layout {
	align-items: start;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
}

.devlab-service-about__main h2,
.devlab-service-section-header h2,
.devlab-service-cta h2 {
	color: #20262c;
	font-size: clamp(30px, 3.2vw, 42px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0;
}

.devlab-service-about__text {
	color: #47525c;
	font-size: 15px;
	line-height: 1.72;
	margin-top: 24px;
	max-width: 760px;
}

.devlab-service-about__text p {
	margin: 0 0 18px;
}

.devlab-service-about__text p:last-child {
	margin-bottom: 0;
}

.devlab-service-about__cards {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 38px;
}

.devlab-service-info-card,
.devlab-service-side-card,
.devlab-service-why__grid section {
	background: #fff;
	border: 1px solid #dfe6ea;
	border-radius: 8px;
	box-shadow: 0 16px 34px rgba(26, 42, 52, 0.06);
}

.devlab-service-info-card {
	min-height: 190px;
	padding: 28px;
}

.devlab-service-info-card__icon,
.devlab-service-side-card__icon,
.devlab-service-why__grid span {
	align-items: center;
	background: #d9f2fb;
	border-radius: 9px;
	color: #00769a;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	margin-bottom: 22px;
	width: 42px;
}

.devlab-service-info-card svg,
.devlab-service-side-card svg,
.devlab-service-why__grid svg {
	fill: currentColor;
	height: 22px;
	width: 22px;
}

.devlab-service-info-card h3,
.devlab-service-side-card h2,
.devlab-service-why__grid h3 {
	color: #20262c;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 14px;
}

.devlab-service-info-card p,
.devlab-service-side-card p,
.devlab-service-why__grid p {
	color: #4c5862;
	font-size: 13px;
	line-height: 1.58;
	margin: 0;
}

.devlab-service-about__aside {
	position: sticky;
	top: 32px;
}

.devlab-service-side-card {
	padding: 28px;
}

.devlab-service-side-card--metrics h2 {
	font-size: 18px;
	margin-bottom: 22px;
	text-align: center;
}

.devlab-service-side-card--metrics div {
	display: grid;
	gap: 16px;
}

.devlab-service-side-card--metrics p {
	background: #f6f8fa;
	border: 1px solid #e4eaee;
	border-radius: 8px;
	padding: 20px 16px;
	text-align: center;
}

.devlab-service-side-card--metrics strong {
	color: #00769a;
	display: block;
	font-size: 34px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.devlab-service-side-card--metrics span {
	color: #4c5862;
	display: block;
	font-size: 12px;
	line-height: 1.35;
	margin-top: 9px;
}

.devlab-service-why {
	background: #fff;
	padding: 88px 0;
}

.devlab-service-section-header {
	margin: 0 auto 46px;
	max-width: 640px;
	text-align: center;
}

.devlab-service-why__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devlab-service-why__grid section {
	padding: 30px;
}

.devlab-service-cta {
	background: #007a95;
	color: #fff;
	padding: 74px 0;
}

.devlab-service-cta__inner {
	align-items: center;
	display: grid;
	gap: 42px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.devlab-service-cta .devlab-service-eyebrow,
.devlab-service-cta h2 {
	color: #fff;
}

.devlab-service-cta p:not(.devlab-service-eyebrow) {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	line-height: 1.65;
	margin: 20px 0 0;
	max-width: 680px;
}

.devlab-service-cta__button {
	align-items: center;
	background: #fff;
	border-radius: 8px;
	color: #007a95;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: center;
	min-height: 52px;
	min-width: 180px;
	padding: 15px 24px;
	text-decoration: none;
}

.devlab-service-cta__button:hover,
.devlab-service-cta__button:focus-visible {
	background: #eaf7fb;
	color: #00657b;
}

@media (max-width: 980px) {
	.devlab-service-hero__inner,
	.devlab-service-about__layout,
	.devlab-service-cta__inner {
		grid-template-columns: 1fr;
	}

	.devlab-service-hero__overlay {
		background: linear-gradient(90deg, #f7f8fa 0%, rgba(247, 248, 250, 0.94) 58%, rgba(247, 248, 250, 0.35) 100%);
	}

	.devlab-service-hero__logo {
		justify-content: flex-start;
		min-height: 0;
		padding-bottom: 68px;
	}

	.devlab-service-about__aside {
		position: static;
	}

	.devlab-service-why__grid {
		grid-template-columns: 1fr;
	}

	.devlab-service-cta__button {
		width: fit-content;
	}
}

@media (max-width: 700px) {
	.devlab-service__container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.devlab-service-hero,
	.devlab-service-hero__inner {
		min-height: 0;
	}

	.devlab-service-hero {
		background-position: center right;
	}

	.devlab-service-hero__overlay {
		background: linear-gradient(90deg, #f7f8fa 0%, rgba(247, 248, 250, 0.96) 72%, rgba(247, 248, 250, 0.62) 100%);
	}

	.devlab-service-hero__content {
		padding: 58px 0 28px;
	}

	.devlab-service-hero h1 {
		font-size: 38px;
	}

	.devlab-service-hero__content > p:not(.devlab-service-eyebrow) {
		font-size: 15px;
	}

	.devlab-service-hero__logo {
		padding-bottom: 52px;
	}

	.devlab-service-hero__logo img {
		max-width: min(100%, 300px);
	}

	.devlab-service-about,
	.devlab-service-why,
	.devlab-service-cta {
		padding: 58px 0;
	}

	.devlab-service-about__cards {
		grid-template-columns: 1fr;
	}

	.devlab-service-info-card,
	.devlab-service-side-card,
	.devlab-service-why__grid section {
		padding: 26px;
	}

	.devlab-service-cta__button {
		width: 100%;
	}
}

.devlab-services-archive {
	background: #f5f6f8;
	color: #20262c;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	margin-left: calc(50% - 50vw);
	margin-top: 0;
	width: 100vw;
}

.devlab-services-archive *,
.devlab-services-archive *::before,
.devlab-services-archive *::after {
	box-sizing: border-box;
}

.devlab-services-archive__container {
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	padding-left: var(--devlab-container-gutter);
	padding-right: var(--devlab-container-gutter);
	width: 100%;
}

.devlab-services-archive__hero {
	padding: 56px 0 54px;
}

.devlab-services-archive__hero h1 {
	color: #20262c;
	font-size: clamp(42px, 5vw, 54px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0;
}

.devlab-services-archive__hero h1::first-line {
	color: #20262c;
}

.devlab-services-archive__hero h1 {
	max-width: 560px;
}

.devlab-services-archive__hero h1::after {
	content: "";
}

.devlab-services-archive__hero h1 {
	text-wrap: balance;
}

.devlab-services-archive__hero h1 {
	--devlab-service-title-accent: #00769a;
}

.devlab-services-archive__hero h1 {
	color: #20262c;
}

.devlab-services-archive__hero h1::selection {
	background: rgba(0, 118, 154, 0.18);
}

.devlab-services-archive__hero h1 {
	white-space: normal;
}

.devlab-services-archive__hero h1 {
	background: none;
	color: #20262c;
	display: inline-block;
}

.devlab-services-archive__hero h1 span {
	color: #00769a;
}

.devlab-services-archive__hero p {
	color: #46515b;
	font-size: 14px;
	line-height: 1.62;
	margin: 20px 0 0;
	max-width: 690px;
}

.devlab-services-archive__listing {
	padding: 0 0 92px;
}

.devlab-services-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devlab-services-card {
	border-radius: 8px;
	min-height: 418px;
	overflow: hidden;
	position: relative;
}

.devlab-services-card a {
	color: #fff;
	display: block;
	height: 100%;
	min-height: 418px;
	position: relative;
	text-decoration: none;
}

.devlab-services-card img,
.devlab-services-card__placeholder {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	transition: transform 260ms ease;
	width: 100%;
	z-index: 0;
}

.devlab-services-card__placeholder {
	background: linear-gradient(135deg, #d7e5ea 0%, #7f98a4 100%);
}

.devlab-services-card__overlay {
	background: linear-gradient(180deg, rgba(10, 20, 26, 0.1) 0%, rgba(10, 20, 26, 0.34) 42%, rgba(10, 20, 26, 0.86) 100%);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.devlab-services-card__content {
	display: flex;
	flex-direction: column;
	inset: 0;
	justify-content: flex-end;
	padding: 30px;
	position: absolute;
	z-index: 2;
}

.devlab-services-card__icon {
	color: #d8f4ff;
	display: inline-flex;
	margin-bottom: 14px;
}

.devlab-services-card__icon svg {
	fill: currentColor;
	height: 26px;
	width: 26px;
}

.devlab-services-card strong {
	color: #fff;
	display: block;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.16;
	max-width: 285px;
}

.devlab-services-card small {
	color: rgba(255, 255, 255, 0.9);
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	margin-top: 76px;
}

.devlab-services-card a:hover img,
.devlab-services-card a:focus-visible img {
	transform: scale(1.04);
}

.devlab-services-card a:hover small,
.devlab-services-card a:focus-visible small {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.devlab-services-empty {
	color: #46515b;
	font-size: 15px;
	margin: 0;
}

.devlab-services-archive .navigation.pagination {
	margin: 46px auto 0;
}

@media (max-width: 980px) {
	.devlab-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.devlab-services-archive__container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.devlab-services-archive__hero {
		padding: 42px 0 38px;
	}

	.devlab-services-archive__hero h1 {
		font-size: 38px;
	}

	.devlab-services-archive__listing {
		padding-bottom: 60px;
	}

	.devlab-services-grid {
		grid-template-columns: 1fr;
	}

	.devlab-services-card,
	.devlab-services-card a {
		min-height: 360px;
	}

	.devlab-services-card__content {
		padding: 26px;
	}

	.devlab-services-card strong {
		font-size: 20px;
	}
}

.devlab-case-single {
	background: #f6f7f9;
	color: #20262c;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	margin-left: calc(50% - 50vw);
	margin-top: 0;
	width: 100vw;
}

.devlab-case-single *,
.devlab-case-single *::before,
.devlab-case-single *::after {
	box-sizing: border-box;
}

.devlab-case__container {
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	padding-left: var(--devlab-container-gutter);
	padding-right: var(--devlab-container-gutter);
	width: 100%;
}

.devlab-case-eyebrow {
	color: #00769a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.devlab-case-hero {
	background: #f6f7f9;
	padding: 78px 0 68px;
}

.devlab-case-hero__inner {
	align-items: center;
	display: grid;
	gap: 58px;
	grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
}

.devlab-case-hero__content h1 {
	color: #20262c;
	font-size: clamp(42px, 5vw, 58px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0;
	text-wrap: balance;
}

.devlab-case-hero__content > p:not(.devlab-case-eyebrow) {
	color: #46515b;
	font-size: 15px;
	line-height: 1.62;
	margin: 24px 0 0;
	max-width: 620px;
}

.devlab-case-hero__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.devlab-case-hero__terms span {
	align-items: center;
	background: #eef1f2;
	border-radius: 999px;
	color: #263038;
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	gap: 8px;
	line-height: 1;
	padding: 9px 13px;
}

.devlab-case-hero__terms svg {
	fill: #00769a;
	height: 17px;
	width: 17px;
}

.devlab-case-hero__image {
	border-radius: 8px;
	box-shadow: 0 22px 42px rgba(20, 34, 43, 0.18);
	margin: 0;
	overflow: hidden;
}

.devlab-case-hero__image img {
	aspect-ratio: 900 / 620;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.devlab-case-metrics {
	background: #eef0f3;
	padding: 78px 0 88px;
	text-align: center;
}

.devlab-case-metrics h2 {
	color: #20262c;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0 0 46px;
}

.devlab-case-metrics__grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devlab-case-metrics__grid section {
	background: #fff;
	border: 1px solid #e2e7eb;
	border-radius: 8px;
	padding: 34px 24px;
}

.devlab-case-metrics__grid strong {
	color: #00769a;
	display: block;
	font-size: 46px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.devlab-case-metrics__grid p {
	color: #3d4851;
	font-size: 13px;
	line-height: 1.35;
	margin: 10px 0 0;
}

.devlab-case-about {
	padding: 86px 0 70px;
}

.devlab-case-about__layout {
	align-items: start;
	display: grid;
	gap: 68px;
	grid-template-columns: minmax(0, 65fr) minmax(280px, 35fr);
}

.devlab-case-text-block {
	margin-bottom: 54px;
}

.devlab-case-text-block h2,
.devlab-case-phases h2 {
	color: #20262c;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 22px;
}

.devlab-case-text-block p {
	color: #45515b;
	font-size: 14px;
	line-height: 1.75;
	margin: 0 0 18px;
}

.devlab-case-solution-items {
	display: grid;
	gap: 18px 42px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 28px;
}

.devlab-case-solution-items section {
	display: grid;
	gap: 12px;
	grid-template-columns: 22px minmax(0, 1fr);
}

.devlab-case-solution-items span {
	align-items: center;
	background: #d9f2fb;
	border-radius: 999px;
	color: #00769a;
	display: inline-flex;
	height: 20px;
	justify-content: center;
	margin-top: 2px;
	width: 20px;
}

.devlab-case-solution-items svg {
	fill: currentColor;
	height: 13px;
	width: 13px;
}

.devlab-case-solution-items h3 {
	color: #20262c;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 4px;
}

.devlab-case-solution-items p {
	font-size: 12px;
	line-height: 1.45;
	margin: 0;
}

.devlab-case-sidebar {
	display: flex;
	flex-direction: column;
	gap: 28px;
	position: sticky;
	top: 32px;
}

.devlab-case-stack,
.devlab-case-result-card {
	border-radius: 8px;
	box-shadow: 0 18px 34px rgba(18, 39, 50, 0.08);
}

.devlab-case-stack {
	background: #fff;
	border: 1px solid #e2e7eb;
	padding: 30px;
}

.devlab-case-stack h2 {
	color: #00769a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.devlab-case-stack div {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.devlab-case-stack span {
	background: #eef1f2;
	border-radius: 999px;
	color: #20262c;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	padding: 8px 11px;
}

.devlab-case-result-card {
	background: #007a95;
	color: #fff;
	padding: 34px 30px;
}

.devlab-case-result-card h2 {
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 20px;
}

.devlab-case-result-card > p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 24px;
}

.devlab-case-result-card__lines {
	display: grid;
	gap: 14px;
	margin-bottom: 28px;
}

.devlab-case-result-card__lines p {
	align-items: flex-start;
	color: #fff;
	display: grid;
	font-size: 13px;
	font-weight: 700;
	gap: 10px;
	grid-template-columns: 18px minmax(0, 1fr);
	line-height: 1.35;
	margin: 0;
}

.devlab-case-result-card__lines span {
	color: #d8f4ff;
	display: inline-flex;
}

.devlab-case-result-card__lines svg {
	fill: currentColor;
	height: 16px;
	width: 16px;
}

.devlab-case-result-card a {
	align-items: center;
	background: #fff;
	border-radius: 7px;
	color: #007a95;
	display: flex;
	font-size: 13px;
	font-weight: 800;
	justify-content: center;
	min-height: 48px;
	padding: 13px 16px;
	text-decoration: none;
	width: 100%;
}

.devlab-case-phases {
	margin-top: 24px;
}

.devlab-case-phases ol {
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
	position: relative;
}

.devlab-case-phases ol::before {
	background: #d7e0e5;
	bottom: 24px;
	content: "";
	left: 16px;
	position: absolute;
	top: 24px;
	width: 1px;
}

.devlab-case-phases li {
	display: grid;
	gap: 28px;
	grid-template-columns: 32px minmax(0, 1fr);
	margin-bottom: 28px;
	position: relative;
}

.devlab-case-phases li > span {
	align-items: center;
	background: #007a95;
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	height: 32px;
	justify-content: center;
	position: relative;
	width: 32px;
	z-index: 1;
}

.devlab-case-phases li > div {
	background: #fff;
	border: 1px solid #e2e7eb;
	border-radius: 8px;
	padding: 24px 28px;
}

.devlab-case-phases h3 {
	color: #20262c;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 8px;
}

.devlab-case-phases p {
	color: #46515b;
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
}

.devlab-case-testimonial {
	padding: 72px 0 92px;
	text-align: center;
}

.devlab-case-testimonial figure {
	margin: 0 auto;
	max-width: 920px;
}

.devlab-case-testimonial figure > span {
	color: #007a95;
	display: block;
	font-size: 72px;
	font-weight: 800;
	line-height: 0.8;
	margin-bottom: 16px;
}

.devlab-case-testimonial blockquote {
	color: #20262c;
	font-size: clamp(28px, 3vw, 36px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.22;
	margin: 0;
}

.devlab-case-testimonial figcaption {
	margin-top: 30px;
}

.devlab-case-testimonial strong,
.devlab-case-testimonial small {
	color: #20262c;
	display: block;
	font-size: 13px;
	line-height: 1.35;
}

.devlab-case-testimonial small {
	color: #53606a;
}

@media (max-width: 980px) {
	.devlab-case-hero__inner,
	.devlab-case-about__layout {
		grid-template-columns: 1fr;
	}

	.devlab-case-sidebar {
		position: static;
	}

	.devlab-case-metrics__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.devlab-case__container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.devlab-case-hero {
		padding: 46px 0 56px;
	}

	.devlab-case-hero__inner {
		gap: 34px;
	}

	.devlab-case-hero__content h1 {
		font-size: 38px;
	}

	.devlab-case-metrics,
	.devlab-case-about,
	.devlab-case-testimonial {
		padding: 56px 0;
	}

	.devlab-case-solution-items {
		grid-template-columns: 1fr;
	}

	.devlab-case-phases li {
		gap: 14px;
		grid-template-columns: 32px minmax(0, 1fr);
	}

	.devlab-case-phases li > div {
		padding: 22px;
	}
}

.devlab-cases-archive {
	background: #f4f5f7;
	color: #1d252c;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	margin-left: calc(50% - 50vw);
	margin-top: 0;
	width: 100vw;
}

.devlab-cases-archive *,
.devlab-cases-archive *::before,
.devlab-cases-archive *::after {
	box-sizing: border-box;
}

.devlab-cases-archive__container {
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	padding-left: var(--devlab-container-gutter);
	padding-right: var(--devlab-container-gutter);
	width: 100%;
}

.devlab-cases-archive__hero {
	align-items: center;
	background:
		linear-gradient(90deg, rgba(246, 249, 251, 0.96) 0%, rgba(246, 249, 251, 0.86) 31%, rgba(246, 249, 251, 0.3) 58%, rgba(246, 249, 251, 0.08) 100%),
		url("assets/images/sobre-nos-hero.png") center right / cover no-repeat;
	display: flex;
	min-height: 446px;
}

.devlab-cases-archive__hero-content {
	max-width: 690px;
	padding: 52px 0;
}

.devlab-cases-archive__hero h1 {
	color: #101820;
	font-size: clamp(36px, 4.1vw, 50px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.02;
	margin: 0;
	max-width: 640px;
	text-wrap: balance;
}

.devlab-cases-archive__hero h1 span {
	color: #00769a;
}

.devlab-cases-archive__hero p {
	color: #172027;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
	margin: 22px 0 0;
	max-width: 650px;
}

.devlab-cases-archive__listing {
	padding: 70px 0 86px;
}

.devlab-cases-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.devlab-case-card {
	background: #fff;
	border: 1px solid #dde3e7;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(17, 32, 42, 0.04);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
}

.devlab-case-card__image-link {
	background: #1b303c;
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.devlab-case-card__image-link img,
.devlab-case-card__placeholder {
	aspect-ratio: 570 / 356;
	display: block;
	height: auto;
	object-fit: cover;
	transition: transform 260ms ease;
	width: 100%;
}

.devlab-case-card__placeholder {
	background:
		linear-gradient(135deg, rgba(5, 34, 48, 0.2), rgba(5, 34, 48, 0.72)),
		repeating-linear-gradient(90deg, rgba(180, 234, 255, 0.16) 0 1px, transparent 1px 68px),
		repeating-linear-gradient(0deg, rgba(180, 234, 255, 0.1) 0 1px, transparent 1px 58px),
		linear-gradient(135deg, #203746 0%, #081a24 100%);
}

.devlab-case-card:hover .devlab-case-card__image-link img,
.devlab-case-card:focus-within .devlab-case-card__image-link img {
	transform: scale(1.035);
}

.devlab-case-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 28px 31px 26px;
}

.devlab-case-card__meta {
	align-items: center;
	color: #77818a;
	display: flex;
	flex-wrap: wrap;
	font-size: 11px;
	font-weight: 700;
	gap: 9px;
	line-height: 1;
	margin-bottom: 18px;
}

.devlab-case-card__category {
	background: #e6f4f8;
	border-radius: 999px;
	color: #00769a;
	padding: 7px 12px;
}

.devlab-case-card h2 {
	color: #1d252c;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.18;
	margin: 0;
	text-wrap: balance;
}

.devlab-case-card h2 a {
	color: inherit;
	text-decoration: none;
}

.devlab-case-card h2 a:hover,
.devlab-case-card h2 a:focus-visible {
	color: #00769a;
}

.devlab-case-card p {
	color: #535f68;
	font-size: 14px;
	line-height: 1.58;
	margin: 20px 0 0;
}

.devlab-case-card__footer {
	border-top: 1px solid #edf0f2;
	margin-top: auto;
	padding-top: 24px;
}

.devlab-case-card__footer a {
	color: #00769a;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	gap: 6px;
	line-height: 1;
	text-decoration: none;
}

.devlab-case-card__footer a:hover,
.devlab-case-card__footer a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.devlab-cases-empty {
	color: #46515b;
	font-size: 15px;
	margin: 0;
}

.devlab-cases-archive .navigation.pagination {
	margin: 46px auto 0;
}

.devlab-cases-cta {
	background: #2188a2;
	color: #fff;
	padding: 74px 0 82px;
	text-align: center;
}

.devlab-cases-cta h2 {
	color: #fff;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 0 auto;
	max-width: 960px;
	text-wrap: balance;
}

.devlab-cases-cta p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 15px;
	line-height: 1.55;
	margin: 24px auto 0;
	max-width: 690px;
}

.devlab-cases-cta__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 42px;
}

.devlab-cases-cta__button {
	align-items: center;
	border: 2px solid #fff;
	border-radius: 7px;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-height: 48px;
	min-width: 212px;
	padding: 15px 25px;
	text-decoration: none;
}

.devlab-cases-cta__button--primary {
	background: #fff;
	color: #00769a;
}

.devlab-cases-cta__button--secondary {
	background: transparent;
	color: #fff;
}

.devlab-cases-cta__button:hover,
.devlab-cases-cta__button:focus-visible {
	box-shadow: 0 10px 22px rgba(5, 46, 62, 0.16);
	transform: translateY(-1px);
}

@media (max-width: 900px) {
	.devlab-cases-archive__hero {
		background:
			linear-gradient(90deg, rgba(246, 249, 251, 0.98) 0%, rgba(246, 249, 251, 0.92) 52%, rgba(246, 249, 251, 0.58) 100%),
			url("assets/images/sobre-nos-hero.png") center right / cover no-repeat;
		min-height: 390px;
	}

	.devlab-case-card__body {
		padding: 26px 24px 24px;
	}

	.devlab-case-card h2 {
		font-size: 22px;
	}
}

@media (max-width: 700px) {
	.devlab-cases-archive__container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.devlab-cases-archive__hero {
		background:
			linear-gradient(180deg, rgba(246, 249, 251, 0.96) 0%, rgba(246, 249, 251, 0.94) 100%),
			url("assets/images/sobre-nos-hero.png") center right / cover no-repeat;
		min-height: 0;
	}

	.devlab-cases-archive__hero-content {
		padding: 58px 0 62px;
	}

	.devlab-cases-archive__hero h1 {
		font-size: 36px;
	}

	.devlab-cases-archive__hero p {
		font-size: 14px;
	}

	.devlab-cases-archive__listing {
		padding: 48px 0 60px;
	}

	.devlab-cases-grid {
		grid-template-columns: 1fr;
	}

	.devlab-case-card__body {
		padding: 24px 22px 24px;
	}

	.devlab-case-card h2 {
		font-size: 21px;
	}

	.devlab-cases-cta {
		padding: 56px 0 62px;
	}

	.devlab-cases-cta p {
		font-size: 14px;
	}

	.devlab-cases-cta__actions {
		align-items: stretch;
		flex-direction: column;
		margin-top: 32px;
	}

	.devlab-cases-cta__button {
		width: 100%;
	}
}

/* Legal texts page (privacy policy & terms of use, switched via internal tab). */
.devlab-legal {
	padding: 56px 0 80px;
}

.devlab-legal__container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 860px;
	width: 100%;
}

.devlab-legal__header {
	margin-bottom: 30px;
	text-align: center;
}

.devlab-legal__header h1 {
	font-size: 36px;
	font-weight: 800;
	margin: 0 0 10px;
}

.devlab-legal__header p {
	color: #5f6972;
	font-size: 15px;
	margin: 0;
}

.devlab-legal-tabs {
	border-bottom: 1px solid #e2e7eb;
	display: flex;
	gap: 6px;
	justify-content: center;
	margin-bottom: 36px;
}

.devlab-legal-tabs__tab {
	background: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	color: #5f6972;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	padding: 12px 18px;
	transition: color 180ms ease, border-color 180ms ease;
}

.devlab-legal-tabs__tab:hover,
.devlab-legal-tabs__tab:focus-visible {
	color: #1f252b;
}

.devlab-legal-tabs__tab.is-active {
	border-bottom-color: #007a9c;
	color: #007a9c;
}

.devlab-legal-panel {
	display: none;
}

.devlab-legal-panel.is-active {
	display: block;
}

.devlab-legal-panel__updated {
	color: #5f6972;
	font-size: 13px;
	font-style: italic;
	margin: 0 0 26px;
}

.devlab-legal-panel__content {
	color: #333b42;
	font-size: 15px;
	line-height: 1.7;
}

.devlab-legal-panel__content h2 {
	color: #1f252b;
	font-size: 20px;
	font-weight: 700;
	margin: 34px 0 12px;
}

.devlab-legal-panel__content h2:first-child {
	margin-top: 0;
}

.devlab-legal-panel__content h3 {
	color: #1f252b;
	font-size: 17px;
	font-weight: 700;
	margin: 26px 0 10px;
}

.devlab-legal-panel__content p {
	margin: 0 0 16px;
}

.devlab-legal-panel__content ul,
.devlab-legal-panel__content ol {
	margin: 0 0 16px;
	padding-left: 22px;
}

.devlab-legal-panel__content li {
	margin-bottom: 8px;
}

.devlab-legal-panel__content a {
	color: #007a9c;
}

@media (max-width: 700px) {
	.devlab-legal {
		padding: 40px 0 56px;
	}

	.devlab-legal__header h1 {
		font-size: 28px;
	}

	.devlab-legal-tabs {
		gap: 0;
	}

	.devlab-legal-tabs__tab {
		flex: 1 1 0;
		font-size: 13px;
		padding: 12px 8px;
		text-align: center;
	}
}

/* Contact page hero. */
article.devlab-contact {
	margin-bottom: 0 !important;
}
.devlab-contact__container {
	margin: 0 auto;
	max-width: var(--devlab-container-width);
	padding-left: var(--devlab-container-gutter);
	padding-right: var(--devlab-container-gutter);
	width: 100%;
}

.devlab-contact-hero {
	background: linear-gradient(120deg, #eef1f4 0%, #f5f7f8 45%, #ffffff 100%);
	overflow: hidden;
	padding: 76px 0;
}

.devlab-contact-hero__inner {
	align-items: center;
	display: grid;
	gap: 64px;
	grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
}

.devlab-contact-hero__content {
	max-width: 540px;
}

.devlab-contact-hero__badge {
	background: #007a9c;
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1;
	margin: 0 0 22px;
	padding: 10px 16px;
	text-transform: uppercase;
}

.devlab-contact-hero h1 {
	color: #171d22;
	font-size: clamp(32px, 4.2vw, 48px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0;
	text-wrap: balance;
}

.devlab-contact-hero h1 em {
	color: #0a7fa3;
	font-style: italic;
}

.devlab-contact-hero__text {
	color: #55606a;
	font-size: 15px;
	line-height: 1.6;
	margin: 22px 0 0;
	max-width: 460px;
}

.devlab-contact-hero__info {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.devlab-contact-hero__info-item {
	align-items: center;
	background: #fff;
	border: 1px solid #e5e9ec;
	border-radius: 999px;
	box-shadow: 0 2px 6px rgba(20, 30, 40, 0.05);
	color: #2a323a;
	display: inline-flex;
	font-size: 14px;
	font-weight: 500;
	gap: 10px;
	padding: 14px 22px;
	text-decoration: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.devlab-contact-hero__info-item:hover,
.devlab-contact-hero__info-item:focus-visible {
	border-color: rgba(0, 122, 156, 0.35);
	box-shadow: 0 4px 12px rgba(20, 30, 40, 0.08);
	color: #007a9c;
}

.devlab-contact-hero__info-item svg {
	display: block;
	fill: currentColor;
	flex: 0 0 auto;
	height: 18px;
	width: 18px;
}

.devlab-contact-hero__media {
	background: #fff;
	border-radius: 26px;
	box-shadow: 0 20px 44px rgba(18, 39, 50, 0.14);
	padding: 10px;
	position: relative;
}

.devlab-contact-hero__media img,
.devlab-contact-hero__media-placeholder {
	aspect-ratio: 4 / 3;
	border-radius: 18px;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.devlab-contact-hero__media-placeholder {
	background: linear-gradient(135deg, #d8e4e8 0%, #f4d6a4 100%);
}

.devlab-contact-hero__stat {
	align-items: center;
	background: #fff;
	border-radius: 16px;
	bottom: -28px;
	box-shadow: 0 14px 30px rgba(18, 39, 50, 0.16);
	display: inline-flex;
	gap: 12px;
	left: 24px;
	padding: 14px 20px;
	position: absolute;
}

.devlab-contact-hero__stat span:first-child {
	align-items: center;
	background: rgba(0, 122, 156, 0.12);
	border-radius: 999px;
	display: inline-flex;
	flex: 0 0 auto;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.devlab-contact-hero__stat svg {
	fill: #007a9c;
	height: 20px;
	width: 20px;
}

.devlab-contact-hero__stat-text strong {
	color: #171d22;
	display: block;
	font-size: 19px;
	font-weight: 800;
	line-height: 1.1;
}

.devlab-contact-hero__stat-text small {
	color: #5f6972;
	display: block;
	font-size: 12px;
	margin-top: 3px;
}

@media (max-width: 980px) {
	.devlab-contact-hero__inner {
		gap: 48px;
		grid-template-columns: 1fr;
	}

	.devlab-contact-hero__content {
		max-width: none;
	}

	.devlab-contact-hero__media {
		max-width: 480px;
	}
}

@media (max-width: 700px) {
	.devlab-contact-hero {
		padding: 52px 0 64px;
	}

	.devlab-contact-hero__inner {
		gap: 40px;
	}

	.devlab-contact-hero__text {
		max-width: none;
	}

	.devlab-contact-hero__info {
		gap: 10px;
	}

	.devlab-contact-hero__info-item {
		font-size: 13px;
		padding: 12px 18px;
	}

	.devlab-contact-hero__media {
		margin: 0 auto;
	}

	.devlab-contact-hero__stat {
		bottom: -20px;
		gap: 10px;
		left: 16px;
		padding: 10px 14px;
	}

	.devlab-contact-hero__stat span:first-child {
		height: 36px;
		width: 36px;
	}

	.devlab-contact-hero__stat svg {
		height: 16px;
		width: 16px;
	}

	.devlab-contact-hero__stat-text strong {
		font-size: 16px;
	}

	.devlab-contact-hero__stat-text small {
		font-size: 11px;
	}
}

/* Contact page: feature highlights below the hero. */
.devlab-contact-features {
	background: #f7f8fa;
	padding: 72px 0;
}

.devlab-contact-features__grid {
	display: grid;
	gap: 48px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.devlab-contact-features__icon {
	align-items: center;
	background: rgba(10, 89, 114, 0.1);
	border-radius: 999px;
	color: #0a5972;
	display: inline-flex;
	height: 56px;
	justify-content: center;
	margin-bottom: 24px;
	width: 56px;
}

.devlab-contact-features__icon svg {
	display: block;
	height: 24px;
	width: 24px;
}

.devlab-contact-features__item h2 {
	color: #171d22;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0;
}

.devlab-contact-features__item p {
	color: #5f6972;
	font-size: 14px;
	line-height: 1.6;
	margin: 12px 0 0;
	max-width: 320px;
}

@media (max-width: 980px) {
	.devlab-contact-features__grid {
		gap: 40px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.devlab-contact-features {
		padding: 52px 0;
	}

	.devlab-contact-features__grid {
		gap: 36px;
		grid-template-columns: 1fr;
	}

	.devlab-contact-features__item p {
		max-width: none;
	}
}

/* Contact page: message form + office info. */
.devlab-contact-form-section {
	background: #fff;
	padding: 84px 0 96px;
}

.devlab-contact-form-section__inner {
	align-items: start;
	display: grid;
	gap: 56px;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.devlab-contact-form-card h2,
.devlab-contact-office-card h2 {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
}

.devlab-contact-form-card h2 {
	color: #171d22;
}

.devlab-contact-form-card > p {
	color: #5f6972;
	font-size: 14px;
	margin: 10px 0 0;
}

.devlab-contact-form-card__form {
	margin-top: 28px;
}

.devlab-contact-form-card__placeholder {
	background: #f7f9fa;
	border: 1px dashed #d2d8dd;
	border-radius: 12px;
	color: #5f6972;
	font-size: 13px;
	margin: 0;
	padding: 18px 20px;
}

.devlab-contact-form-card__form .devlab-contact-form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0 0 22px;
}

.devlab-contact-form-card__form .devlab-contact-form-row > * {
	flex: 1 1 220px;
	margin: 0 !important;
}

.devlab-contact-form-card__form .devlab-contact-form-row > label {
	flex-basis: 100%;
}

.devlab-contact-form-card__form p,
.devlab-contact-form-card__form .wpcf7-form-control-wrap {
	display: block;
	margin: 0 0 22px;
}

.devlab-contact-form-card__form label {
	color: #0a5972;
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 10px;
}

.devlab-contact-form-card__form input[type="text"],
.devlab-contact-form-card__form input[type="email"],
.devlab-contact-form-card__form input[type="tel"],
.devlab-contact-form-card__form select,
.devlab-contact-form-card__form textarea {
	background: #fff;
	border: 1px solid #e2e6e9;
	border-radius: 14px;
	box-sizing: border-box;
	color: #1f252b;
	font-family: inherit;
	font-size: 15px;
	padding: 16px 18px;
	transition: border-color 180ms ease, box-shadow 180ms ease;
	width: 100%;
}

.devlab-contact-form-card__form select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f6972' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-position: right 18px center;
	background-repeat: no-repeat;
	background-size: 20px;
	color: #1f252b;
	cursor: pointer;
	padding-right: 46px;
}

.devlab-contact-form-card__form textarea {
	min-height: 130px;
	resize: vertical;
}

.devlab-contact-form-card__form input[type="text"]:focus,
.devlab-contact-form-card__form input[type="email"]:focus,
.devlab-contact-form-card__form input[type="tel"]:focus,
.devlab-contact-form-card__form select:focus,
.devlab-contact-form-card__form textarea:focus {
	border-color: #0a5972;
	box-shadow: 0 0 0 3px rgba(10, 89, 114, 0.1);
	outline: none;
}

.devlab-contact-form-card__form input[type="submit"] {
	background: #0a5972 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='13 6 19 12 13 18'/%3E%3C/svg%3E") no-repeat;
	background-position: right 26px center;
	background-size: 20px;
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	padding: 18px 62px 18px 34px;
	transition: background-color 180ms ease;
}

.devlab-contact-form-card__form input[type="submit"]:hover,
.devlab-contact-form-card__form input[type="submit"]:focus-visible {
	background-color: #084a5f;
}

.devlab-contact-form-card__form .wpcf7-not-valid-tip {
	color: #c0392b;
	font-size: 12px;
	margin-top: 6px;
}

.devlab-contact-form-card__form .wpcf7-response-output {
	border-radius: 10px;
	font-size: 13px;
	margin: 20px 0 0;
	padding: 12px 16px;
}

.devlab-contact-form-card__form form.sent .wpcf7-response-output {
	background: #e9f7ee;
	border-color: #bfe6cd;
	color: #1e7a45;
}

.devlab-contact-form-card__form form.invalid .wpcf7-response-output,
.devlab-contact-form-card__form form.unaccepted .wpcf7-response-output {
	background: #fdecec;
	border-color: #f3c2c2;
	color: #c0392b;
}

.devlab-contact-office-card {
	background: #0a5972;
	border-radius: 24px;
	box-shadow: 0 20px 44px rgba(10, 40, 54, 0.22);
	box-sizing: border-box;
	padding: 40px;
}

.devlab-contact-office-card h2 {
	color: #fff;
	margin-bottom: 30px;
}

.devlab-contact-office-card__item {
	align-items: flex-start;
	display: flex;
	gap: 16px;
}

.devlab-contact-office-card__item + .devlab-contact-office-card__item {
	margin-top: 24px;
}

.devlab-contact-office-card__item span {
	align-items: center;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	display: inline-flex;
	flex: 0 0 auto;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.devlab-contact-office-card__item svg {
	fill: #fff;
	height: 20px;
	width: 20px;
}

.devlab-contact-office-card__label {
	color: rgba(255, 255, 255, 0.62);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.devlab-contact-office-card__value {
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}

.devlab-contact-office-card__divider {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	margin: 30px 0 24px;
}

.devlab-contact-office-card__socials {
	display: flex;
	gap: 10px;
}

.devlab-contact-office-card__social {
	align-items: center;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 10px;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	transition: background-color 180ms ease;
	width: 42px;
}

.devlab-contact-office-card__social:hover,
.devlab-contact-office-card__social:focus-visible {
	background: rgba(255, 255, 255, 0.28);
}

.devlab-contact-office-card__social svg {
	fill: #fff;
	height: 18px;
	width: 18px;
}

@media (max-width: 980px) {
	.devlab-contact-form-section__inner {
		gap: 40px;
		grid-template-columns: 1fr;
	}

	.devlab-contact-office-card {
		max-width: 480px;
	}
}

@media (max-width: 700px) {
	.devlab-contact-form-section {
		padding: 56px 0 64px;
	}

	.devlab-contact-form-card h2,
	.devlab-contact-office-card h2 {
		font-size: 24px;
	}

	.devlab-contact-office-card {
		padding: 30px 26px;
	}
}