/* Tradelytic — global layer: tokens, base, buttons, header, footer. */

/* --- Tokens (from globals/_tokens.scss) --- */
.tl-2026 {
	--tl-bg: #070d1a;
	--tl-bg-elev: #0a1424;
	--tl-panel-1: rgba(19, 36, 62, 0.96);
	--tl-panel-2: rgba(14, 27, 48, 0.98);
	--tl-surface-02: rgba(255, 255, 255, 0.02);
	--tl-surface-04: rgba(255, 255, 255, 0.04);
	--tl-surface-05: rgba(255, 255, 255, 0.05);

	--tl-border: rgba(255, 255, 255, 0.08);
	--tl-border-strong: rgba(255, 255, 255, 0.13);

	--tl-text: #ffffff;
	--tl-text-1: #c5d3e5;
	--tl-text-2: #b6c5da;
	--tl-text-muted: #9db0c8;
	--tl-text-dim: #7e8da6;

	--tl-accent: #2c9bf0;
	--tl-accent-cyan: #5fe3ff;
	--tl-accent-purple: #8b7bff;
	--tl-success: #1fc77e;
	--tl-warning: #f7b83e;
	--tl-danger: #f8675a;

	--tl-grad-text: linear-gradient(
		117deg,
		#5fe3ff 0%,
		#2c9bf0 50%,
		#8b7bff 100%
	);
	--tl-grad-cta: linear-gradient(135deg, #f8a23e 0%, #f7752f 100%);
	--tl-shadow-cta: 0 8px 22px -8px rgba(247, 140, 47, 0.6);
	--tl-shadow-panel:
		0 -10px 60px -20px rgba(44, 155, 240, 0.4),
		0 40px 80px -30px rgba(0, 0, 0, 0.7);

	--tl-font:
		"Wix Madefor Display", system-ui, -apple-system, "Segoe UI", sans-serif;
	--tl-fw-medium: 500;
	--tl-fw-semibold: 600;
	--tl-fw-bold: 700;
	--tl-fw-extrabold: 800;

	--tl-fs-display: 64px;
	--tl-fs-h1: 48px;
	--tl-fs-h2: 36px;
	--tl-fs-h3: 24px;
	--tl-fs-stat: 32px;
	--tl-fs-lead: 20px;
	--tl-fs-body: 16px;
	--tl-fs-sm: 13px;
	--tl-fs-xs: 12px;
	--tl-fs-eyebrow: 11px;

	--tl-radius-pill: 40px;
	--tl-radius-chip: 30px;
	--tl-radius-lg: 26px;
	--tl-radius-md: 16px;
	--tl-radius-sm: 11px;
	--tl-radius-xs: 7px;

	--tl-container: 1132px;
	--tl-container-narrow: 780px;
	--tl-gutter: 24px;
	--tl-section-py: 100px;

	/* Header chrome. */
	--tl-header-bg: rgba(7, 13, 26, 0.7);
	--tl-header-bg-scrolled: rgba(7, 13, 26, 0.94);
	--tl-header-h: 52px;
	--tl-header-z: 1000;
}

/* Taller bar on desktop (matches the header layout breakpoint). */
@media (min-width: 1024px) {
	.tl-2026 {
		--tl-header-h: 72px;
	}
}

/* --- Base (from globals/_base.scss) --- */
/* Smooth anchor scrolling (provided by the Kadence parent in the old theme;
   tradelytic is standalone, so it lives here). Section targets carry
   scroll-margin-top so they clear the fixed header. */
html {
	scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

.tl-container {
	box-sizing: content-box;
	max-width: var(--tl-container);
	margin-inline: auto;
	padding-inline: var(--tl-gutter);
}
.tl-container--narrow {
	max-width: var(--tl-container-narrow);
}

/* --- Buttons (from globals/_buttons.scss) --- */
.tl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 18px 32px;
	border: 0;
	border-radius: var(--tl-radius-sm);
	font-family: var(--tl-font);
	font-weight: var(--tl-fw-bold);
	font-size: var(--tl-fs-body);
	line-height: 1;
	color: var(--tl-text);
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}
.tl-btn:hover,
.tl-btn:focus-visible {
	color: var(--tl-text);
}
.tl-btn--primary {
	background: var(--tl-grad-cta);
	box-shadow:
		var(--tl-shadow-cta),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.tl-btn--primary:hover,
.tl-btn--primary:focus-visible {
	transform: translateY(-1px);
	box-shadow:
		0 12px 26px -8px rgba(247, 140, 47, 0.7),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.tl-btn--ghost {
	background: var(--tl-surface-05);
	border: 1px solid var(--tl-border-strong);
}
.tl-btn--ghost:hover,
.tl-btn--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.08);
}
.tl-btn--light {
	background: #fff;
	border: 1px solid var(--br-border, #e2e9f4);
	color: var(--br-muted, #566580);
}
.tl-btn--light:hover,
.tl-btn--light:focus-visible {
	border-color: var(--br-border-hover, #cfdaec);
	color: var(--br-ink, #0a1424);
}
.tl-btn--sm {
	padding: 16px 24px;
	font-size: 15px;
}
.tl-btn__arrow {
	font-size: 1.05em;
	line-height: 1;
}

/* --- Sticky footer: keep the footer pinned to the bottom on short pages --- */
.wp-site-blocks {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
}
.wp-site-blocks > main {
	flex: 1 0 auto;
}

/* --- Header (from globals/_header.scss) --- */
.tl-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--tl-header-z);
	background: var(--tl-header-bg);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--tl-border);
	font-family: var(--tl-font);
	transition:
		background 0.25s ease,
		border-color 0.25s ease;
}
.tl-header *,
.tl-header *::before,
.tl-header *::after {
	box-sizing: border-box;
}
.tl-header.is-scrolled {
	background: var(--tl-header-bg-scrolled);
}
.tl-header__inner {
	box-sizing: content-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: var(--tl-container);
	min-height: var(--tl-header-h);
	margin-inline: auto;
	padding-inline: 10px;
}
.tl-header__logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}
.tl-header__logo img {
	display: block;
	width: auto;
	height: 30px;
}
.tl-header__nav {
	display: none;
}
.tl-header__menu {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.tl-header__link {
	color: var(--tl-text-muted);
	font-size: 14px;
	font-weight: var(--tl-fw-medium);
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	transition: color 0.2s ease;
}
.tl-header__link:hover,
.tl-header__link:focus-visible {
	color: var(--tl-text);
}
.tl-header__link.is-active {
	color: var(--tl-accent);
}
.tl-header__actions {
	display: none;
	align-items: center;
	gap: 15px;
	flex-shrink: 0;
}
.tl-header__login {
	color: var(--tl-text);
	font-size: 14px;
	font-weight: var(--tl-fw-semibold);
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	transition: opacity 0.2s ease;
}
.tl-header__login:hover,
.tl-header__login:focus-visible {
	color: var(--tl-text);
	opacity: 0.8;
}
/* Login/logout label + CTA are driven by the `tl-logged-in` class on <html>
   (set by an early inline head script → no flash of the wrong state). */
.tl-header__login-label--out {
	display: none;
}
.tl-logged-in .tl-header__login-label--in {
	display: none;
}
.tl-logged-in .tl-header__login-label--out {
	display: inline;
}
.tl-logged-in .tl-header__cta {
	display: none;
}

.tl-auth-pending .tl-header__login {
	position: relative;
	min-width: 3em;
	pointer-events: none;
}
.tl-auth-pending .tl-header__login-label {
	visibility: hidden;
}
.tl-auth-pending .tl-header__login::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	margin: -7px 0 0 -7px;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: tl-auth-spin 0.6s linear infinite;
}
@keyframes tl-auth-spin {
	to {
		transform: rotate(360deg);
	}
}
.tl-header__badge {
	display: none;
	align-items: center;
	gap: 6px;
	font-family: var(--tl-font);
	line-height: 1;
}
.tl-header__stars {
	display: block;
	width: 60px;
	height: 11.51px;
	color: #f7912b;
	flex-shrink: 0;
}
.tl-header__rating {
	color: var(--tl-text);
	font-size: 12.5px;
	font-weight: var(--tl-fw-semibold);
}
.tl-header__badge-text {
	color: var(--tl-text-muted);
	font-size: 12.5px;
	font-weight: var(--tl-fw-medium);
}
.tl-header__badge-text::before {
	content: "·";
	margin-right: 5px;
	color: var(--tl-text-dim);
}
.tl-header__burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
	margin: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}
