/*
Theme Name: Tecmakers Astra Child
Theme URI: http://blog.tecmakers.com.br/
Description: Blog layout for Tecmakers based on the Tecprinters structure.
Author: Antigravity
Template: astra
Version: 1.1.1
Text Domain: tecmakers-astra-child
*/

:root {
	--tmk-primary: #F97316;
	--tmk-primary-hover: #EA6A0F;
	--tmk-primary-soft: #FFF3E8;
	--tmk-ink: #080B13;
	--tmk-text: #64748B;
	--tmk-muted: #94A3B8;
	--tmk-line: #E8EEF5;
	--tmk-page: #EEF4FA;
	--tmk-card: #FFFFFF;
	--tmk-footer: #050505;
	--tmk-radius-lg: 20px;
	--tmk-radius-md: 16px;
	--tmk-font: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--tmk-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

html {
	scroll-behavior: smooth;
}

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

body.tmk-blog {
	margin: 0;
	background: var(--tmk-page);
	color: var(--tmk-text);
	font-family: var(--tmk-font);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body.tmk-menu-open {
	overflow: hidden;
}

body.tmk-blog a {
	color: inherit;
	text-decoration: none;
}

body.tmk-blog img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

.tmk-site-header {
	position: fixed;
	top: 16px;
	left: 50%;
	z-index: 1000;
	width: calc(100% - 48px);
	max-width: 1160px;
	transform: translateX(-50%);
}

.tmk-header-inner {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 54px;
	padding: 7px 8px 7px 20px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--tmk-line);
	border-radius: 999px;
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
	backdrop-filter: blur(16px);
}

.tmk-header-logo {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.tmk-header-logo img {
	display: block;
	width: auto;
	height: 28px !important;
	max-width: 170px !important;
	object-fit: contain;
	filter: invert(1);
}

.tmk-header-nav {
	display: flex;
	align-items: center;
	flex: 1;
	gap: 2px;
	overflow: hidden;
	margin-left: 10px;
}

.tmk-nav-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 14px;
	border-radius: 999px;
	color: var(--tmk-text);
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	transition: background 0.16s ease, color 0.16s ease;
}

.tmk-nav-item:hover,
.tmk-nav-item.is-active {
	background: var(--tmk-primary-soft);
	color: var(--tmk-primary);
}

.tmk-header-cta,
.tmk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(90deg, #FB923C, #F97316);
	color: #FFFFFF !important;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
	max-width: 100%;
	box-shadow: 0 10px 24px rgba(249, 115, 22, 0.24);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.tmk-header-cta:hover,
.tmk-btn:hover {
	color: #FFFFFF !important;
	opacity: 0.9;
	transform: translateY(-1px);
}

.tmk-menu-toggle {
	display: none;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	border-radius: 12px;
	background: transparent;
	cursor: pointer;
}

.tmk-menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	border-radius: 2px;
	background: var(--tmk-ink);
	transition: transform 0.22s ease, opacity 0.18s ease;
}

.tmk-menu-toggle.is-open span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.tmk-menu-toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.tmk-menu-toggle.is-open span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.tmk-mobile-menu {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 900;
	padding: 96px 24px 34px;
	background: #FFFFFF;
}

.tmk-mobile-menu.is-open {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tmk-mobile-menu a:not(.tmk-btn) {
	display: block;
	padding: 14px 16px;
	border-radius: 14px;
	color: var(--tmk-ink);
	font-size: 22px;
	font-weight: 800;
}

.tmk-mobile-menu a:not(.tmk-btn):hover,
.tmk-mobile-menu a.is-active {
	background: var(--tmk-primary-soft);
	color: var(--tmk-primary);
}

.tmk-mobile-menu .tmk-btn {
	margin-top: auto;
	min-height: 52px;
	font-size: 14px;
}

.tmk-wrap {
	width: 100%;
	max-width: 1160px;
	padding-right: 24px;
	padding-left: 24px;
	margin: 0 auto;
}

.tmk-main {
	min-height: 60vh;
	padding-top: 92px;
}

.tmk-hero {
	padding: 48px 0 40px;
	text-align: center;
}

.tmk-hero h1 {
	margin: 0 0 14px;
	color: var(--tmk-ink);
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.08;
}

.tmk-hero p {
	max-width: 680px;
	margin: 0 auto;
	color: var(--tmk-text);
	font-size: 17px;
}

.tmk-featured {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	overflow: hidden;
	margin-bottom: 56px;
	padding: 48px;
	gap: 40px;
	background: var(--tmk-card);
	border: 1px solid var(--tmk-line);
	border-radius: var(--tmk-radius-lg);
}

.tmk-featured-image {
	display: block;
	align-self: center;
	aspect-ratio: 16 / 9;
	background: #F8FAFC;
	border-radius: 16px;
	overflow: hidden;
}

.tmk-featured-image img,
.tmk-card-image img,
.tmk-single-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tmk-placeholder-image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: inherit;
	aspect-ratio: 16 / 9;
	background:
		linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(10, 10, 10, 0.05)),
		#FFFFFF;
}

