/* FrediTech Modern Child — editorial technology + commerce interface */

:root {
	--ft-ink: #0b1020;
	--ft-ink-soft: #263047;
	--ft-muted: #667085;
	--ft-line: #e6eaf0;
	--ft-surface: #ffffff;
	--ft-surface-soft: #f4f7fb;
	--ft-night: #050913;
	--ft-night-2: #0a1223;
	--ft-cyan: #13c6ff;
	--ft-cyan-dark: #007fae;
	--ft-violet: #7c5cff;
	--ft-lime: #b8ff61;
	--ft-radius-sm: 12px;
	--ft-radius: 20px;
	--ft-radius-lg: 30px;
	--ft-shadow: 0 18px 50px rgba( 15, 23, 42, 0.10 );
	--ft-shadow-hover: 0 24px 64px rgba( 15, 23, 42, 0.18 );
	--ft-shell: 1320px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}

body.freditech-modern {
	background: var(--ft-surface);
	color: var(--ft-ink-soft);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	overflow-x: clip;
}

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

.freditech-modern img {
	max-width: 100%;
}

.freditech-modern a {
	color: inherit;
	text-decoration: none;
}

.freditech-modern button,
.freditech-modern input {
	font: inherit;
}

.freditech-modern h1,
.freditech-modern h2,
.freditech-modern h3,
.freditech-modern h4,
.freditech-modern p {
	margin-top: 0;
}

.ft-shell {
	width: min(calc(100% - 48px), var(--ft-shell));
	margin-inline: auto;
}

.ft-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100000;
	padding: 10px 16px;
	background: var(--ft-cyan);
	color: var(--ft-night);
	font-weight: 800;
	transform: translateY(-160%);
	transition: transform 180ms ease;
}

.ft-skip-link:focus {
	transform: translateY(0);
}

.freditech-modern :where(a, button, input):focus-visible {
	outline: 3px solid rgba(19, 198, 255, 0.8);
	outline-offset: 3px;
}

/* Header */
.ft-site-header {
	position: sticky;
	top: 0;
	z-index: 9990;
	width: 100%;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid rgba(11, 16, 32, 0.08);
	box-shadow: 0 8px 28px rgba(2, 6, 23, 0.04);
	transition: box-shadow 180ms ease, background 180ms ease;
}

.admin-bar .ft-site-header {
	top: 32px;
}

.ft-site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(18px);
	box-shadow: 0 14px 36px rgba(2, 6, 23, 0.10);
}

.ft-topbar {
	min-height: 34px;
	background: var(--ft-night);
	color: #cbd5e1;
}

.ft-topbar__inner {
	display: flex;
	min-height: 34px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.ft-topbar__promise {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.09em;
	line-height: 1;
	text-transform: uppercase;
}

.ft-live-dot {
	width: 7px;
	height: 7px;
	background: var(--ft-lime);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(184, 255, 97, 0.12);
}

.ft-utility-menu,
.ft-primary-menu {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
}

.ft-utility-menu {
	gap: 22px;
}

.ft-utility-menu a {
	color: #cbd5e1;
	font-size: 12px;
	font-weight: 650;
}

.ft-utility-menu a:hover {
	color: var(--ft-cyan);
}

.ft-header-main__inner {
	display: grid;
	min-height: 82px;
	align-items: center;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 28px;
}

.ft-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 235px;
}

.ft-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.ft-brand .custom-logo {
	width: auto;
	max-width: 190px;
	height: 48px;
	object-fit: contain;
}

.ft-wordmark {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ft-ink);
}

.ft-wordmark__mark {
	display: grid;
	width: 37px;
	height: 37px;
	place-items: center;
	background: var(--ft-night);
	border-radius: 10px;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}

.ft-wordmark__mark svg {
	width: 28px;
	height: 28px;
	fill: #fff;
}

.ft-wordmark__mark .ft-wordmark__spark {
	fill: var(--ft-cyan);
}

.ft-wordmark__text {
	font-size: 27px;
	font-weight: 760;
	letter-spacing: -0.045em;
	line-height: 1;
}

.ft-wordmark__text strong {
	color: var(--ft-cyan-dark);
	font-weight: 850;
}

.ft-brand__edition {
	padding-left: 14px;
	border-left: 1px solid var(--ft-line);
	color: var(--ft-muted);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.11em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ft-primary-nav {
	min-width: 0;
}

.ft-primary-menu {
	justify-content: center;
	gap: clamp(12px, 1.45vw, 24px);
}

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

.ft-primary-menu > li > a {
	display: flex;
	min-height: 82px;
	align-items: center;
	color: var(--ft-ink);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.2;
	white-space: nowrap;
}

.ft-primary-menu > li > a::after {
	position: absolute;
	right: 50%;
	bottom: 0;
	left: 50%;
	height: 3px;
	background: linear-gradient(90deg, var(--ft-cyan), var(--ft-violet));
	border-radius: 4px 4px 0 0;
	content: "";
	transition: left 180ms ease, right 180ms ease;
}

.ft-primary-menu > li:hover > a,
.ft-primary-menu > .current-menu-item > a,
.ft-primary-menu > .current-menu-ancestor > a {
	color: var(--ft-cyan-dark);
}

.ft-primary-menu > li:hover > a::after,
.ft-primary-menu > .current-menu-item > a::after,
.ft-primary-menu > .current-menu-ancestor > a::after {
	right: 0;
	left: 0;
}

.ft-primary-menu .sub-menu {
	position: absolute;
	top: calc(100% - 8px);
	left: -18px;
	z-index: 10;
	width: 230px;
	padding: 10px;
	margin: 0;
	background: #fff;
	border: 1px solid var(--ft-line);
	border-radius: 14px;
	box-shadow: var(--ft-shadow);
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.ft-primary-menu li:hover > .sub-menu,
.ft-primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.ft-primary-menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 9px;
	color: var(--ft-ink-soft);
	font-size: 13px;
	font-weight: 700;
}

.ft-primary-menu .sub-menu a:hover {
	background: var(--ft-surface-soft);
	color: var(--ft-cyan-dark);
}

.ft-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ft-icon-button,
.ft-menu-toggle {
	appearance: none;
	border: 0;
	cursor: pointer;
}

.ft-icon-button {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	padding: 0;
	background: var(--ft-surface-soft);
	border-radius: 12px;
	color: var(--ft-ink);
}

.ft-icon-button:hover {
	background: #e8f8fd;
	color: var(--ft-cyan-dark);
}

.ft-icon-button svg,
.ft-cart-link svg,
.ft-back-to-top svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.ft-cart-link {
	position: relative;
	display: flex;
	min-height: 42px;
	align-items: center;
	gap: 8px;
	padding: 0 12px;
	background: var(--ft-night);
	border-radius: 12px;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.ft-cart-link:hover {
	background: var(--ft-cyan-dark);
	color: #fff;
}

.ft-cart-count {
	display: grid;
	min-width: 20px;
	height: 20px;
	place-items: center;
	padding: 0 5px;
	background: var(--ft-cyan);
	border-radius: 99px;
	color: var(--ft-night);
	font-size: 10px;
	font-weight: 900;
}

.ft-menu-toggle {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	background: var(--ft-surface-soft);
	border-radius: 12px;
	color: var(--ft-ink);
	font-size: 12px;
	font-weight: 800;
}

.ft-menu-toggle__bars {
	display: grid;
	gap: 4px;
}

.ft-menu-toggle__bars span {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 180ms ease, opacity 180ms ease;
}

.ft-menu-toggle[aria-expanded="true"] .ft-menu-toggle__bars span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.ft-menu-toggle[aria-expanded="true"] .ft-menu-toggle__bars span:nth-child(2) {
	opacity: 0;
}

.ft-menu-toggle[aria-expanded="true"] .ft-menu-toggle__bars span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* Search */
.ft-search-panel[hidden] {
	display: none;
}

.ft-search-panel {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	align-items: start;
	justify-items: center;
	padding-top: min(16vh, 150px);
}

.ft-search-panel__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	background: rgba(3, 7, 18, 0.76);
	border: 0;
	backdrop-filter: blur(8px);
}

.ft-search-panel__dialog {
	position: relative;
	z-index: 1;
	width: min(calc(100% - 32px), 760px);
	padding: 28px;
	background: #fff;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 24px;
	box-shadow: 0 32px 90px rgba(0,0,0,.32);
}

.ft-search-panel__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.ft-search-panel__top p {
	margin: 0;
	color: var(--ft-ink);
	font-size: 21px;
	font-weight: 850;
}

.ft-search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
}