.tl-header__burger span {
	display: block;
	width: 24px;
	height: 2px;
	margin-inline: auto;
	border-radius: 2px;
	background: var(--tl-text);
	transition:
		transform 0.25s ease,
		opacity 0.2s ease;
}
.tl-header.is-menu-open .tl-header__burger span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.tl-header.is-menu-open .tl-header__burger span:nth-child(2) {
	opacity: 0;
	/* Collapse, don't just fade: at 24px it's wider than the X arms, so in
     WebKit (Safari/iOS) its rounded end-caps peek out as dots on both sides. */
	transform: scaleX(0);
}
.tl-header.is-menu-open .tl-header__burger span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}
.tl-header__mobile {
	position: fixed;
	top: var(--tl-header-h);
	left: 0;
	right: 0;
	height: calc(100vh - var(--tl-header-h));
	height: calc(100dvh - var(--tl-header-h));
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	border-top: 1px solid var(--tl-border);
	background: var(--tl-header-bg-scrolled);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 12px 16px calc(24px + env(safe-area-inset-bottom));
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition:
		opacity 0.25s ease,
		transform 0.25s ease,
		visibility 0s linear 0.25s;
}
.tl-header__mobile[hidden] {
	display: none;
}
.tl-header.is-menu-open .tl-header__mobile {
	opacity: 1;
	visibility: visible;
	transform: none;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}