.tmk-placeholder-image img {
	width: min(220px, 54%);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.12));
}

.tmk-featured-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
	padding: 0;
}

.tmk-eyebrow {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--tmk-primary-soft);
	color: var(--tmk-primary);
	font-family: var(--tmk-mono);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tmk-cat-pill {
	display: inline-flex;
	width: fit-content;
	padding: 3px 10px;
	border-radius: 999px;
	background: #F8FAFC;
	color: var(--tmk-text);
	font-size: 11px;
	font-weight: 700;
}

.tmk-featured-title {
	margin: 0;
	color: var(--tmk-ink);
	font-size: clamp(24px, 3vw, 30px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.18;
}

.tmk-featured-title a:hover,
.tmk-card-title a:hover {
	color: var(--tmk-primary);
}

.tmk-featured .tmk-btn {
	width: 100%;
}

.tmk-featured-title,
.tmk-card-title,
.tmk-single-title,
.tmk-hero h1,
.tmk-hero p,
.tmk-excerpt {
	overflow-wrap: anywhere;
}

.tmk-excerpt {
	margin: 0;
	color: var(--tmk-text);
	font-size: 14px;
	line-height: 1.65;
}

.tmk-date {
	color: var(--tmk-muted);
	font-size: 12px;
}

.tmk-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 56px 32px;
	align-items: start;
	padding-bottom: 80px;
}

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

.tmk-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 100%;
	background: var(--tmk-card);
	border: 1px solid var(--tmk-line);
	border-radius: var(--tmk-radius-md);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tmk-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.tmk-card-image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #F8FAFC;
}

.tmk-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 9px;
	padding: 18px;
}

.tmk-card .tmk-cat-pill {
	background: var(--tmk-primary-soft);
	color: var(--tmk-primary);
}

.tmk-card-title {
	margin: 0;
	color: var(--tmk-ink);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.35;
}

.tmk-card .tmk-excerpt {
	font-size: 13px;
	line-height: 1.55;
}

.tmk-sidebar {
	position: sticky;
	top: 100px;
}

.tmk-widget {
	margin-bottom: 20px;
	padding: 22px;
	background: var(--tmk-card);
	border: 1px solid var(--tmk-line);
	border-radius: var(--tmk-radius-md);
}

.tmk-widget h2,
.tmk-widget h3 {
	margin: 0 0 14px;
	color: var(--tmk-ink);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.tmk-cat-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.tmk-cat-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 7px 10px;
	border-radius: 10px;
	color: var(--tmk-text);
	font-size: 13px;
	font-weight: 600;
}

.tmk-cat-list a:hover,
.tmk-cat-list a.is-current {
	background: #F8FAFC;
	color: var(--tmk-primary);
}