.freditech-modern .ft-search-form input[type="search"] {
	width: 100%;
	height: 58px;
	padding: 0 18px;
	background: var(--ft-surface-soft);
	border: 1px solid var(--ft-line);
	border-radius: 14px;
	color: var(--ft-ink);
	font-size: 17px;
}

.ft-search-form button {
	padding: 0 24px;
	background: var(--ft-night);
	border: 0;
	border-radius: 14px;
	color: #fff;
	font-size: 13px;
	font-weight: 850;
}

.ft-search-panel__hint {
	margin: 12px 0 0;
	color: var(--ft-muted);
	font-size: 12px;
}

body.ft-search-open {
	overflow: hidden;
}

/* Hero */
.ft-home-main {
	overflow: hidden;
}

.ft-hero {
	position: relative;
	display: grid;
	min-height: clamp(620px, 72vh, 760px);
	align-items: center;
	isolation: isolate;
	background: var(--ft-night);
	color: #fff;
}

.ft-hero__image,
.ft-hero__wash {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
}

.ft-hero__image {
	object-fit: cover;
	object-position: center;
}

.ft-hero__wash {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(3, 7, 18, 0.99) 0%, rgba(3, 7, 18, 0.93) 34%, rgba(3, 7, 18, 0.50) 58%, rgba(3, 7, 18, 0.08) 82%),
		linear-gradient(0deg, rgba(3, 7, 18, 0.84) 0%, transparent 36%);
}

.ft-hero__inner {
	position: relative;
	display: flex;
	align-items: center;
	padding-block: 86px 74px;
}

.ft-hero__copy {
	width: min(650px, 56%);
}

.ft-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	color: #b8ebfb;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ft-eyebrow span {
	width: 34px;
	height: 2px;
	background: linear-gradient(90deg, var(--ft-cyan), var(--ft-violet));
}

.ft-hero h1 {
	max-width: 620px;
	margin-bottom: 24px;
	color: #fff;
	font-size: clamp(54px, 6vw, 92px);
	font-weight: 850;
	letter-spacing: -0.065em;
	line-height: 0.96;
}

.ft-hero__lede {
	max-width: 590px;
	margin-bottom: 31px;
	color: #cbd5e1;
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.65;
}

.ft-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ft-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 13px;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.2;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.ft-button:hover {
	transform: translateY(-2px);
}

.ft-button--primary {
	background: var(--ft-cyan);
	color: #03111a;
	box-shadow: 0 12px 30px rgba(19, 198, 255, 0.20);
}

.ft-button--primary:hover {
	background: #65dcff;
	color: #03111a;
}

.ft-button--ghost {
	background: rgba(255,255,255,.06);
	border-color: rgba(255,255,255,.25);
	color: #fff;
	backdrop-filter: blur(8px);
}

.ft-button--ghost:hover {
	background: rgba(255,255,255,.13);
	border-color: rgba(255,255,255,.5);
	color: #fff;
}

.ft-button--outline {
	background: #fff;
	border-color: #cad2df;
	color: var(--ft-ink);
}

.ft-button--outline:hover {
	border-color: var(--ft-cyan-dark);
	color: var(--ft-cyan-dark);
}

.ft-button--dark {
	background: var(--ft-night);
	color: #fff;
}

.ft-button--dark:hover {
	background: #142037;
	color: #fff;
}

.ft-button--light {
	background: #fff;
	color: var(--ft-night);
}

.ft-button--light:hover {
	background: #dcf8ff;
	color: var(--ft-night);
}

.ft-hero__proof {
	display: flex;
	max-width: 610px;
	gap: 0;
	margin-top: 54px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,.16);
}

.ft-hero__proof > span {
	display: grid;
	min-width: 0;
	gap: 1px;
	padding: 0 28px;
	border-right: 1px solid rgba(255,255,255,.15);
	color: #94a3b8;
	font-size: 11px;
	line-height: 1.4;
}

.ft-hero__proof > span:first-child {
	padding-left: 0;
}

.ft-hero__proof > span:last-child {
	border-right: 0;
}

.ft-hero__proof strong {
	color: #fff;
	font-size: 15px;
	font-weight: 800;
}

/* Trending */
.ft-trending {
	background: #fff;
	border-bottom: 1px solid var(--ft-line);
}

.ft-trending__inner {
	display: grid;
	min-height: 58px;
	align-items: center;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 26px;
}

.ft-trending__label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--ft-cyan-dark);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.10em;
	text-transform: uppercase;
}

.ft-trending__label span {
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	background: #e7faff;
	border-radius: 7px;
}