.tl-header__mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.tl-header__mobile-menu a {
	display: block;
	padding: 14px 4px;
	color: var(--tl-text-1);
	font-size: 16px;
	font-weight: var(--tl-fw-medium);
	text-decoration: none;
	border-bottom: 1px solid var(--tl-border);
}
.tl-header__mobile-menu a[aria-current="page"] {
	color: var(--tl-accent);
}
.tl-header__mobile-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: auto;
	padding-top: 20px;
}
.tl-header__mobile-actions .tl-header__login {
	padding: 14px;
	border: 1px solid var(--tl-border-strong);
	border-radius: var(--tl-radius-sm);
	text-align: center;
}
.tl-header__mobile-actions .tl-btn {
	width: 100%;
}
.tl-header--bare .tl-header__actions {
	display: flex;
}
.tl-header--bare .tl-header__actions .tl-btn {
	padding: 13px 18px;
	font-size: 14px;
}

body.tl-no-scroll {
	overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
	.tl-header__mobile {
		transition: visibility 0s;
		transform: none;
	}
}

@media (min-width: 1024px) {
	.tl-header__nav,
	.tl-header__actions {
		display: flex;
	}
	.tl-header__badge {
		display: flex;
	}
	.tl-header--bare .tl-header__actions .tl-btn {
		padding: 16px 24px;
		font-size: 15px;
	}
	.tl-header__burger,
	.tl-header__mobile {
		display: none;
	}
}

/* --- Footer (2026 redesign) --- */
.tl-footer {
	background: var(--tl-bg-elev);
	border-top: 1px solid var(--tl-border);
	font-family: var(--tl-font);
	color: var(--tl-text-2);
}
.tl-footer *,
.tl-footer *::before,
.tl-footer *::after {
	box-sizing: border-box;
}
.tl-footer__inner {
	box-sizing: content-box;
	display: flex;
	flex-direction: column;
	gap: 50px;
	max-width: var(--tl-container);
	margin-inline: auto;
	padding: 50px 18px 30px;
}

.tl-footer__cols {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 42px;
}
.tl-footer__left,
.tl-footer__right {
	display: contents;
}
.tl-footer__brand {
	order: 1;
}
.tl-footer__nav {
	order: 2;
}
.tl-footer__legal {
	order: 3;
}
.tl-footer__contact {
	order: 4;
	margin-top: 8px;
}

.tl-footer__brand {
	display: inline-flex;
	align-self: flex-start;
	text-decoration: none;
}
.tl-footer__logo {
	display: block;
	width: auto;
	height: 30px;
}

.tl-footer__legal {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}
.tl-footer__legal-lead {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.tl-footer__legal p {
	margin: 0;
	color: var(--tl-text-2);
	font-size: 12px;
	line-height: 1.3;
	text-align: justify;
}
.tl-footer__legal-title {
	font-weight: var(--tl-fw-bold);
	text-align: left;
}

.tl-footer__nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}
.tl-footer__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 23px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.tl-footer__links li {
	display: flex;
	align-items: center;
	gap: 23px;
}
.tl-footer__links li + li::before {
	content: "";
	width: 1px;
	height: 21px;
	background: var(--tl-border-strong);
}
.tl-footer__links--secondary li + li::before {
	height: 18px;
}
.tl-footer__links a {
	color: var(--tl-text-2);
	font-size: 14px;
	font-weight: var(--tl-fw-medium);
	white-space: nowrap;
	text-decoration: none;
	transition: color 0.2s ease;
}
.tl-footer__links a:hover,
.tl-footer__links a:focus-visible {
	color: var(--tl-accent);
}

.tl-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 50px;
}