.tmk-cat-list span {
	min-width: 24px;
	padding: 2px 7px;
	border-radius: 999px;
	background: #F1F5F9;
	color: var(--tmk-muted);
	font-size: 11px;
	font-weight: 800;
	text-align: center;
}

.tmk-archive-header {
	margin-bottom: 28px;
	padding: 34px 36px;
	background: var(--tmk-card);
	border: 1px solid var(--tmk-line);
	border-radius: var(--tmk-radius-lg);
}

.tmk-breadcrumb {
	margin: 0 0 12px;
	color: var(--tmk-muted);
	font-size: 12px;
	font-weight: 700;
}

.tmk-breadcrumb a {
	color: var(--tmk-primary);
}

.tmk-archive-header h1 {
	margin: 0 0 8px;
	color: var(--tmk-ink);
	font-size: clamp(30px, 3vw, 40px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.14;
}

.tmk-archive-header p {
	margin: 0;
	max-width: 720px;
	color: var(--tmk-text);
}

.tmk-empty {
	padding: 32px;
	background: var(--tmk-card);
	border: 1px solid var(--tmk-line);
	border-radius: var(--tmk-radius-md);
	color: var(--tmk-text);
}

.tmk-single {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	padding: 44px 24px 80px;
}

.tmk-single-article {
	overflow: hidden;
	background: var(--tmk-card);
	border: 1px solid var(--tmk-line);
	border-radius: 24px;
}

.tmk-single-head {
	padding: 42px 48px 26px;
}

.tmk-single-head .tmk-cat-pill {
	margin-bottom: 16px;
	background: var(--tmk-primary-soft);
	color: var(--tmk-primary);
}

.tmk-single-title {
	margin: 0 0 18px;
	color: var(--tmk-ink);
	font-size: clamp(34px, 5vw, 54px);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.04;
}

.tmk-single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	color: var(--tmk-muted);
	font-size: 13px;
	font-weight: 600;
}

.tmk-single-cover {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #F8FAFC;
	border-radius: 16px;
	margin: 0 48px;
}

.tmk-content {
	padding: 42px 48px 50px;
	color: #334155;
	font-size: 18px;
	line-height: 1.82;
}

.tmk-content p,
.tmk-content ul,
.tmk-content ol,
.tmk-content blockquote,
.tmk-content figure {
	margin-top: 0;
	margin-bottom: 1.5em;
}

.tmk-content h2,
.tmk-content h3,
.tmk-content h4 {
	margin: 1.65em 0 0.6em;
	color: var(--tmk-ink);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.16;
}

.tmk-content h2 {
	font-size: 32px;
}

.tmk-content h3 {
	font-size: 25px;
}

.tmk-content a {
	color: var(--tmk-primary);
	font-weight: 700;
}

.tmk-content blockquote {
	padding: 20px 24px;
	border-left: 4px solid var(--tmk-primary);
	border-radius: 0 14px 14px 0;
	background: var(--tmk-primary-soft);
	color: var(--tmk-ink);
	font-size: 20px;
	font-weight: 700;
}

.tmk-post-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.tmk-post-nav a {
	display: block;
	min-height: 100%;
	padding: 18px;
	background: var(--tmk-card);
	border: 1px solid var(--tmk-line);
	border-radius: var(--tmk-radius-md);
	color: var(--tmk-ink);
	font-weight: 800;
	line-height: 1.35;
}