.ft-trending__rail {
	display: flex;
	min-width: 0;
	gap: 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.ft-trending__rail::-webkit-scrollbar {
	display: none;
}

.ft-trending__rail a {
	position: relative;
	flex: 0 0 auto;
	max-width: 360px;
	padding: 0 22px;
	border-left: 1px solid var(--ft-line);
	color: var(--ft-ink-soft);
	font-size: 12px;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ft-trending__rail a:hover {
	color: var(--ft-cyan-dark);
}

/* Shared sections */
.ft-section {
	padding-block: clamp(74px, 8vw, 112px);
}

.ft-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 42px;
	margin-bottom: 36px;
}

.ft-section-heading--line {
	padding-bottom: 21px;
	border-bottom: 1px solid var(--ft-line);
}

.ft-section-heading__kicker {
	margin-bottom: 8px;
	color: var(--ft-cyan-dark);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.13em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ft-section-heading h2,
.ft-popular h2,
.ft-modern-intro h2,
.ft-newsletter h2 {
	margin-bottom: 0;
	color: var(--ft-ink);
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 850;
	letter-spacing: -0.045em;
	line-height: 1.05;
}

.ft-section-heading > p {
	max-width: 470px;
	margin-bottom: 3px;
	color: var(--ft-muted);
	font-size: 14px;
}

.ft-text-link {
	flex: 0 0 auto;
	color: var(--ft-ink);
	font-size: 12px;
	font-weight: 850;
}

.ft-text-link:hover {
	color: var(--ft-cyan-dark);
}

/* Categories */
.ft-category-section {
	background: var(--ft-surface-soft);
}

.ft-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.ft-category-card {
	position: relative;
	display: block;
	min-height: 310px;
	overflow: hidden;
	background: var(--ft-night);
	border-radius: var(--ft-radius);
	box-shadow: 0 10px 24px rgba(2,6,23,.08);
	color: #fff;
	isolation: isolate;
}

.ft-category-card::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.ft-category-card img,
.ft-category-card__shade {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
}

.ft-category-card img {
	object-fit: cover;
	transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.ft-category-card__shade {
	z-index: -1;
	background: linear-gradient(0deg, rgba(2,6,23,.92) 0%, rgba(2,6,23,.35) 52%, rgba(2,6,23,.02) 80%);
}

.ft-category-card:hover img {
	transform: scale(1.055);
}

.ft-category-card__index {
	position: absolute;
	top: 18px;
	left: 18px;
	display: grid;
	width: 36px;
	height: 29px;
	place-items: center;
	background: rgba(3,7,18,.55);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 8px;
	color: #d9f6ff;
	font-size: 10px;
	font-weight: 900;
	backdrop-filter: blur(8px);
}

.ft-category-card__content {
	position: absolute;
	right: 58px;
	bottom: 24px;
	left: 24px;
	display: grid;
	gap: 4px;
}

.ft-category-card__content strong {
	font-size: clamp(20px, 2vw, 26px);
	font-weight: 850;
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.ft-category-card__content small {
	color: #cbd5e1;
	font-size: 12px;
	line-height: 1.45;
}

.ft-category-card__arrow {
	position: absolute;
	right: 22px;
	bottom: 24px;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	background: var(--ft-cyan);
	border-radius: 10px;
	color: var(--ft-night);
	font-size: 17px;
	font-weight: 900;
	transition: transform 180ms ease;
}

.ft-category-card:hover .ft-category-card__arrow {
	transform: translate(2px, -2px);
}

/* Posts */
.ft-spotlight {
	background: #fff;
}

.ft-spotlight-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
	gap: 32px;
}

.ft-lead-story {
	overflow: hidden;
	background: var(--ft-surface-soft);
	border: 1px solid var(--ft-line);
	border-radius: var(--ft-radius-lg);
}

.ft-lead-story__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #dce4ef;
}

.ft-lead-story__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.ft-lead-story:hover .ft-lead-story__media img {
	transform: scale(1.035);
}

.ft-lead-story__body {
	padding: clamp(24px, 3vw, 38px);
}

.ft-kicker {
	display: inline-flex;
	margin-bottom: 11px;
	color: var(--ft-cyan-dark);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ft-kicker:hover {
	color: var(--ft-violet);
}

.ft-lead-story h3 {
	margin-bottom: 14px;
	color: var(--ft-ink);
	font-size: clamp(27px, 3.4vw, 44px);
	font-weight: 850;
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.ft-lead-story h3 a:hover,
.ft-post-card__title a:hover,
.ft-popular li a:hover,
.ft-product-card h3 a:hover {
	color: var(--ft-cyan-dark);
}

.ft-lead-story__body > p {
	margin-bottom: 19px;
	color: var(--ft-muted);
	font-size: 14px;
}

.ft-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	color: #7b8496;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ft-spotlight-list {
	display: grid;
	align-content: start;
}

.ft-post-card {
	min-width: 0;
}

.ft-post-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #e3e9f1;
	border-radius: 15px;
}

.ft-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms cubic-bezier(.2,.7,.2,1);
}

.ft-post-card:hover .ft-post-card__media img {
	transform: scale(1.04);
}

.ft-post-card__body {
	padding-top: 16px;
}

.ft-post-card__title {
	margin-bottom: 13px;
	color: var(--ft-ink);
	font-size: 20px;
	font-weight: 820;
	letter-spacing: -0.025em;
	line-height: 1.25;
}

.ft-post-card--compact {
	display: grid;
	grid-template-columns: 145px minmax(0, 1fr);
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid var(--ft-line);
}

.ft-post-card--compact:first-child {
	padding-top: 0;
}

.ft-post-card--compact:last-child {
	border-bottom: 0;
}

.ft-post-card--compact .ft-post-card__media {
	aspect-ratio: 4 / 3;
	border-radius: 12px;
}

.ft-post-card--compact .ft-post-card__body {
	padding: 2px 0 0;
}

.ft-post-card--compact .ft-kicker {
	margin-bottom: 5px;
}

.ft-post-card--compact .ft-post-card__title {
	margin-bottom: 9px;
	font-size: 15px;
	line-height: 1.3;
}

.ft-post-card--horizontal {
	display: grid;
	grid-template-columns: minmax(190px, .42fr) minmax(0, .58fr);
	gap: 22px;
	padding: 18px 0;
	border-bottom: 1px solid var(--ft-line);
}

.ft-post-card--horizontal:first-child {
	padding-top: 0;
}

.ft-post-card--horizontal:last-child {
	border-bottom: 0;
}

.ft-post-card--horizontal .ft-post-card__media {
	aspect-ratio: 16 / 10;
}

.ft-post-card--horizontal .ft-post-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0;
}

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

.ft-post-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ft-latest-section {
	background: var(--ft-surface-soft);
}