.tl-footer__social {
	display: inline-flex;
	align-items: center;
	gap: 17px;
	padding: 11px 28px;
	background: var(--tl-surface-02);
	border: 1px solid var(--tl-border);
	border-radius: 14px;
	text-decoration: none;
	transition:
		border-color 0.2s ease,
		background 0.2s ease;
}
.tl-footer__social span {
	color: var(--tl-text-muted);
	font-size: 14px;
	font-weight: var(--tl-fw-medium);
	white-space: nowrap;
}
.tl-footer__social-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
}
.tl-footer__social:hover,
.tl-footer__social:focus-visible {
	border-color: var(--tl-border-strong);
	background: var(--tl-surface-04);
}

.tl-footer__app {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
}
.tl-footer__app-label {
	margin: 0;
	color: var(--tl-accent);
	font-size: 11px;
	font-weight: var(--tl-fw-medium);
	letter-spacing: 1.84px;
}
.tl-footer__badges {
	display: flex;
	gap: 12px;
}
.tl-footer__badge {
	display: block;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
}
.tl-footer__badge:hover {
	opacity: 0.85;
}
.tl-footer__badge img {
	display: block;
	width: auto;
	height: 44px;
}

.tl-footer__badge--soon {
	position: relative;
}
.tl-footer__tip {
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	padding: 6px 12px;
	background: var(--tl-bg);
	border: 1px solid var(--tl-border-strong);
	border-radius: 8px;
	color: var(--tl-text);
	font-size: 12px;
	font-weight: var(--tl-fw-medium);
	white-space: nowrap;
	pointer-events: none;
	z-index: 2;
}
.tl-footer__tip[hidden] {
	display: none;
}
.tl-footer__tip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: var(--tl-bg);
}

.tl-footer__copy {
	margin: 0;
	color: var(--tl-text-2);
	font-size: 10px;
	font-weight: var(--tl-fw-medium);
	text-align: center;
}

@media (min-width: 900px) {
	.tl-footer__inner {
		gap: 45px;
		padding: 50px 24px;
	}
	.tl-footer__cols {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 350px;
		column-gap: 121px;
		align-items: start;
	}
	.tl-footer__left {
		display: flex;
		flex-direction: column;
		gap: 42px;
	}
	.tl-footer__right {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 52px;
	}
	.tl-footer__brand,
	.tl-footer__nav,
	.tl-footer__legal,
	.tl-footer__contact {
		order: 0;
	}
	.tl-footer__nav {
		align-items: flex-end;
		gap: 30px;
	}
	.tl-footer__links {
		justify-content: flex-end;
	}
	.tl-footer__contact {
		align-items: flex-end;
		gap: 38px;
		margin-top: 0;
	}
	.tl-footer__app {
		align-items: flex-end;
	}
	.tl-footer__copy {
		text-align: left;
	}
}