.tmk-post-nav span {
	display: block;
	margin-bottom: 6px;
	color: var(--tmk-muted);
	font-family: var(--tmk-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tmk-comments {
	margin-top: 24px;
	padding: 28px;
	background: var(--tmk-card);
	border: 1px solid var(--tmk-line);
	border-radius: var(--tmk-radius-md);
}

.tmk-footer {
	background: var(--tmk-footer);
	color: #8A94A6;
	font-family: var(--tmk-font);
}

.tmk-footer-inner {
	display: grid;
	grid-template-columns: 280px 1fr 240px;
	gap: 54px;
	padding: 58px 0 42px;
}

.tmk-footer-logo {
	display: block;
	width: 176px;
	height: auto;
	margin-bottom: 18px;
}

.tmk-footer p {
	margin: 0;
	color: #8A94A6;
	font-size: 14px;
	line-height: 1.65;
}

.tmk-footer-tagline {
	margin-top: 12px !important;
	color: #FFFFFF !important;
	font-weight: 800;
}

.tmk-footer-label {
	margin-bottom: 18px !important;
	color: #FFFFFF !important;
	font-family: var(--tmk-mono);
	font-size: 12px !important;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.tmk-footer-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 28px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.tmk-footer-links a {
	color: #B0B8C4;
	font-size: 14px;
	font-weight: 700;
}

.tmk-footer-links a:hover,
.tmk-footer-social a:hover {
	color: var(--tmk-primary);
}

.tmk-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.tmk-footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #FFFFFF;
}

.tmk-footer-social svg {
	width: 20px;
	height: 20px;
}

.tmk-footer-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 0;
	text-align: center;
}

.tmk-footer-bar p {
	font-size: 13px;
}

@media (max-width: 1024px) {
	.tmk-layout {
		grid-template-columns: 1fr 250px;
		gap: 24px;
	}

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

	.tmk-footer-inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

@media (max-width: 820px) {
	.tmk-site-header {
		top: 10px;
		width: calc(100% - 24px);
	}

	.tmk-header-inner {
		padding-left: 16px;
	}

	.tmk-header-nav,
	.tmk-header-cta {
		display: none;
	}

	.tmk-menu-toggle {
		display: block;
		margin-left: auto;
		position: absolute;
		top: 8px;
		right: 8px;
	}

	.tmk-wrap,
	.tmk-single {
		padding-right: 16px;
		padding-left: 16px;
	}

	.tmk-header-inner {
		position: relative;
		padding-right: 54px;
	}

	.tmk-header-logo img {
		max-width: 150px !important;
	}

	.tmk-main {
		padding-top: 78px;
	}

	.tmk-hero {
		padding: 36px 0 30px;
	}

	.tmk-featured,
	.tmk-layout {
		grid-template-columns: 1fr;
	}

	.tmk-featured-image {
		min-height: 0;
	}

	.tmk-single-head,
	.tmk-content {
		padding: 26px 24px;
	}

	.tmk-featured {
		padding: 24px;
		gap: 24px;
	}

	.tmk-featured-content {
		padding: 0;
	}

	.tmk-grid {
		grid-template-columns: 1fr;
	}

	.tmk-sidebar {
		position: static;
	}

	.tmk-post-nav {
		grid-template-columns: 1fr;
	}

	.tmk-footer-links {
		grid-template-columns: 1fr;
	}
}

/* Tecmakers dark alignment */
body.tmk-blog {
	background: #050505 !important;
	color: #B0B8C4;
}

.tmk-main {
	background:
		linear-gradient(180deg, rgba(249, 115, 22, 0.05), transparent 280px),
		#050505;
}

.tmk-site-header {
	top: 0 !important;
	width: 100% !important;
	max-width: none !important;
	background: #050505;
	border-bottom: 1px solid #151515;
	transform: translateX(-50%);
}

.tmk-header-inner {
	width: min(1160px, calc(100% - 32px));
	min-height: 70px;
	margin: 0 auto;
	padding: 0;
	background: #050505 !important;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	backdrop-filter: none;
}

.tmk-header-logo img {
	height: 34px !important;
	max-width: 210px !important;
	filter: none !important;
}

.tmk-header-nav {
	justify-content: flex-end;
	gap: 22px;
	margin-left: auto;
}

.tmk-nav-item {
	padding: 0;
	background: transparent !important;
	color: #8A94A6;
	font-family: var(--tmk-mono);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.tmk-nav-item:hover,
.tmk-nav-item.is-active {
	background: transparent !important;
	color: var(--tmk-primary);
}

.tmk-header-divider {
	display: block;
	width: 1px;
	height: 28px;
	margin: 0 22px 0 4px;
	background: #2A2A2A;
}

.tmk-header-cta,
.tmk-btn,
.tmk-sidebar-cta,
.tmk-newsletter-form button {
	min-height: 44px;
	border-radius: 4px;
	background: var(--tmk-primary) !important;
	color: #0A0A0A !important;
	box-shadow: none;
	font-family: var(--tmk-mono);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tmk-header-cta {
	min-width: 102px;
}

.tmk-header-cta:hover,
.tmk-btn:hover,
.tmk-sidebar-cta:hover,
.tmk-newsletter-form button:hover {
	background: var(--tmk-primary-hover) !important;
	color: #0A0A0A !important;
}

.tmk-hero h1,
.tmk-featured-title,
.tmk-card-title,
.tmk-archive-header h1,
.tmk-single-title,
.tmk-widget h2,
.tmk-widget h3 {
	color: #FFFFFF;
}

.tmk-hero p,
.tmk-excerpt,
.tmk-archive-header p,
.tmk-content,
.tmk-widget p {
	color: #B0B8C4;
}

.tmk-featured,
.tmk-card,
.tmk-widget,
.tmk-archive-header,
.tmk-single-article,
.tmk-comments,
.tmk-post-nav a {
	background: #111111;
	border-color: #262626;
}

.tmk-featured-image,
.tmk-card-image,
.tmk-single-cover {
	background: #1A1A1A;
}

.tmk-placeholder-image {
	background:
		radial-gradient(circle at center, rgba(249, 115, 22, 0.18), transparent 36%),
		linear-gradient(135deg, #151515, #050505);
}

.tmk-cat-pill,
.tmk-card .tmk-cat-pill,
.tmk-eyebrow {
	background: rgba(249, 115, 22, 0.12);
	color: var(--tmk-primary);
}

.tmk-date,
.tmk-single-meta,
.tmk-breadcrumb,
.tmk-breadcrumb a,
.tmk-cat-list a,
.tmk-recent-list span {
	color: #8A94A6;
}

.tmk-cat-list a:hover,
.tmk-cat-list a.is-current,
.tmk-recent-list a:hover,
.tmk-breadcrumb a:hover {
	color: var(--tmk-primary);
}

.tmk-cat-list a:hover,
.tmk-cat-list a.is-current {
	background: #1A1A1A;
}

.tmk-cat-list span {
	background: #1F1F1F;
	color: #8A94A6;
}

.tmk-content {
	color: #D4DBE6;
}

.tmk-content h2,
.tmk-content h3,
.tmk-content h4 {
	color: #FFFFFF;
}

.tmk-content blockquote {
	background: rgba(249, 115, 22, 0.1);
	color: #FFFFFF;
}

.tmk-single-shell {
	width: min(1160px, calc(100% - 48px));
	margin: 0 auto;
	padding: 36px 0 80px;
}

.tmk-single-topbar {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	color: #8A94A6;
}

.tmk-back-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	min-height: 38px;
	padding: 0 16px;
	background: #111111;
	border: 1px solid #262626;
	border-radius: 999px;
	color: #FFFFFF !important;
	font-size: 13px;
	font-weight: 800;
}

.tmk-back-btn:hover {
	border-color: var(--tmk-primary);
	color: var(--tmk-primary) !important;
}

.tmk-single-topbar .tmk-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	margin: 0;
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tmk-single-topbar .tmk-breadcrumb span:last-child {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tmk-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 40px;
	align-items: start;
}

.tmk-single-column {
	min-width: 0;
}

.tmk-single-sidebar {
	position: sticky;
	top: 92px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

.tmk-newsletter-widget {
	background:
		linear-gradient(145deg, rgba(249, 115, 22, 0.14), transparent 56%),
		#111111;
}

.tmk-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 14px;
}

.tmk-newsletter-form input {
	width: 100%;
	height: 44px;
	padding: 0 14px;
	background: #050505;
	border: 1px solid #262626;
	border-radius: 6px;
	color: #FFFFFF;
	outline: 0;
}

.tmk-newsletter-form input:focus {
	border-color: var(--tmk-primary);
}

.tmk-form-message {
	min-height: 18px;
	margin: 2px 0 0 !important;
	color: #8A94A6;
	font-size: 12px !important;
	line-height: 1.4 !important;
}

.tmk-form-message[data-state="success"] {
	color: #10B981 !important;
}

.tmk-form-message[data-state="error"] {
	color: #EF4444 !important;
}

.tmk-newsletter-form button:disabled,
.tmk-home-newsletter-form button:disabled {
	cursor: wait;
	opacity: 0.72;
}

.tmk-contact-widget {
	text-align: left;
	background:
		linear-gradient(155deg, #1A1A1A, #0A0A0A) !important;
}

.tmk-sidebar-logo {
	display: block;
	width: 150px;
	height: auto;
	margin-bottom: 18px;
}

.tmk-sidebar-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 18px;
}

.tmk-recent-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.tmk-recent-list a {
	display: block;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.tmk-recent-list span {
	display: block;
	margin-top: 3px;
	font-size: 12px;
}

.tmk-sidebar-empty {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.tmk-home-newsletter {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
	gap: 36px;
	align-items: center;
	overflow: hidden;
	margin-top: 52px;
	padding: 44px;
	background:
		radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.22), transparent 32%),
		linear-gradient(145deg, #151515 0%, #0A0A0A 58%, #050505 100%);
	border: 1px solid #262626;
	border-radius: 20px;
}

.tmk-home-newsletter::after {
	position: absolute;
	right: 34px;
	bottom: -52px;
	width: 190px;
	height: 190px;
	border: 1px solid rgba(249, 115, 22, 0.22);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.tmk-home-newsletter-copy {
	position: relative;
	z-index: 1;
	max-width: 620px;
}

.tmk-home-newsletter-copy .tmk-eyebrow {
	margin-bottom: 16px;
}

.tmk-home-newsletter h2 {
	margin: 0;
	color: #FFFFFF;
	font-size: clamp(30px, 4vw, 52px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.04;
}

.tmk-home-newsletter p {
	margin: 18px 0 0;
	color: #B0B8C4;
	font-size: 17px;
	line-height: 1.7;
}

.tmk-home-newsletter-form {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	padding: 18px;
	background: rgba(5, 5, 5, 0.72);
	border: 1px solid #262626;
	border-radius: 14px;
}

.tmk-home-newsletter-form input {
	width: 100%;
	height: 50px;
	padding: 0 16px;
	background: #050505;
	border: 1px solid #2F2F2F;
	border-radius: 6px;
	color: #FFFFFF;
	font: 600 15px/1 var(--tmk-font);
	outline: 0;
}

.tmk-home-newsletter-form input:focus {
	border-color: var(--tmk-primary);
	box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
}

.tmk-home-newsletter-form button {
	min-height: 50px;
	border: 0;
	border-radius: 6px;
	background: var(--tmk-primary);
	color: #0A0A0A;
	cursor: pointer;
	font-family: var(--tmk-mono);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tmk-home-newsletter-form button:hover {
	background: var(--tmk-primary-hover);
}

@media (max-width: 980px) {
	.tmk-header-nav {
		gap: 14px;
	}

	.tmk-single-layout {
		grid-template-columns: 1fr;
	}

	.tmk-single-sidebar {
		position: static;
	}

	.tmk-home-newsletter {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	.tmk-site-header {
		top: 0 !important;
		width: 100% !important;
	}

	.tmk-header-inner {
		width: 100%;
		min-height: 64px;
		padding: 0 64px 0 16px;
	}

	.tmk-header-logo img {
		max-width: 170px !important;
	}

	.tmk-menu-toggle {
		top: 13px;
		right: 16px;
		color: #FFFFFF;
	}

	.tmk-menu-toggle span {
		background: #FFFFFF;
	}

	.tmk-header-divider {
		display: none;
	}

	.tmk-mobile-menu {
		background: #050505;
	}

	.tmk-mobile-menu a:not(.tmk-btn) {
		color: #FFFFFF;
	}

	.tmk-mobile-menu a:not(.tmk-btn):hover,
	.tmk-mobile-menu a.is-active {
		background: rgba(249, 115, 22, 0.12);
		color: var(--tmk-primary);
	}

	.tmk-single-shell {
		width: 100%;
		padding: 26px 16px 60px;
	}

	.tmk-single-topbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.tmk-single-topbar .tmk-breadcrumb {
		width: 100%;
		white-space: normal;
	}

	.tmk-home-newsletter {
		margin-top: 34px;
		padding: 28px 20px;
	}

	.tmk-home-newsletter p {
		font-size: 15px;
	}

	.tmk-home-newsletter-form {
		padding: 14px;
	}
}

/* Final Astra specificity guards */
body.tmk-blog .tmk-featured,
body.tmk-blog .tmk-card,
body.tmk-blog .tmk-widget,
body.tmk-blog .tmk-archive-header,
body.tmk-blog .tmk-single-article,
body.tmk-blog .tmk-comments,
body.tmk-blog .tmk-post-nav a {
	background: #111111 !important;
	border-color: #262626 !important;
}

body.tmk-blog .tmk-featured-title,
body.tmk-blog .tmk-featured-title a,
body.tmk-blog .tmk-card-title,
body.tmk-blog .tmk-card-title a,
body.tmk-blog .tmk-single-title,
body.tmk-blog .tmk-content h2,
body.tmk-blog .tmk-content h3,
body.tmk-blog .tmk-content h4,
body.tmk-blog .tmk-widget h2,
body.tmk-blog .tmk-widget h3,
body.tmk-blog .tmk-recent-list a {
	color: #FFFFFF !important;
}

body.tmk-blog .tmk-excerpt,
body.tmk-blog .tmk-content,
body.tmk-blog .tmk-content p,
body.tmk-blog .tmk-widget p,
body.tmk-blog .tmk-empty {
	color: #B0B8C4 !important;
}

body.tmk-blog .tmk-single-head,
body.tmk-blog .tmk-content,
body.tmk-blog .tmk-featured-content {
	background: transparent !important;
}

body.tmk-blog .tmk-card-image .tmk-placeholder-image {
	width: 100%;
	height: 100%;
	min-height: 0;
}

body.tmk-blog .tmk-grid .tmk-card {
	align-items: stretch !important;
	padding: 0 !important;
}

body.tmk-blog .tmk-grid .tmk-card-image,
body.tmk-blog .tmk-grid .tmk-card-body {
	width: 100% !important;
}

body.tmk-blog .tmk-featured {
	gap: 40px !important;
	margin-bottom: 64px !important;
	padding: 48px !important;
}

body.tmk-blog .tmk-layout {
	gap: 56px 32px !important;
}

body.tmk-blog .tmk-featured-image,
body.tmk-blog .tmk-single-cover {
	border-radius: 16px !important;
}

body.tmk-blog .tmk-featured-image {
	aspect-ratio: 16 / 9 !important;
	min-height: 0 !important;
}

body.tmk-blog .tmk-single-cover {
	margin: 0 48px !important;
}

body.tmk-blog .tmk-single-cover img,
body.tmk-blog .tmk-featured-image img {
	border-radius: inherit;
}

@media (max-width: 820px) {
	body.tmk-blog .tmk-featured {
		gap: 24px !important;
		margin-bottom: 36px !important;
		padding: 16px !important;
	}

	body.tmk-blog .tmk-layout {
		gap: 28px !important;
	}

	body.tmk-blog .tmk-single-cover {
		margin: 0 24px !important;
	}
}