.ft-latest-section .ft-post-card {
	padding: 10px;
	background: #fff;
	border: 1px solid var(--ft-line);
	border-radius: var(--ft-radius);
	box-shadow: 0 8px 28px rgba(15,23,42,.045);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.ft-latest-section .ft-post-card:hover {
	box-shadow: var(--ft-shadow);
	transform: translateY(-4px);
}

.ft-latest-section .ft-post-card__body {
	padding: 17px 10px 11px;
}

.ft-load-more-wrap {
	display: grid;
	justify-items: center;
	margin-top: 44px;
}

.ft-load-more-wrap .ft-button[disabled] {
	cursor: wait;
	opacity: .62;
	transform: none;
}

.ft-load-status {
	min-height: 20px;
	margin: 8px 0 0;
	color: var(--ft-muted);
	font-size: 12px;
}

/* Deals */
.ft-deal-banner {
	position: relative;
	overflow: hidden;
	padding-block: 54px;
	background:
		radial-gradient(circle at 18% 20%, rgba(124,92,255,.5), transparent 28%),
		radial-gradient(circle at 86% 60%, rgba(19,198,255,.32), transparent 32%),
		linear-gradient(125deg, #060912, #101a32 58%, #071b2c);
	color: #fff;
}

.ft-deal-banner::before {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
	background-size: 38px 38px;
	content: "";
	mask-image: linear-gradient(90deg, transparent, #000, transparent);
}

.ft-deal-banner__inner {
	position: relative;
	display: grid;
	align-items: center;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 26px;
}

.ft-deal-banner__icon {
	display: grid;
	width: 66px;
	height: 66px;
	place-items: center;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 19px;
	backdrop-filter: blur(8px);
}

.ft-deal-banner__icon svg {
	width: 44px;
	height: 44px;
	fill: none;
	stroke: var(--ft-cyan);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.ft-deal-banner p {
	margin-bottom: 4px;
	color: var(--ft-cyan);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.ft-deal-banner h2 {
	margin-bottom: 5px;
	color: #fff;
	font-size: clamp(25px, 3.2vw, 40px);
	font-weight: 850;
	letter-spacing: -.035em;
	line-height: 1.1;
}

.ft-deal-banner__inner > div > span {
	color: #aebbd1;
	font-size: 13px;
}

/* Guides and popular */
.ft-guides-section {
	background: #fff;
}

.ft-guides-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr);
	gap: 64px;
}

.ft-popular {
	align-self: start;
	padding: 30px;
	background: var(--ft-night);
	border-radius: var(--ft-radius-lg);
	color: #fff;
}

.ft-popular .ft-section-heading__kicker {
	color: var(--ft-cyan);
}

.ft-popular h2 {
	margin-bottom: 25px;
	color: #fff;
	font-size: 31px;
}

.ft-popular ol {
	padding: 0;
	margin: 0;
	list-style: none;
}

.ft-popular li {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 14px;
	padding: 17px 0;
	border-top: 1px solid rgba(255,255,255,.12);
}

.ft-popular li > span {
	color: var(--ft-cyan);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.5;
}

.ft-popular li a {
	display: block;
	color: #f8fafc;
	font-size: 14px;
	font-weight: 760;
	line-height: 1.35;
}

.ft-popular li small {
	display: block;
	margin-top: 6px;
	color: #77859c;
	font-size: 9px;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}

/* Modern Collective */
.ft-modern-collective {
	background: #ece7de;
}

.ft-modern-intro {
	display: grid;
	min-height: 500px;
	overflow: hidden;
	grid-template-columns: 1.15fr .85fr;
	background: #f8f5f0;
	border-radius: var(--ft-radius-lg);
	box-shadow: 0 18px 60px rgba(73,61,45,.12);
}

.ft-modern-intro__media {
	min-height: 500px;
	overflow: hidden;
}

.ft-modern-intro__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ft-modern-intro__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(40px, 6vw, 76px);
}

.ft-modern-intro__copy .ft-section-heading__kicker {
	color: #855c3d;
}

.ft-modern-intro h2 {
	margin-bottom: 21px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(45px, 5vw, 70px);
	font-weight: 500;
	letter-spacing: -.045em;
}

.ft-modern-intro__copy p:not(.ft-section-heading__kicker) {
	margin-bottom: 28px;
	color: #665e54;
	font-size: 17px;
}

.ft-modern-posts {
	margin-top: 38px;
}

.ft-modern-posts .ft-post-card__media {
	border-radius: 0;
}

/* Products */
.ft-shop-section {
	background: #fff;
}

.ft-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.ft-product-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--ft-line);
	border-radius: var(--ft-radius);
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.ft-product-card:hover {
	box-shadow: var(--ft-shadow);
	transform: translateY(-4px);
}

.ft-product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--ft-surface-soft);
}

.ft-product-card__media > span {
	position: absolute;
	top: 13px;
	left: 13px;
	z-index: 1;
	padding: 6px 9px;
	background: var(--ft-night);
	border-radius: 7px;
	color: #fff;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ft-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.ft-product-card:hover .ft-product-card__media img {
	transform: scale(1.035);
}

.ft-product-card__body {
	padding: 19px;
}

.ft-product-card h3 {
	margin-bottom: 9px;
	color: var(--ft-ink);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
}

.ft-product-card__price {
	min-height: 27px;
	margin-bottom: 15px;
	color: var(--ft-cyan-dark);
	font-size: 16px;
	font-weight: 850;
}

.ft-product-card__price del {
	margin-right: 5px;
	color: var(--ft-muted);
	font-size: 12px;
	font-weight: 600;
}

.ft-product-card__button {
	display: flex;
	min-height: 41px;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	background: var(--ft-night);
	border-radius: 10px;
	color: #fff;
	font-size: 11px;
	font-weight: 850;
}

.ft-product-card__button:hover {
	background: var(--ft-cyan-dark);
	color: #fff;
}

.ft-shop-empty {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 34px;
	background: var(--ft-surface-soft);
	border: 1px dashed #bcc7d5;
	border-radius: var(--ft-radius);
}

.ft-shop-empty strong {
	color: var(--ft-ink);
	font-size: 20px;
}

.ft-shop-empty p {
	margin: 5px 0 0;
	color: var(--ft-muted);
}

/* Newsletter */
.ft-newsletter {
	padding-block: clamp(70px, 8vw, 100px);
	background:
		radial-gradient(circle at 14% 20%, rgba(19,198,255,.17), transparent 28%),
		linear-gradient(125deg, #050913, #0b1427);
	color: #fff;
}

.ft-newsletter__inner {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
	gap: 70px;
}

.ft-newsletter .ft-section-heading__kicker {
	color: var(--ft-cyan);
}

.ft-newsletter h2 {
	margin-bottom: 15px;
	color: #fff;
}

.ft-newsletter__inner > div:first-child > p:last-child {
	max-width: 620px;
	margin-bottom: 0;
	color: #94a3b8;
}

.ft-newsletter__form {
	display: grid;
	justify-items: start;
	gap: 8px;
	padding: 28px;
	background: rgba(255,255,255,.055);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--ft-radius);
}

.ft-newsletter__form small {
	color: #718096;
	font-size: 10px;
}