/* --- FAQ + Testimonials (from globals/_faq.scss, globals/sections/testimonials) --- */
.tl-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tl-faq__item {
	border: 1px solid var(--faq-card-border, #e4ecf5);
	border-radius: 14px;
	background: var(--faq-card-bg, #fff);
	overflow: hidden;
}
.tl-faq__item[open] {
	border-color: var(--faq-card-border-open, #cbdcf0);
	box-shadow: var(--faq-card-shadow, 0 12px 30px -20px rgba(10, 20, 36, 0.16));
}

.tl-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 62px;
	padding: 12px 22px;
	color: var(--faq-title, #0a1424);
	font-size: 16px;
	font-weight: var(--tl-fw-bold);
	line-height: 1.25;
	list-style: none;
	cursor: pointer;
}
.tl-faq__q::-webkit-details-marker {
	display: none;
}
.tl-faq__q:focus-visible {
	outline: 2px solid var(--faq-accent, #0078db);
	outline-offset: -2px;
	border-radius: 14px;
}

.tl-faq__icon {
	position: relative;
	flex-shrink: 0;
	width: 13px;
	height: 13px;
}
.tl-faq__icon::before,
.tl-faq__icon::after {
	content: "";
	position: absolute;
	background: var(--faq-accent, #0078db);
	border-radius: 2px;
}
.tl-faq__icon::before {
	top: 50%;
	left: 0;
	width: 13px;
	height: 2px;
	transform: translateY(-50%);
}
.tl-faq__icon::after {
	left: 50%;
	top: 0;
	width: 2px;
	height: 13px;
	transform: translateX(-50%);
	transition: opacity 0.2s ease;
}

.tl-faq__item[open] .tl-faq__icon::after {
	opacity: 0;
}

.tl-faq__item::details-content {
	content-visibility: visible;
}

.tl-faq__a {
	overflow: hidden;
	transition: height 0.35s ease;
}

.tl-faq__item:not([open]) .tl-faq__a {
	height: 0;
}

.tl-faq__a-inner {
	padding: 2px 24px 24px 22px;
}
.tl-faq__a-inner p {
	margin: 0;
	color: var(--faq-desc, #566580);
	font-size: 14px;
	font-weight: var(--tl-fw-medium);
	line-height: 1.3;
}
.tl-faq__a-inner strong {
	color: var(--faq-title, #0a1424);
	font-weight: var(--tl-fw-bold);
}

@media (prefers-reduced-motion: reduce) {
	.tl-faq__a {
		transition: none;
	}
}
.tl-testimonials__card {
	display: flex;
	flex-direction: column;
	min-height: 240px;
	padding: 30px 29px;
	border: 1px solid var(--ts-card-border);
	border-radius: 20px;
	background: var(--ts-card-bg);
}

.tl-testimonials__stars {
	display: inline-flex;
	gap: 2.5px;
	color: var(--ts-star);
}
.tl-testimonials__stars svg {
	display: block;
	width: 13px;
	height: 13px;
}

.tl-testimonials__quote {
	margin: 17px 0 0;
	color: var(--ts-quote);
	font-size: 14.3px;
	font-weight: var(--tl-fw-medium);
	line-height: 1.3;
}

.tl-testimonials__hl {
	color: var(--ts-accent);
	font-weight: var(--tl-fw-bold);
}

.tl-testimonials__author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 22px;
	border-top: 1px solid var(--ts-card-border);
}

.tl-testimonials__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 21px;
	color: #fff;
	font-size: 15px;
	font-weight: var(--tl-fw-bold);
	line-height: 1;
}

.tl-testimonials__avatar--blue {
	background-image: linear-gradient(135deg, #2c9bf0 0%, #0078db 100%);
}

.tl-testimonials__avatar--purple {
	background-image: linear-gradient(135deg, #8b7bff 0%, #5b4fcf 100%);
}

.tl-testimonials__avatar--green {
	background-image: linear-gradient(135deg, #1fc77e 0%, #16996a 100%);
}

.tl-testimonials__meta {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.tl-testimonials__name {
	color: var(--ts-name);
	font-size: 14px;
	font-weight: var(--tl-fw-bold);
	line-height: 1;
}

.tl-testimonials__role {
	color: var(--ts-role);
	font-size: 12.5px;
	font-weight: var(--tl-fw-medium);
	line-height: 1;
}

.tl-testimonials {
	--ts-title: #0a1424;
	--ts-desc: #566580;
	--ts-accent: #0078db;
	--ts-card-bg: #f6fafe;
	--ts-card-border: #e4ecf5;
	--ts-quote: #0a1424;
	--ts-name: #0a1424;
	--ts-role: #7e8da6;
	--ts-star: #f5a524;
	background: #fff;
	padding-block: 40px;
	font-family: var(--tl-font);
	scroll-margin-top: var(--tl-header-h);
}

.tl-testimonials__container {
	box-sizing: content-box;
	max-width: 1124px;
	margin-inline: auto;
	padding-inline: 13px;
}

.tl-testimonials__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	max-width: 654px;
	margin-inline: auto;
	text-align: center;
}

.tl-testimonials__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--ts-accent);
	font-size: 8px;
	font-weight: var(--tl-fw-medium);
	letter-spacing: 1.84px;
	text-transform: uppercase;
}

.tl-testimonials__eyebrow-line {
	width: 16px;
	height: 1px;
	background: var(--ts-accent);
	opacity: 0.5;
}

.tl-testimonials__title {
	margin: 0;
	color: var(--ts-title);
	font-size: 31px;
	font-weight: var(--tl-fw-bold);
	line-height: 1;
	letter-spacing: -1.38px;
}

.tl-testimonials__title-accent {
	color: var(--ts-accent);
}

.tl-testimonials__sub {
	margin: 0;
	color: var(--ts-desc);
	font-size: 16px;
	font-weight: var(--tl-fw-medium);
	line-height: 1.3;
}

.tl-testimonials__cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 30px;
}

@media (min-width: 768px) {
	.tl-testimonials {
		padding-block: var(--tl-section-py);
	}
	.tl-testimonials__container {
		padding-inline: 24px;
	}
	.tl-testimonials__head {
		gap: 26px;
	}
	.tl-testimonials__eyebrow {
		gap: 10px;
		font-size: 11.5px;
	}
	.tl-testimonials__eyebrow-line {
		width: 24px;
		height: 1.5px;
	}
	.tl-testimonials__title {
		font-size: 46px;
	}
	.tl-testimonials__sub {
		font-size: 18px;
	}
	.tl-testimonials__cards {
		flex-direction: row;
		align-items: stretch;
		margin-top: 48px;
	}
	.tl-testimonials__card {
		flex: 1;
	}
}