.ft-newsletter-widget,
.ft-newsletter-widget form {
	width: 100%;
}

.ft-newsletter-widget input[type="email"],
.ft-newsletter-widget input[type="text"] {
	width: 100%;
	height: 52px;
	padding: 0 15px;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 11px;
	color: #fff;
}

.ft-newsletter-widget input[type="submit"],
.ft-newsletter-widget button {
	min-height: 48px;
	padding: 0 20px;
	background: var(--ft-cyan);
	border: 0;
	border-radius: 11px;
	color: var(--ft-night);
	font-weight: 850;
}

/* Footer */
.ft-site-footer {
	position: relative;
	padding-top: 72px;
	background: #03060d;
	color: #a5afbf;
}

.ft-site-footer::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--ft-cyan), var(--ft-violet), var(--ft-cyan));
	content: "";
}

.ft-footer-lead {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr);
	gap: 50px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255,255,255,.11);
}

.ft-wordmark--footer {
	margin-bottom: 17px;
	color: #fff;
}

.ft-wordmark--footer .ft-wordmark__mark {
	background: #111827;
}

.ft-footer-brand > p {
	max-width: 600px;
	margin-bottom: 18px;
	color: #8995a7;
	font-size: 14px;
}

.ft-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ft-trust-row span {
	padding: 6px 9px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.09);
	border-radius: 7px;
	color: #a9b5c7;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.ft-footer-cta {
	display: grid;
	gap: 6px;
	padding: 24px 26px;
	background: linear-gradient(120deg, rgba(19,198,255,.10), rgba(124,92,255,.10));
	border: 1px solid rgba(76,190,255,.2);
	border-radius: var(--ft-radius);
}

.ft-footer-cta span {
	color: #7f8ca0;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ft-footer-cta strong {
	color: #fff;
	font-size: 18px;
}

.ft-footer-cta:hover strong {
	color: var(--ft-cyan);
}

.ft-footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 1.1fr .85fr .95fr;
	gap: 48px;
	padding-block: 50px;
}

.ft-footer-grid h2 {
	margin-bottom: 17px;
	color: #fff;
	font-size: 13px;
	font-weight: 850;
	letter-spacing: .08em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ft-footer-grid ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.ft-footer-grid li {
	margin: 0 0 9px;
}

.ft-footer-grid a {
	color: #8490a2;
	font-size: 13px;
}

.ft-footer-grid a:hover,
.ft-social-links a:hover {
	color: var(--ft-cyan);
}

.ft-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 18px 0;
	border-top: 1px solid rgba(255,255,255,.09);
}

.ft-social-links a {
	color: #8f9aad;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.ft-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 0 28px;
	border-top: 1px solid rgba(255,255,255,.09);
}

.ft-footer-bottom p {
	margin: 0;
	color: #667085;
	font-size: 10px;
}

.ft-back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 9000;
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	padding: 0;
	background: var(--ft-night);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 13px;
	box-shadow: 0 12px 28px rgba(2,6,23,.25);
	color: #fff;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.ft-back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.ft-back-to-top:hover {
	background: var(--ft-cyan-dark);
}

/* Archives, search, pages and articles */
.ft-inner-hero {
	position: relative;
	display: grid;
	min-height: 330px;
	align-items: center;
	overflow: hidden;
	padding-block: 74px;
	background:
		radial-gradient(circle at 78% 30%, rgba(19,198,255,.18), transparent 27%),
		radial-gradient(circle at 18% 80%, rgba(124,92,255,.2), transparent 25%),
		linear-gradient(125deg, #050913, #0b1427);
	color: #fff;
}

.ft-inner-hero__grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(90deg, transparent, #000 50%, transparent);
}

.ft-inner-hero .ft-shell {
	position: relative;
}

.ft-inner-hero .ft-eyebrow {
	margin-bottom: 14px;
}

.ft-inner-hero h1 {
	max-width: 900px;
	margin-bottom: 14px;
	color: #fff;
	font-size: clamp(44px, 6vw, 72px);
	font-weight: 850;
	letter-spacing: -.055em;
	line-height: 1;
}

.ft-inner-hero > .ft-shell > p:last-child,
.ft-inner-hero__description,
.ft-inner-hero__description p {
	max-width: 720px;
	margin-bottom: 0;
	color: #a8b5c9;
	font-size: 16px;
}

.ft-archive-content {
	padding-block: clamp(62px, 7vw, 96px);
}

.ft-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 42px 25px;
}

.ft-archive-grid .ft-post-card {
	padding-bottom: 20px;
	border-bottom: 1px solid var(--ft-line);
}

.freditech-modern .navigation.pagination {
	margin-top: 52px;
	text-align: center;
}

.freditech-modern .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

.freditech-modern .nav-links .page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	padding: 0 13px;
	background: #fff;
	border: 1px solid var(--ft-line);
	border-radius: 10px;
	color: var(--ft-ink);
	font-size: 12px;
	font-weight: 800;
}

.freditech-modern .nav-links .page-numbers.current,
.freditech-modern .nav-links .page-numbers:hover {
	background: var(--ft-night);
	border-color: var(--ft-night);
	color: #fff;
}

.ft-empty-state,
.ft-404 {
	padding: clamp(46px, 7vw, 80px);
	background: var(--ft-surface-soft);
	border: 1px solid var(--ft-line);
	border-radius: var(--ft-radius-lg);
	text-align: center;
}

.ft-empty-state h2,
.ft-404 h1 {
	margin-bottom: 12px;
	color: var(--ft-ink);
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 850;
	letter-spacing: -.045em;
	line-height: 1.05;
}

.ft-empty-state > p,
.ft-404 > p:not(.ft-404__code):not(.ft-section-heading__kicker) {
	color: var(--ft-muted);
}

.ft-inline-search {
	display: grid;
	width: min(100%, 640px);
	grid-template-columns: 1fr auto;
	gap: 9px;
	margin: 28px auto;
}

.freditech-modern .ft-inline-search input[type="search"] {
	width: 100%;
	height: 52px;
	padding: 0 16px;
	background: #fff;
	border: 1px solid #cdd5df;
	border-radius: 12px;
	color: var(--ft-ink);
}

.ft-inline-search button {
	padding: 0 21px;
	background: var(--ft-night);
	border: 0;
	border-radius: 12px;
	color: #fff;
	font-size: 12px;
	font-weight: 850;
}

.ft-article-hero {
	position: relative;
	display: grid;
	min-height: clamp(570px, 72vh, 760px);
	align-items: end;
	isolation: isolate;
	overflow: hidden;
	background: var(--ft-night);
	color: #fff;
}

.ft-article-hero__image,
.ft-article-hero__shade {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
}

.ft-article-hero__image {
	object-fit: cover;
	object-position: center;
}

.ft-article-hero__shade {
	z-index: -1;
	background:
		linear-gradient(0deg, rgba(3,7,18,.99) 0%, rgba(3,7,18,.80) 48%, rgba(3,7,18,.24) 100%),
		linear-gradient(90deg, rgba(3,7,18,.58), transparent 70%);
}

.ft-article-hero__inner {
	padding-block: 140px 68px;
}

.ft-article-hero .ft-kicker {
	margin-bottom: 15px;
	color: var(--ft-cyan);
}

.ft-article-hero h1 {
	max-width: 1040px;
	margin-bottom: 20px;
	color: #fff;
	font-size: clamp(43px, 6vw, 80px);
	font-weight: 850;
	letter-spacing: -.06em;
	line-height: 1;
}

.ft-article-hero__excerpt {
	max-width: 850px;
	margin-bottom: 26px;
	color: #c0cad9;
	font-size: clamp(16px, 1.7vw, 20px);
	line-height: 1.6;
}

.ft-article-byline {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ft-article-byline__avatar {
	width: 44px;
	height: 44px;
	border: 2px solid rgba(255,255,255,.55);
	border-radius: 50%;
}

.ft-article-byline > div {
	display: grid;
	gap: 2px;
}

.ft-article-byline span {
	color: #fff;
	font-size: 12px;
	font-weight: 750;
}

.ft-article-byline a {
	color: var(--ft-cyan);
}

.ft-article-byline small {
	color: #8f9bad;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.ft-article-wrap,
.ft-page-wrap {
	padding-block: clamp(60px, 8vw, 100px);
}

.ft-single-article,
.ft-page-article,
.ft-page-wrap > .ft-comments-wrap {
	width: min(100%, 880px);
	margin-inline: auto;
}

.ft-entry-content {
	color: #344054;
	font-size: clamp(16px, 1.35vw, 18px);
	line-height: 1.82;
}

.ft-entry-content > *:first-child {
	margin-top: 0;
}

.ft-entry-content p,
.ft-entry-content ul,
.ft-entry-content ol,
.ft-entry-content blockquote,
.ft-entry-content table,
.ft-entry-content figure,
.ft-entry-content pre {
	margin-bottom: 1.45em;
}

.ft-entry-content h2,
.ft-entry-content h3,
.ft-entry-content h4 {
	color: var(--ft-ink);
	font-weight: 850;
	letter-spacing: -.035em;
	line-height: 1.18;
}

.ft-entry-content h2 {
	margin: 2.1em 0 .7em;
	font-size: clamp(29px, 4vw, 43px);
}

.ft-entry-content h3 {
	margin: 1.8em 0 .65em;
	font-size: clamp(23px, 3vw, 31px);
}

.ft-entry-content h4 {
	margin: 1.6em 0 .6em;
	font-size: 21px;
}

.ft-entry-content a {
	color: var(--ft-cyan-dark);
	font-weight: 650;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.ft-entry-content a:hover {
	color: var(--ft-violet);
}

.ft-entry-content blockquote {
	padding: 22px 24px;
	background: #eefaff;
	border-left: 4px solid var(--ft-cyan-dark);
	border-radius: 0 13px 13px 0;
	color: #283a4f;
	font-size: 1.05em;
}

.ft-entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.ft-entry-content img {
	height: auto;
	border-radius: 15px;
}

.ft-entry-content figure {
	max-width: 100%;
}

.ft-entry-content figcaption {
	margin-top: 8px;
	color: var(--ft-muted);
	font-size: 12px;
	text-align: center;
}

.ft-entry-content table {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	background: #fff;
	border: 1px solid var(--ft-line);
	border-collapse: collapse;
	border-radius: 12px;
	-webkit-overflow-scrolling: touch;
}

.ft-entry-content th,
.ft-entry-content td {
	min-width: 150px;
	padding: 13px 15px;
	border: 1px solid var(--ft-line);
	font-size: 14px;
	line-height: 1.5;
	text-align: left;
	vertical-align: top;
}

.ft-entry-content th {
	background: var(--ft-night);
	color: #fff;
	font-weight: 800;
}

.ft-entry-content tr:nth-child(even) td {
	background: #f8fafc;
}

.ft-entry-content pre {
	overflow-x: auto;
	padding: 19px;
	background: #101827;
	border-radius: 13px;
	color: #e5edf8;
	font-size: 13px;
}

.ft-entry-content iframe,
.ft-entry-content video {
	max-width: 100%;
}

.ft-article-footer {
	padding-top: 48px;
	margin-top: 54px;
	border-top: 1px solid var(--ft-line);
}

.ft-article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 34px;
}

.ft-article-tags a {
	padding: 7px 11px;
	background: var(--ft-surface-soft);
	border: 1px solid var(--ft-line);
	border-radius: 8px;
	color: var(--ft-ink-soft);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.ft-article-tags a:hover {
	background: #e8faff;
	border-color: #a6eafb;
	color: var(--ft-cyan-dark);
}

.ft-author-card {
	display: grid;
	align-items: center;
	grid-template-columns: auto 1fr;
	gap: 20px;
	padding: 25px;
	background: var(--ft-surface-soft);
	border: 1px solid var(--ft-line);
	border-radius: var(--ft-radius);
}

.ft-author-card > img {
	border-radius: 50%;
}

.ft-author-card p {
	margin-bottom: 2px;
	color: var(--ft-cyan-dark);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.ft-author-card h2 {
	margin-bottom: 4px;
	color: var(--ft-ink);
	font-size: 22px;
	font-weight: 850;
}

.ft-author-card div div {
	color: var(--ft-muted);
	font-size: 13px;
}

.ft-related {
	padding-top: 62px;
	margin-top: 62px;
	border-top: 1px solid var(--ft-line);
}

.ft-related > h2 {
	margin-bottom: 28px;
	color: var(--ft-ink);
	font-size: 35px;
	font-weight: 850;
	letter-spacing: -.04em;
}

.ft-comments-wrap {
	padding-top: 54px;
	margin-top: 54px;
	border-top: 1px solid var(--ft-line);
}

.ft-comments-wrap .comments-title,
.ft-comments-wrap .comment-reply-title {
	color: var(--ft-ink);
	font-size: 26px;
	font-weight: 850;
}

.ft-comments-wrap textarea,
.ft-comments-wrap input[type="text"],
.ft-comments-wrap input[type="email"],
.ft-comments-wrap input[type="url"] {
	width: 100%;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid #cdd5df;
	border-radius: 10px;
}

.ft-comments-wrap input[type="submit"] {
	padding: 13px 20px;
	background: var(--ft-night);
	border: 0;
	border-radius: 10px;
	color: #fff;
	font-weight: 800;
}

.ft-404-main {
	padding-block: clamp(70px, 10vw, 130px);
	background:
		radial-gradient(circle at 50% 0, rgba(19,198,255,.12), transparent 35%),
		#fff;
}

.ft-404 {
	width: min(calc(100% - 32px), 900px);
	margin-inline: auto;
}

.ft-404__code {
	margin-bottom: -18px;
	background: linear-gradient(90deg, var(--ft-cyan-dark), var(--ft-violet));
	background-clip: text;
	color: transparent;
	font-size: clamp(90px, 18vw, 180px);
	font-weight: 900;
	letter-spacing: -.08em;
	line-height: .9;
}

/* Parent templates and WooCommerce: clean compatibility layer */
.freditech-modern:not(.home) #content,
.freditech-modern:not(.home) .site-content,
.freditech-modern:not(.home) main#sb--smallbiz-inner_box {
	width: min(calc(100% - 48px), var(--ft-shell));
	margin-inline: auto;
	padding-block: 54px 80px;
}

.freditech-modern:not(.home) .entry-title,
.freditech-modern:not(.home) .page-title,
.freditech-modern.woocommerce .woocommerce-products-header__title {
	color: var(--ft-ink);
	font-weight: 850;
	letter-spacing: -.04em;
}

.freditech-modern .entry-content {
	color: #344054;
	font-size: 17px;
	line-height: 1.8;
}

.freditech-modern .entry-content a {
	color: var(--ft-cyan-dark);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.freditech-modern .entry-content img {
	border-radius: var(--ft-radius-sm);
}

.freditech-modern .widget {
	padding: 22px;
	background: #fff;
	border: 1px solid var(--ft-line);
	border-radius: var(--ft-radius);
}

.freditech-modern .woocommerce ul.products li.product,
.freditech-modern.woocommerce-page ul.products li.product {
	overflow: hidden;
	padding: 10px 10px 20px;
	background: #fff;
	border: 1px solid var(--ft-line);
	border-radius: var(--ft-radius);
	box-shadow: 0 8px 28px rgba(15,23,42,.045);
}

.freditech-modern .woocommerce ul.products li.product img {
	border-radius: 13px;
}

.freditech-modern .woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--ft-ink);
	font-size: 16px;
	font-weight: 800;
}

.freditech-modern .woocommerce ul.products li.product .price {
	color: var(--ft-cyan-dark);
	font-weight: 850;
}

.freditech-modern .woocommerce a.button,
.freditech-modern .woocommerce button.button,
.freditech-modern .woocommerce input.button,
.freditech-modern .woocommerce #respond input#submit,
.freditech-modern .woocommerce a.button.alt,
.freditech-modern .woocommerce button.button.alt {
	min-height: 44px;
	padding: 12px 18px;
	background: var(--ft-night);
	border-radius: 10px;
	color: #fff;
	font-size: 12px;
	font-weight: 850;
}

.freditech-modern .woocommerce a.button:hover,
.freditech-modern .woocommerce button.button:hover,
.freditech-modern .woocommerce input.button:hover,
.freditech-modern .woocommerce a.button.alt:hover,
.freditech-modern .woocommerce button.button.alt:hover {
	background: var(--ft-cyan-dark);
	color: #fff;
}

.freditech-modern .woocommerce span.onsale {
	min-width: 48px;
	min-height: 29px;
	padding: 7px 10px;
	background: var(--ft-violet);
	border-radius: 8px;
	line-height: 1.2;
}

.freditech-modern .woocommerce table.shop_table {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--ft-line);
	border-radius: 14px;
}

.freditech-modern .woocommerce-message,
.freditech-modern .woocommerce-info,
.freditech-modern .woocommerce-error {
	background: var(--ft-surface-soft);
	border-top-color: var(--ft-cyan-dark);
	border-radius: 10px;
}

/* Responsive */
@media (max-width: 1260px) {
	.ft-header-main__inner {
		gap: 18px;
	}

	.ft-brand {
		min-width: 185px;
	}

	.ft-brand__edition,
	.ft-cart-link__label {
		display: none;
	}

	.ft-primary-menu {
		gap: 14px;
	}

	.ft-primary-menu > li > a {
		font-size: 12px;
	}
}

@media (max-width: 1080px) {
	.ft-header-main__inner {
		grid-template-columns: 1fr auto auto;
	}

	.ft-menu-toggle {
		display: flex;
		grid-column: 2;
		grid-row: 1;
	}

	.ft-header-actions {
		grid-column: 3;
		grid-row: 1;
	}

	.ft-primary-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		max-height: calc(100vh - 116px);
		overflow-y: auto;
		padding: 10px 24px 24px;
		background: #fff;
		border-bottom: 1px solid var(--ft-line);
		box-shadow: 0 24px 42px rgba(2,6,23,.13);
	}

	.ft-primary-nav.is-open {
		display: block;
	}

	.ft-primary-menu {
		display: grid;
		width: min(100%, var(--ft-shell));
		margin: 0 auto;
	}

	.ft-primary-menu > li > a {
		min-height: 48px;
		border-bottom: 1px solid var(--ft-line);
		font-size: 14px;
	}

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

	.ft-primary-menu .sub-menu {
		position: static;
		display: block;
		width: auto;
		padding: 0 0 8px 15px;
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.ft-primary-menu .sub-menu a {
		padding-block: 8px;
	}

	.ft-category-grid,
	.ft-post-grid,
	.ft-post-grid--three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ft-spotlight-grid,
	.ft-guides-layout {
		grid-template-columns: 1fr;
	}

	.ft-spotlight-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 24px;
	}

	.ft-guides-layout {
		gap: 46px;
	}

	.ft-popular {
		display: grid;
		grid-template-columns: 1fr;
	}

	.ft-popular ol {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 28px;
	}

	.ft-modern-intro {
		grid-template-columns: 1fr 1fr;
	}

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

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

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

@media (max-width: 782px) {
	.admin-bar .ft-site-header {
		top: 46px;
	}

	.ft-shell {
		width: min(calc(100% - 32px), var(--ft-shell));
	}

	.ft-topbar__inner {
		justify-content: center;
	}

	.ft-utility-nav {
		display: none;
	}

	.ft-header-main__inner {
		min-height: 70px;
	}

	.ft-brand {
		min-width: 0;
	}

	.ft-wordmark__mark {
		width: 34px;
		height: 34px;
	}

	.ft-wordmark__text {
		font-size: 23px;
	}

	.ft-brand .custom-logo {
		max-width: 155px;
		height: 42px;
	}

	.ft-menu-toggle__label,
	.ft-cart-link__label {
		display: none;
	}

	.ft-menu-toggle {
		width: 42px;
		height: 42px;
		justify-content: center;
		padding: 0;
	}

	.ft-cart-link {
		width: 42px;
		justify-content: center;
		padding: 0;
	}

	.ft-cart-count {
		position: absolute;
		top: -6px;
		right: -6px;
		min-width: 18px;
		height: 18px;
		font-size: 9px;
	}

	.ft-hero {
		min-height: 660px;
		align-items: end;
	}

	.ft-hero__image {
		object-position: 64% center;
	}

	.ft-hero__wash {
		background:
			linear-gradient(0deg, rgba(3,7,18,.99) 4%, rgba(3,7,18,.92) 40%, rgba(3,7,18,.42) 72%, rgba(3,7,18,.20) 100%),
			linear-gradient(90deg, rgba(3,7,18,.6), transparent);
	}

	.ft-hero__inner {
		align-items: end;
		padding-block: 190px 48px;
	}

	.ft-hero__copy {
		width: 100%;
	}

	.ft-hero h1 {
		font-size: clamp(47px, 13vw, 68px);
	}

	.ft-hero__lede {
		max-width: 620px;
		font-size: 16px;
	}

	.ft-hero__proof {
		margin-top: 34px;
	}

	.ft-trending__inner {
		grid-template-columns: 1fr;
		gap: 6px;
		padding-block: 12px;
	}

	.ft-trending__rail a:first-child {
		padding-left: 0;
		border-left: 0;
	}

	.ft-section-heading {
		align-items: start;
		flex-direction: column;
		gap: 13px;
	}

	.ft-section-heading > p {
		margin-bottom: 0;
	}

	.ft-category-grid {
		grid-template-columns: 1fr;
	}

	.ft-category-card {
		min-height: 300px;
	}

	.ft-spotlight-list {
		grid-template-columns: 1fr;
	}

	.ft-post-grid,
	.ft-post-grid--three {
		grid-template-columns: 1fr;
	}

	.ft-deal-banner__inner {
		grid-template-columns: auto 1fr;
	}

	.ft-deal-banner__inner > .ft-button {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.ft-modern-intro {
		grid-template-columns: 1fr;
	}

	.ft-modern-intro__media {
		min-height: 380px;
		max-height: 480px;
	}

	.ft-newsletter__inner,
	.ft-footer-lead {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.ft-footer-grid {
		gap: 36px 28px;
	}

	.ft-footer-bottom {
		align-items: start;
		flex-direction: column;
		gap: 8px;
	}

	.ft-article-hero {
		min-height: 620px;
	}

	.ft-article-hero__inner {
		padding-block: 160px 50px;
	}

	.ft-related .ft-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.ft-shell {
		width: min(calc(100% - 24px), var(--ft-shell));
	}

	.ft-topbar__promise {
		font-size: 9px;
		letter-spacing: .06em;
		text-align: center;
	}

	.ft-header-main__inner {
		gap: 8px;
	}

	.ft-wordmark {
		gap: 7px;
	}

	.ft-wordmark__text {
		font-size: 20px;
	}

	.ft-header-actions {
		gap: 5px;
	}

	.ft-icon-button,
	.ft-cart-link,
	.ft-menu-toggle {
		width: 38px;
		height: 38px;
		min-height: 38px;
		border-radius: 10px;
	}

	.ft-primary-nav {
		padding-inline: 12px;
	}

	.ft-search-panel__dialog {
		padding: 20px;
	}

	.ft-search-form {
		grid-template-columns: 1fr;
	}

	.ft-search-form button {
		min-height: 48px;
	}

	.ft-hero {
		min-height: 700px;
	}

	.ft-hero__inner {
		padding-bottom: 40px;
	}

	.ft-eyebrow {
		font-size: 9px;
		letter-spacing: .09em;
	}

	.ft-hero h1 {
		font-size: clamp(43px, 14vw, 58px);
	}

	.ft-button-row {
		display: grid;
		grid-template-columns: 1fr;
	}

	.ft-button-row .ft-button {
		width: 100%;
	}

	.ft-hero__proof {
		justify-content: space-between;
	}

	.ft-hero__proof > span {
		padding: 0 11px;
		font-size: 9px;
	}

	.ft-hero__proof strong {
		font-size: 12px;
	}

	.ft-section {
		padding-block: 64px;
	}

	.ft-section-heading h2,
	.ft-popular h2,
	.ft-newsletter h2 {
		font-size: 34px;
	}

	.ft-category-card {
		min-height: 270px;
	}

	.ft-spotlight-grid {
		gap: 24px;
	}

	.ft-lead-story {
		border-radius: var(--ft-radius);
	}

	.ft-lead-story__body {
		padding: 22px;
	}

	.ft-lead-story h3 {
		font-size: 28px;
	}

	.ft-post-card--compact,
	.ft-post-card--horizontal {
		grid-template-columns: 112px minmax(0, 1fr);
		gap: 13px;
	}

	.ft-post-card--horizontal .ft-post-card__title,
	.ft-post-card--compact .ft-post-card__title {
		font-size: 14px;
	}

	.ft-post-card--horizontal .ft-post-meta,
	.ft-post-card--compact .ft-post-meta {
		display: none;
	}

	.ft-deal-banner__inner {
		grid-template-columns: 1fr;
	}

	.ft-deal-banner__icon {
		width: 54px;
		height: 54px;
	}

	.ft-deal-banner__inner > .ft-button {
		grid-column: auto;
	}

	.ft-popular {
		padding: 24px;
	}

	.ft-popular ol {
		grid-template-columns: 1fr;
	}

	.ft-modern-intro__media {
		min-height: 310px;
	}

	.ft-modern-intro__copy {
		padding: 34px 24px;
	}

	.ft-modern-intro h2 {
		font-size: 46px;
	}

	.ft-product-grid,
	.ft-footer-grid {
		grid-template-columns: 1fr;
	}

	.ft-archive-grid,
	.ft-related .ft-post-grid {
		grid-template-columns: 1fr;
	}

	.ft-shop-empty {
		align-items: flex-start;
		flex-direction: column;
		padding: 25px;
	}

	.ft-newsletter__form {
		padding: 22px;
	}

	.ft-site-footer {
		padding-top: 58px;
	}

	.ft-back-to-top {
		right: 13px;
		bottom: 13px;
	}

	.ft-inner-hero {
		min-height: 280px;
		padding-block: 58px;
	}

	.ft-inner-hero h1 {
		font-size: 42px;
	}

	.ft-article-hero {
		min-height: 650px;
	}

	.ft-article-hero h1 {
		font-size: clamp(38px, 11vw, 54px);
	}

	.ft-article-byline {
		align-items: flex-start;
	}

	.ft-entry-content th,
	.ft-entry-content td {
		min-width: 140px;
		padding: 11px 12px;
		font-size: 13px;
	}

	.ft-author-card {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.ft-inline-search {
		grid-template-columns: 1fr;
	}

	.ft-inline-search button {
		min-height: 48px;
	}
}

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

	.freditech-modern *,
	.freditech-modern *::before,
	.freditech-modern *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
