.cth-offcanvas,
.desc-fade,
.search-icon {
	pointer-events: none
}

.bottom-menu-list,
.children,
.comment-list,
.cth-tool-grid,
.footer-menu,
.mobile-list,
.th-content-body li,
.th-live-list,
ul {
	list-style: none
}

.icon-btn,
.text-logo,
body {
	color: var(--text-main)
}

.breadcrumb,
.entry-meta,
.footer-heading,
.is-author-badge {
	text-transform: uppercase
}

.breadcrumb a,
.footer-menu li a,
.meta-cat a,
.mobile-list li a,
.view-all-results a,
a {
	text-decoration: none
}

.blog-header,
.entry-header,
.hero-modern,
.no-results,
.page-header,
.view-all-results {
	text-align: center
}

*,
.th-container {
	box-sizing: border-box
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("assets/fonts/inter-v20-latin_latin-ext-regular.woff2") format("woff2")
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("assets/fonts/inter-v20-latin_latin-ext-500.woff2") format("woff2")
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("assets/fonts/inter-v20-latin_latin-ext-600.woff2") format("woff2")
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("assets/fonts/inter-v20-latin_latin-ext-700.woff2") format("woff2")
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url("assets/fonts/inter-v20-latin_latin-ext-800.woff2") format("woff2")
}

:root {
	--bg-body: #ffffff;
	--text-main: #111827;
	--text-menu: #374151;
	--text-light: #6b7280;
	--primary: #2563eb;
	--primary-hover: #1d4ed8;
	--border: rgba(0, 0, 0, 0.08);
	--wrap: 1200px;
	--head-h: 70px
}

.single-post .entry-content a {
	color: #1b17ffb8;
	text-decoration: underline
}

* {
	margin: 0;
	padding: 0;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif
}

body,
html {
	overflow-x: hidden;
	max-width: 100%
}

body {
	line-height: 1.6;
	background-color: #f8fafc;
	display: flex;
	flex-direction: column;
	min-height: 100vh
}

a {
	color: inherit;
	transition: .2s
}

.wrap {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 20px;
	width: 100%
}

.site-head {
	height: var(--head-h);
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 1000
}

#search-overlay-bg,
.mobile-overlay {
	backdrop-filter: blur(4px);
	visibility: hidden
}

.header-grid {
	display: grid;
	grid-template-columns: 50px 1fr 50px;
	align-items: center;
	height: 100%
}

.brand {
	display: flex;
	align-items: center;
	justify-self: center
}

.brand img {
	max-height: 32px;
	width: auto;
	display: block
}

.text-logo {
	font-size: 22px;
	font-weight: 800
}

.icon-btn {
	background: 0 0;
	border: none;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px
}

.icon-btn:hover {
	background-color: #f3f4f6
}

.mobile-hamburger {
	justify-self: start
}

.mobile-search {
	justify-self: end
}

@media (min-width:991px) {
	.header-grid {
		display: flex;
		justify-content: space-between
	}

	.brand {
		justify-self: flex-start;
		margin-right: 30px
	}

	.mobile-hamburger,
	.mobile-offcanvas,
	.mobile-overlay {
		display: none !important
	}

	.desktop-nav {
		flex: 1;
		display: flex;
		justify-content: center
	}

	.menu-list {
		display: flex;
		gap: 32px;
		align-items: center
	}

	.menu-list>li {
		position: relative;
		padding: 20px 0
	}

	.menu-list>li>a {
		font-weight: 500;
		font-size: 15px;
		color: var(--text-menu)
	}

	.menu-list>li>a:hover {
		color: var(--primary)
	}

	.menu-list ul.sub-menu {
		display: grid;
		grid-auto-flow: column;
		grid-template-rows: repeat(6, min-content);
		width: max-content;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translate(-50%, 20px);
		background: #fff;
		padding: 20px;
		border-radius: 8px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
		border: 1px solid #eee;
		z-index: 9999;
		opacity: 0;
		visibility: hidden;
		transition: .3s
	}

	.menu-list li.focus>ul.sub-menu,
	.menu-list li:hover>ul.sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, 0) !important
	}

	.menu-list ul.sub-menu li a {
		display: block;
		padding: 10px 20px;
		font-size: 14px;
		color: var(--text-menu);
		white-space: nowrap
	}

	.menu-list ul.sub-menu li a:hover {
		background: #f8fafc;
		color: var(--primary)
	}

	.desktop-action {
		display: block
	}

	.btn-primary:hover {
		background: var(--primary-hover);
		transform: translateY(-1px)
	}
}

.btn-primary {
	background: var(--primary);
	color: #fff;
	padding: 10px 24px;
	border-radius: 6px;
	font-weight: 500;
	font-size: 14px;
	transition: transform .2s, background .2s;
	border: none
}

@media (max-width:991px) {

	.desktop-action,
	.desktop-nav,
	.main-navigation {
		display: none !important
	}
}

.site-header,
header.site-head {
	background-color: #fff;
	position: relative;
	z-index: 1000;
	width: 100%
}

.container,
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px;
	min-height: 60px
}

@media (min-width:800px) {
	#th-homepage-wrapper .hero-subtext {
		max-width: 500px
	}
}

.mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, .5);
	z-index: 2000;
	opacity: 0;
	transition: .3s
}

#search-overlay-bg.active,
.mobile-overlay.active {
	opacity: 1;
	visibility: visible
}

.mobile-offcanvas {
	position: fixed;
	top: 0;
	left: -320px;
	width: 85%;
	max-width: 320px;
	height: 100%;
	background: #fff;
	z-index: 2001;
	transition: transform .4s cubic-bezier(.16, 1, .3, 1);
	overflow-y: auto;
	display: flex;
	flex-direction: column
}

.mobile-offcanvas.active {
	transform: translateX(320px)
}

.offcanvas-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	border-bottom: 1px solid #f1f5f9
}

.offcanvas-title {
	font-weight: 700;
	color: #0f172a;
	font-size: 20px;
	font-family: Inter, sans-serif
}

#close-search-btn,
.close-btn {
	background: 0 0;
	border: 1px solid #e2e8f0;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #64748b;
	transition: .2s
}

.close-btn:hover {
	background: #fee2e2;
	color: #ef4444;
	border-color: #ef4444
}

.offcanvas-body {
	padding: 15px;
	flex: 1
}

.mobile-list {
	padding: 0;
	margin: 0
}

.mobile-list li {
	position: relative;
	margin-bottom: 4px
}

.mobile-list li a {
	display: block;
	padding: 14px 16px;
	color: #334155;
	font-weight: 500;
	font-size: 15px;
	border-radius: 8px;
	transition: .2s
}

.mobile-list li a:hover {
	background-color: #eff6ff;
	color: #3b82f6
}

.submenu-toggle {
	position: absolute;
	top: 5px;
	right: 10px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #94a3b8;
	border-radius: 6px
}

.submenu-toggle:hover {
	color: #3b82f6;
	background: rgba(59, 130, 246, .05)
}

.mobile-list li.submenu-open>.submenu-toggle {
	transform: rotate(180deg);
	color: #3b82f6
}

.mobile-list li.submenu-open>a {
	color: #3b82f6;
	background-color: #eff6ff
}

.mobile-list .sub-menu {
	display: none;
	padding: 5px 0 5px 15px;
	margin-left: 10px;
	border-left: 2px solid #e2e8f0
}

.mobile-list li.submenu-open>.sub-menu {
	display: block;
	animation: .3s slideDown
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-5px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.mobile-list .sub-menu li a {
	padding: 10px 15px;
	font-size: 14px;
	color: #64748b;
	font-weight: 400
}

.mobile-list .sub-menu li a:hover {
	color: #3b82f6;
	background: 0 0;
	transform: translateX(5px)
}

@keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.site-foot {
	background-color: #1a1a1a;
	color: #9ca3af;
	padding-top: 80px;
	padding-bottom: 40px;
	margin-top: auto;
	font-size: 15px;
	border-top: none
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 80px
}

.footer-about {
	max-width: 400px
}

.footer-widget img {
	max-width: 270px;
	margin-bottom: 40px;
	display: block
}

.footer-widget p {
	line-height: 1.6;
	margin-bottom: 20px;
	color: #d1d5db
}

.footer-heading {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 25px;
	letter-spacing: .5px
}

.footer-menu {
	padding: 0
}

.footer-menu li {
	margin-bottom: 12px;
	font-size: 13px
}

.footer-menu li a {
	color: #9ca3af;
	transition: color .2s
}

.copyright-text strong,
.footer-menu li a:hover {
	color: #fff
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px
}

.copyright-text {
	font-size: 14px;
	color: #6b7280
}

.bottom-menu-list {
	display: flex;
	gap: 25px;
	margin: 0;
	padding: 0
}

.bottom-menu-list li a {
	font-size: 14px;
	color: #9ca3af
}

.bottom-menu-list li a:hover {
	color: #fff;
	text-decoration: underline
}

.page-container {
	padding-top: 40px;
	padding-bottom: 60px
}

.page-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .03);
	border: 1px solid rgba(0, 0, 0, .04);
	padding: 50px;
	max-width: 1000px;
	margin: 0 auto
}

.page-header {
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--border)
}

.page-title {
	font-size: 32px;
	font-weight: 800;
	color: var(--text-main);
	letter-spacing: -.5px
}

.page-subtitle {
	font-size: 16px;
	color: var(--text-light);
	margin-top: 10px
}

.wrap-narrow {
	max-width: 800px;
	margin: 0 auto
}

.single-container {
	padding-top: 50px;
	padding-bottom: 80px
}

.entry-header {
	margin-bottom: 40px
}

.entry-meta {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-light);
	letter-spacing: .5px;
	margin-bottom: 15px
}

.breadcrumb a:hover,
.comment-reply-link:hover,
.meta-cat a {
	color: var(--primary)
}

.meta-dot {
	margin: 0 8px;
	color: #ddd
}

.entry-title {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--text-main);
	letter-spacing: -1px
}

.entry-image {
	margin-bottom: 40px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05)
}

.entry-image img {
	width: 100%;
	height: auto;
	display: block;
	max-width: 800px;
	max-height: 450px;
	object-fit: cover
}

.entry-content {
	font-size: 18px;
	line-height: 1.8;
	color: #374151
}

.entry-content p {
	margin-bottom: 25px
}

.entry-content h2,
.entry-content h3 {
	color: var(--text-main);
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 20px
}

.entry-content h2 {
	font-size: 28px
}

.entry-content h3 {
	font-size: 24px
}

.entry-content blockquote {
	border-left: 4px solid var(--primary);
	margin: 30px 0;
	font-style: italic;
	color: var(--text-main);
	background: #f1f5f9;
	padding: 20px;
	border-radius: 0 8px 8px 0
}

.author-box {
	margin-top: 60px;
	padding: 30px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 20px
}

.author-avatar {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid #fdfdfd;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .05), 0 10px 15px -3px rgba(0, 0, 0, .08);
	transition: .3s
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s cubic-bezier(.25, .46, .45, .94);
	transform: scale(1.1)
}

.author-box:hover .author-avatar {
	transform: translateY(-4px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04)
}

.author-name {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--text-main)
}

.author-bio {
	font-size: 14px;
	color: var(--text-light);
	margin: 0
}

.entry-tags a {
	display: inline-block;
	background: #f3f4f6;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 13px;
	color: var(--text-light);
	margin-right: 8px;
	margin-bottom: 8px;
	transition: .2s
}

.entry-tags a:hover {
	background: var(--primary);
	color: #fff
}

.comments-area {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--border);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto
}

.comment-reply-title,
.comments-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 30px;
	color: var(--text-main)
}

.comment-list {
	margin: 0 0 40px;
	padding: 0
}

.children,
.comment-form,
.view-all-results {
	margin-top: 20px
}

.comment-body {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	position: relative
}

.comment-meta,
.comment-text p {
	margin-bottom: 10px
}

.children {
	padding-left: 60px
}

.comment-avatar {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: #f1f5f9;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	border: 1px solid rgba(0, 0, 0, .03)
}

.comment-avatar svg,
.th-cat-icon-wrapper svg {
	width: 24px;
	height: 24px
}

.comment-content-box {
	flex: 1;
	background: #fff;
	border: 1px solid var(--border);
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .02)
}

.comment-meta {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.comment-author-name {
	font-weight: 700;
	font-size: 15px;
	color: var(--text-main)
}

.is-author-badge {
	background: var(--primary);
	color: #fff;
	font-size: 10px;
	padding: 2px 6px;
	border-radius: 4px;
	margin-left: 8px;
	vertical-align: middle;
	font-weight: 600
}

.comment-date {
	font-size: 12px;
	color: var(--text-light)
}

.comment-text {
	font-size: 15px;
	color: var(--text-menu);
	line-height: 1.6
}

.comment-reply-link,
.comment-text p:last-child {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-light);
	display: inline-flex;
	align-items: center;
	gap: 5px
}

.reply-icon {
	font-size: 16px;
	line-height: 1
}

.comment-respond {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	border: 1px solid var(--border);
	box-shadow: 0 4px 20px rgba(0, 0, 0, .02)
}

.comment-input-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px
}

.comment-input-group,
input[type=email],
input[type=text],
textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-family: inherit;
	font-size: 15px;
	color: var(--text-main);
	background: #f9fafb;
	transition: .2s
}

input:focus::not(.search-container .search-input),
textarea:focus {
	outline: 0;
	border-color: var(--primary);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .1)
}

.comment-notes {
	margin-bottom: 15px
}

.comment-textarea {
	margin-bottom: 20px
}

.breadcrumb,
.breadcrumb .sep {
	display: flex;
	align-items: center
}

.breadcrumb {
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 25px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #94a3b8
}

.breadcrumb a {
	color: #94a3b8;
	transition: color .2s;
	border-bottom: 1px solid transparent
}

.breadcrumb a:hover {
	border-bottom-color: var(--primary)
}

.breadcrumb .sep {
	color: #cbd5e1
}

.breadcrumb .sep svg {
	width: 14px;
	height: 14px;
	opacity: .6
}

.breadcrumb .current {
	white-space: nowrap;
	text-overflow: ellipsis;
	color: var(--text-menu);
	opacity: .8;
	max-width: 250px;
	overflow: hidden
}

.main-navigation ul li.menu-item-has-children>a {
	display: flex !important;
	align-items: center;
	flex-wrap: nowrap
}

.menu-arrow-icon {
	width: 10px;
	height: 10px;
	display: inline-block;
	opacity: .6
}

.menu-item-has-children .sub-menu {
	display: none;
	transition: .3s
}

.menu-item-has-children.menu-active>.sub-menu {
	display: block !important;
	opacity: 1;
	visibility: visible;
	position: absolute;
	z-index: 999
}

.menu-item-has-children>a {
	cursor: pointer
}

#search-overlay-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, .4);
	z-index: 9998;
	opacity: 0;
	transition: .3s
}

.side-panel {
	position: fixed;
	top: 0;
	right: -450px;
	width: 450px;
	max-width: 90%;
	height: 100vh;
	background: #fff;
	z-index: 9999;
	box-shadow: -10px 0 30px rgba(0, 0, 0, .05);
	transition: right .4s cubic-bezier(.16, 1, .3, 1);
	display: flex;
	flex-direction: column;
	font-family: Inter, system-ui, -apple-system, sans-serif
}

.side-panel.open {
	right: 0
}

.panel-header {
	padding: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #f1f5f9
}

.panel-title {
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -.02em
}

.panel-search-area {
	padding: 24px;
	background: #fff
}

.search-box-wrapper {
	position: relative;
	display: flex;
	align-items: center
}

.search-icon {
	position: absolute;
	left: 16px;
	z-index: 2;
	color: #3b82f6
}

#live-search-input {
	width: 100%;
	height: 50px;
	font-size: 16px;
	color: #1e293b;
	background: #f8fafc;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	outline: 0;
	transition: .2s;
	font-weight: 500
}

#live-search-input:focus {
	background: #fff;
	border-color: #3b82f6;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, .1)
}

#live-search-input::placeholder {
	color: #94a3b8;
	font-weight: 400
}

.spinner {
	position: absolute;
	right: 15px;
	width: 20px;
	height: 20px;
	border: 2px solid #e2e8f0;
	border-top-color: #3b82f6;
	border-radius: 50%;
	animation: .8s linear infinite spin
}

.panel-body {
	flex: 1;
	overflow-y: auto;
	padding: 0 24px 24px
}

.ilmek-search-results li {
	margin-bottom: 8px;
	animation: .2s forwards slideIn
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(10px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

.ilmek-search-results li a {
	display: flex;
	align-items: center;
	padding: 12px;
	border-radius: 8px;
	border: 1px solid transparent;
	text-decoration: none;
	transition: .2s
}

.ilmek-search-results li a:hover {
	background: #eff6ff;
	border-color: #dbeafe
}

.search-thumb {
	width: 48px;
	height: 48px;
	border-radius: 6px;
	overflow: hidden;
	margin-right: 16px;
	background: #e2e8f0;
	flex-shrink: 0
}

.no-results,
.th-live-list a:hover {
	background: #f8fafc
}

.search-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.search-thumb.placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8
}

.blog-card,
.site-main {
	flex-direction: column
}

.search-title {
	font-size: 15px;
	font-weight: 600;
	color: #334155;
	margin-bottom: 2px
}

.search-meta {
	font-size: 13px;
	color: #64748b
}

.blog-header .sub-heading,
.category-tag {
	font-size: 12px;
	text-transform: uppercase
}

.rltd,
.th-content-body th {
	text-transform: capitalize
}

.no-results {
	padding: 40px 0;
	color: #64748b;
	border-radius: 8px;
	margin-top: 10px;
	border: 1px dashed #cbd5e1
}

.view-all-results a {
	color: #3b82f6;
	font-weight: 600;
	font-size: 14px
}

.desc-toggle-btn:hover,
.view-all-results a:hover {
	text-decoration: underline
}

.site-main {
	background-color: #f8fafc;
	min-height: 100vh;
	display: flex;
	align-items: center;
	width: 100%;
	overflow-x: hidden
}

.blog-header {
	width: 100%;
	max-width: 1200px;
	padding: 60px 20px 20px;
	background: 0 0 !important;
	box-shadow: none !important;
	border: none !important;
	margin: 0 auto
}

.blog-header .sub-heading {
	display: inline-block;
	font-weight: 700;
	color: #3b82f6;
	background: #dbeafe;
	padding: 6px 16px;
	border-radius: 30px;
	margin-bottom: 15px;
	letter-spacing: 1px
}

.blog-header .page-title {
	font-size: 42px;
	font-weight: 600;
	color: #0f172a;
	margin: 0 0 20px;
	letter-spacing: -1px;
	line-height: 1.2
}

.desc-toggle-btn {
	display: inline-flex;
	align-items: center
}

.blog-grid-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 60px;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 30px
}

.blog-card {
	display: flex;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	transition: transform .3s, box-shadow .3s;
	border: 1px solid transparent
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .08)
}

.card-image-link {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	margin: 10px 10px 0
}

.image-wrapper {
	position: relative;
	width: 100%;
	padding-top: 60%;
	background-color: #f1f5f9
}

.image-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s
}

.blog-card:hover .image-wrapper img {
	transform: scale(1.05)
}

.category-tag {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(255, 255, 255, .95);
	color: #0f172a;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 6px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
	z-index: 2
}

.card-content {
	padding: 24px 15px;
	display: flex;
	flex-direction: column;
	flex: 1
}

.meta-data {
	font-size: 13px;
	color: #94a3b8;
	margin-bottom: 12px;
	font-weight: 500;
	display: flex;
	align-items: center
}

.meta-data .dot {
	margin: 0 8px;
	font-size: 10px;
	color: #cbd5e1
}

.blog-card .entry-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 12px
}

.desc-toggle-btn,
.read-more-link {
	font-weight: 600;
	display: inline-flex
}

.blog-card .entry-title a {
	text-decoration: none;
	color: #0f172a;
	transition: color .2s
}

.blog-card .entry-title a:hover {
	color: #3b82f6
}

.entry-excerpt {
	font-size: 15px;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.read-more-link {
	margin-top: auto;
	align-items: center;
	font-size: 14px;
	color: #3b82f6;
	text-decoration: none;
	transition: gap .2s
}

.read-more-link svg {
	margin-left: 6px;
	transition: transform .2s
}

.nav-next a:hover .nav-icon,
.read-more-link:hover svg {
	transform: translateX(4px)
}

.pagination-wrapper {
	margin: 0 0 80px;
	text-align: center;
	width: 100%
}

.pagination-wrapper .nav-links {
	display: inline-flex;
	gap: 8px;
	background: #fff;
	padding: 8px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .05)
}

.pagination-wrapper .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	color: #64748b;
	text-decoration: none;
	font-weight: 600;
	transition: .2s;
	font-size: 15px
}

.pagination-wrapper .page-numbers:hover {
	background: #f1f5f9;
	color: #3b82f6
}

.pagination-wrapper .page-numbers.current {
	background: #3b82f6;
	color: #fff;
	box-shadow: 0 4px 10px rgba(59, 130, 246, .3)
}

.pagination-wrapper .page-numbers.dots {
	background: 0 0;
	cursor: default
}

@media (min-width:768px) {
	.blog-grid-container:has(> .blog-card:last-child:first-child) {
		display: flex;
		justify-content: center
	}

	.blog-grid-container:has(> .blog-card:last-child:first-child) .blog-card {
		max-width: 400px;
		width: 100%
	}
}

@media (max-width:768px) {
	.related-header p {
		font-size: 13px !important
	}

	.rltd {
		font-size: 18px !important
	}

	.custom-logo-link,
	.site-logo {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		max-width: 120px
	}

	.menu-toggle,
	.mobile-menu-toggle {
		order: -1;
		z-index: 1002
	}

	.site-foot {
		padding-top: 50px
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		margin-bottom: 50px
	}

	.author-box,
	.footer-bottom {
		flex-direction: column;
		text-align: center
	}

	.bottom-menu-list {
		justify-content: center;
		flex-wrap: wrap
	}

	.page-card {
		padding: 30px 20px
	}

	.page-title {
		font-size: 26px
	}

	.entry-title {
		font-size: 32px
	}

	.children {
		padding-left: 20px
	}

	.comment-input-row {
		flex-direction: column;
		gap: 15px
	}

	.comment-body {
		gap: 15px
	}

	.comment-avatar {
		width: 40px;
		height: 40px
	}

	.breadcrumb {
		margin-bottom: 15px;
		gap: 4px
	}

	.breadcrumb .current {
		max-width: 120px
	}

	.blog-grid-container {
		gap: 30px
	}

	.card-image-link {
		border-radius: 16px 16px 3px 3px
	}

	.blog-header {
		padding: 40px 20px 30px
	}

	.blog-header .page-title {
		font-size: 28px
	}

	.category-seo-desc {
		max-width: 100%
	}
}

.category-seo-desc {
	position: relative;
	max-width: 800px;
	margin: 20px auto 10px;
	overflow: hidden;
	transition: max-height .5s;
	max-height: 80px;
	font-size: 16px;
	color: #64748b;
	line-height: 1.6
}

.category-seo-desc.expanded {
	max-height: 1000px
}

.desc-fade {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background: linear-gradient(to bottom, rgba(248, 250, 252, 0), #f8fafc);
	transition: opacity .3s
}

.category-seo-desc.expanded .desc-fade {
	opacity: 0
}

.desc-toggle-btn {
	background: 0 0;
	border: none;
	color: #3b82f6;
	font-size: 14px;
	cursor: pointer;
	align-items: center;
	gap: 5px;
	padding: 5px 10px;
	margin-bottom: 20px
}

.desc-toggle-btn svg {
	transition: transform .3s
}

.desc-toggle-btn.open svg {
	transform: rotate(180deg)
}

.menu-item a {
	display: flex !important;
	align-items: center;
	gap: 10px
}

.menu-image {
	width: 24px;
	height: 24px;
	object-fit: contain;
	display: inline-block;
	vertical-align: middle;
	transition: transform .2s
}

.menu-item a:hover .menu-image {
	transform: scale(1.15)
}

.mobile-list li a {
	display: flex;
	align-items: center;
	gap: 12px
}

.hero-modern {
	background: linear-gradient(135deg, #fff 0, #f1f1ff 100%);
	padding: 80px 0 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative
}

.hero-center-content {
	position: relative;
	z-index: 2;
	max-width: 750px;
	margin: 0 auto
}

.hero-headline {
	font-size: 35px;
	font-weight: 600;
	color: #0f172a;
	line-height: 1.15;
	margin-bottom: 20px;
	letter-spacing: -1px
}

.text-highlight {
	color: #4f46e5;
	position: relative;
	display: inline-block
}

.hero-subtext {
	font-size: 20px;
	color: #64748b;
	line-height: 1.6;
	padding-bottom: 40px;
	font-weight: 400;
	margin: auto
}

.search-container {
	max-width: 620px;
	margin: 0 auto 30px;
	position: relative
}

.search-form-wrapper {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	display: flex;
	align-items: center;
	padding: 6px;
	transition: .3s;
	box-shadow: 0 10px 30px -5px rgba(0, 0, 0, .08)
}

.search-form-wrapper:focus-within {
	border-color: #4f46e5;
	box-shadow: 0 10px 35px -5px rgba(79, 70, 229, .15);
	transform: translateY(-2px)
}

.search-icon-box {
	padding: 10px;
	display: flex;
	align-items: center
}

.search-input {
	flex: 1;
	border: none;
	outline: 0;
	padding: 15px;
	font-size: 17px;
	color: #334155;
	background: 0 0
}

.search-input::placeholder {
	color: #94a3b8
}

.search-action-btn {
	background: #4f46e5;
	margin-left: 10px;
	color: #fff;
	border: none;
	padding: 12px 28px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	transition: background .2s
}

.search-action-btn:hover {
	background: #4338ca
}

.th-live-results-box {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	margin-top: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
	z-index: 9999;
	overflow: hidden;
	text-align: left
}

.search-form-styled,
.search-form-styled .input-group {
	position: relative
}

.th-live-list {
	margin: 0;
	padding: 0
}

.th-live-list li {
	border-bottom: 1px solid #f1f5f9
}

.th-live-list li:last-child {
	border-bottom: none
}

.th-live-list a {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	text-decoration: none;
	color: #0f172a;
	transition: background .2s;
	gap: 12px
}

.th-res-icon {
	width: 32px;
	height: 32px;
	background: #eff6ff;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center
}

.th-res-title {
	flex: 1;
	font-size: 14px;
	font-weight: 600
}

.th-res-arrow {
	color: #cbd5e1;
	font-size: 14px
}

.th-no-result {
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: #64748b;
	font-size: 14px
}

.th-tools-section {
	padding: 55px 0 50px;
	background-color: #fff;
	border-bottom: 1px solid #e2e8f0
}

.th-section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 30px
}

.th-compact-action {
	font-size: 12px;
	font-weight: 600;
	color: #94a3b8;
	transition: color .2s
}

.search-form-styled .search-submit:hover {
	color: #2563eb
}

.th-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%
}

@media (max-width:900px) {
	.th-info-text {
		padding: 0 50px
	}

	.seo-container {
		grid-template-columns: 1fr;
		padding: 30px
	}
}

.tool-content-seo {
	background-color: #f8fafc;
	margin: 40px 0 40px
}

.th-content-body {
	max-width: 1300px;
	margin: 0 auto;
	background: #fff;
	padding: 40px;
	border-radius: 24px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .05), 0 2px 4px -1px rgba(0, 0, 0, .03);
	border: 1px solid #e2e8f0;
	font-family: Inter, sans-serif;
	color: #1e293b
}

.th-content-body h2 {
	font-size: 25px;
	font-weight: 600;
	color: #0f172a;
	margin-top: 50px;
	margin-bottom: 25px;
	line-height: 1.2;
	letter-spacing: -.5px;
	padding-bottom: 15px;
	border-bottom: 2px solid #f1f5f9
}

.th-content-body h2:first-child {
	margin-top: 0
}

.th-content-body h3 {
	font-size: 24px;
	font-weight: 700;
	color: #1e293b;
	margin-top: 40px;
	margin-bottom: 15px
}

.nav-next a,
.nav-previous a,
.th-content-body a {
	font-weight: 600;
	text-decoration: none;
	transition: .2s
}

.th-content-body p {
	font-size: 16px;
	line-height: 1.8;
	color: #334155;
	margin-bottom: 25px
}

.th-content-body ol,
.th-content-body ul {
	margin-bottom: 30px;
	padding-left: 10px
}

.th-content-body li {
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 14px;
	padding-left: 30px;
	position: relative;
	color: #334155
}

.th-content-body ul li::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 12px;
	width: 8px;
	height: 8px;
	background-color: #2563eb;
	border-radius: 50%
}

.th-content-body a {
	color: #2563eb;
	border-bottom: 1px solid rgba(37, 99, 235, .2)
}

.th-content-body a:hover {
	background: #eff6ff;
	border-bottom-color: #2563eb
}

.post-navigation {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #e2e8f0
}

.nav-links {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 20px
}

.nav-next,
.nav-previous {
	flex: 1;
	min-width: 0
}

.nav-next {
	text-align: right
}

.nav-next a,
.nav-previous a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background-color: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 18px 20px;
	height: 100%;
	font-family: Inter, sans-serif;
	font-size: 15px;
	color: #334155;
	line-height: 1
}

.nav-icon {
	display: block;
	transition: transform .2s
}

.nav-icon path {
	fill: currentColor !important
}

.nav-next a:hover,
.nav-previous a:hover {
	background-color: #fff;
	border-color: #cbd5e1;
	color: #2563eb;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .05);
	transform: translateY(-2px)
}

.nav-previous a:hover .nav-icon {
	transform: translateX(-4px)
}

.no-results-wrapper {
	grid-column: 1/-1;
	display: flex;
	justify-content: center;
	padding: 40px 0
}

.no-result-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 40px;
	text-align: center;
	max-width: 500px;
	width: 100%;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .05)
}

.no-result-card .no-res-icon {
	margin-bottom: 20px;
	color: #64748b
}

.no-result-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 10px
}

.no-result-card p {
	color: #64748b;
	font-size: 15px;
	margin-bottom: 25px;
	line-height: 1.5
}

.search-form-styled {
	width: 100%
}

.search-form-styled .search-field {
	width: 100%;
	padding: 12px 45px 12px 15px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	font-size: 14px;
	outline: 0;
	transition: .2s
}

.search-form-styled .search-field:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, .1)
}

.search-form-styled .search-submit {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	background: 0 0;
	border: none;
	cursor: pointer;
	color: #3b82f6;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color .2s
}

@media (max-width:800px) {
	.single-post .breadcrumb .current {
		display: none
	}

	#th-homepage-wrapper .hero-subtext {
		max-width: 300px
	}

	.single-container {
		padding-top: 30px
	}

	.menu-item-has-children.menu-active>.sub-menu {
		position: relative
	}
}

.related-tools-container {
	max-width: 1300px;
	margin: 60px auto;
	padding: 0 20px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif
}

.related-header {
	text-align: center;
	margin-bottom: 40px
}

.related-header h3 {
	font-size: 28px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 10px
}

.related-header p {
	color: #666;
	font-size: 16px
}

.related-icon {
	color: #5b45ff;
	width: 50px;
	height: 50px;
	background: #f0f2ff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
	font-weight: 700;
	font-size: 20px;
	overflow: hidden
}

.related-icon img {
	width: 100%;
	height: auto
}

.relatedtool {
	margin: 0 0 5px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	line-height: 1.4
}

.visit-btn {
	font-size: 13px;
	color: #888;
	font-weight: 500
}

.th-view-more-wrapper {
	text-align: center;
	margin-top: 40px
}

.th-btn-soft {
	box-shadow: 0 4px 6px rgba(0, 0, 0, .02);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: #fff;
	color: #1a1a2e;
	border: 1px solid #e2e8f0;
	padding: 16px 40px;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 600;
	transition: .3s cubic-bezier(.4, 0, .2, 1)
}

.th-btn-soft:hover {
	background-color: #5b45ff;
	color: #fff;
	border-color: #5b45ff;
	transform: translateY(-4px);
	box-shadow: 0 15px 30px rgba(91, 69, 255, .25)
}

.th-btn-soft svg {
	stroke-width: 2.5;
	transition: transform .3s
}

.th-btn-soft:hover svg {
	transform: translateX(5px)
}

.panel-header span {
	font-size: 18px;
	font-weight: 600
}

#cth-close-btn,
.cth-acc-header,
.cth-header,
.cth-panel {
	display: flex;
	background: #fff
}

.cth-offcanvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	visibility: hidden;
	font-family: inherit
}

.cth-overlay,
.cth-panel {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%
}

.cth-offcanvas.is-open {
	pointer-events: auto;
	visibility: visible
}

.cth-overlay {
	width: 100%;
	background: rgba(0, 0, 0, .4);
	opacity: 0;
	transition: opacity .3s
}

.cth-offcanvas.is-open .cth-overlay {
	opacity: 1
}

.cth-panel {
	width: 350px;
	max-width: 85%;
	box-shadow: 5px 0 20px rgba(0, 0, 0, .1);
	transform: translateX(-100%);
	transition: transform .3s cubic-bezier(.4, 0, .2, 1);
	flex-direction: column
}

.cth-offcanvas.is-open .cth-panel {
	transform: translateX(0)
}

.cth-header {
	padding: 20px 24px;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #f0f0f0
}

.cth-header-title {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0
}

.cth-cat-title,
.th-content-body th {
	font-weight: 600
}

#cth-close-btn {
	width: 34px;
	height: 34px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	font-size: 20px;
	color: #666;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding: 0;
	transition: .2s
}

#cth-close-btn:hover {
	background: #f3f4f6;
	color: #111
}

.cth-body {
	flex: 1;
	overflow-y: auto;
	padding: 0;
	scrollbar-width: none;
	-ms-overflow-style: none
}

.cth-acc-item {
	border-bottom: 1px solid #f9f9f9
}

.cth-acc-header {
	padding: 18px 24px;
	cursor: pointer;
	justify-content: space-between;
	align-items: center;
	transition: background .2s
}

.cth-acc-header:hover {
	background: #fafafa
}

.cth-cat-title {
	font-size: 16px;
	color: #333
}

.cth-acc-item.active .cth-cat-title {
	color: #5a67d8
}

.cth-acc-item.active svg {
	color: #5a67d8;
	transform: rotate(180deg)
}

.cth-acc-content {
	display: none;
	padding: 20px;
	background: #fcfcfc;
	border-top: 1px solid #f0f0f0
}

.cth-acc-item.active .cth-acc-content {
	display: block
}

.cth-tool-grid {
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px
}

.cth-tool-grid li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: #4b5563;
	background: #fff;
	padding: 15px 10px;
	border-radius: 8px;
	border: 1px solid #eee;
	transition: .2s
}

.cth-tool-grid li a:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(90, 103, 216, .15);
	border-color: #dce0f5;
	color: #5a67d8
}

.cth-img-wrap {
	width: 40px;
	height: 40px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center
}

.cth-img-wrap img {
	max-width: 100%;
	height: auto;
	border-radius: 4px
}

.cth-tool-grid li a span {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3
}

.cth-body::-webkit-scrollbar {
	display: none
}

.th-content-body table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
	font-size: 15px;
	background-color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
	border-radius: 8px;
	overflow: hidden
}

.th-content-body thead tr {
	background-color: #5a67d8;
	color: #fff;
	text-align: left
}

.th-content-body td,
.th-content-body th {
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
	vertical-align: middle
}

.th-content-body tbody tr:nth-of-type(2n) {
	background-color: #f9f9f9
}

.th-content-body tbody tr:last-of-type {
	border-bottom: 2px solid #5a67d8
}

.th-content-body table+em {
	display: block;
	margin-top: 15px;
	padding: 15px;
	background-color: #fffbeb;
	border-left: 4px solid #f59e0b;
	color: #92400e;
	font-style: normal;
	border-radius: 4px
}

@media screen and (max-width:768px) {
	.th-content-body table {
		display: block;
		width: 100%;
		overflow-x: auto;
		white-space: nowrap
	}
}

.rltd {
	font-size: 24px;
	font-weight: 700
}

.th-section-titles {
	text-align: center;
	max-width: 700px;
	margin: 60px auto 40px;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center
}

.th-badge,
.th-soft-badges {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .5px
}

.th-soft-badges {
	background-color: #e0e7ff;
	color: #4338ca;
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 20px;
	text-transform: uppercase;
	box-shadow: 0 2px 6px rgba(67, 56, 202, .08)
}

.related-tools-container {
	border-top: 1px solid #e2e8f0;
	padding-top: 40px
}

pre code {
	font-family: monospace;
	font-size: 20px;
	background-color: #e7e7e7;
	padding: 5px;
	border-radius: 2px
}

.th-badge {
	color: #2563eb;
	background: #eff6ff;
	padding: 4px 10px;
	border-radius: 4px;
	margin-bottom: 15px;
	border: 1px solid #dbeafe
}

.th-categories-section {
	padding: 60px 0 110px;
	background: #fcfcff;
	border-bottom: 1px solid #e2e8f0
}

.th-cat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px
}

.th-cat-card-compact {
	background: #fff;
	border: 1px solid #eaecf0;
	border-radius: 12px;
	padding: 16px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: transform .2s, border-color .2s, box-shadow .2s;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .05)
}

.th-cat-card-compact:hover {
	border-color: #2563eb;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px -4px rgba(16, 24, 40, .08)
}

.th-cat-icon-wrapper {
	width: 44px;
	height: 44px;
	background: #f1f5f9;
	color: #475569;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0
}

.th-cat-text-content {
	display: flex;
	flex-direction: column;
	justify-content: center
}

.th-cat-title {
	font-size: 16px;
	font-weight: 600;
	color: #1e293b;
	margin: 0 0 4px;
	line-height: 1.2
}

.th-cat-count {
	font-size: 12px;
	color: #94a3b8;
	font-weight: 500
}

@media (max-width:768px) {
	.hero-headline {
		font-size: 36px
	}

	.hero-subtext,
	.th-cat-title,
	.th-content-body li,
	.th-content-body p {
		font-size: 14px
	}

	.search-form-wrapper {
		flex-direction: column;
		padding: 10px
	}

	.search-input {
		width: 100%;
		text-align: center;
		border-bottom: 1px solid #f1f5f9;
		margin-bottom: 10px
	}

	.search-action-btn {
		width: 100%
	}

	.search-icon-box {
		display: none
	}

	.th-compact-action {
		font-size: 10px
	}

	.tool-content-seo {
		padding: 0 20px
	}

	.th-content-body {
		padding: 30px;
		border-radius: 16px
	}

	.th-content-body h2 {
		font-size: 22px
	}

	.nav-next a,
	.nav-previous a {
		padding: 15px
	}

	.related-header h3 {
		font-size: 24px
	}

	.th-cat-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 12px
	}

	.th-cat-card-compact {
		padding: 14px;
		gap: 12px
	}

	.th-cat-count {
		font-size: 11px
	}

	.th-categories-section {
		padding: 60px 0
	}
}

.th-tools-list-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin-top: 40px;
	margin-bottom: 40px
}

.th-tool-compact {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid #eaecf0;
	border-radius: 12px;
	padding: 14px;
	text-decoration: none;
	transition: .2s;
	gap: 12px;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
	overflow: hidden
}

.th-tool-compact:hover {
	border-color: #2563eb;
	transform: translateY(-3px);
	box-shadow: 0 12px 24px -4px rgba(16, 24, 40, .08)
}

.th-compact-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	background: #eff6ff;
	color: #2563eb;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center
}

.th-compact-icon svg {
	width: 22px;
	height: 22px
}

.th-compact-icon img.th-custom-icon {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px
}

.th-compact-info {
	flex-grow: 1;
	min-width: 0
}

.th-compact-title {
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	margin: 0;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.th-tool-compact:hover .th-compact-title {
	color: #2563eb
}

.th-compact-arrow {
	color: #cbd5e1;
	display: flex;
	align-items: center;
	flex-shrink: 0
}

.th-tool-compact:hover .th-compact-arrow {
	color: #2563eb;
	transform: translateX(3px)
}

@media (max-width:1100px) {
	.th-tools-list-grid {
		grid-template-columns: 1fr;
		gap:20px
	}
}

	.th-tool-compact {
		padding: 10px;
		gap: 8px
	}

	.th-compact-icon {
		width: 36px;
		height: 36px
	}

	.th-compact-icon svg {
		width: 18px;
		height: 18px
	}

	.th-compact-title {
		font-size: 13px;
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical
	}

	.th-compact-arrow {
		display: none
	}
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 0;
	margin: 20px 0
}

.related-card {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 15px;
	text-decoration: none;
	transition: transform .2s, box-shadow .2s;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .02);
	height: 100%
}

.related-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 15px rgba(0, 0, 0, .05);
	border-color: #cbd5e1
}

.related-icon-box {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background-color: #5d5fef;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	overflow: hidden
}

.related-img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.related-placeholder {
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase
}

.related-content {
	flex-grow: 1;
	min-width: 0
}

.related-title {
	font-size: 15px;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden
}

@media (max-width:992px) {
	.related-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width:600px) {
	.related-grid {
		grid-template-columns: 1fr;
		gap: 15px
	}

	.related-card {
		padding: 12px
	}
}

.th-content-body strong {
	font-weight: 400
}

.category-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .7rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .08em;
	line-height: 1;
	color: #4f46e5;
	background-color: #e0e7ff;
	padding: 6px 10px;
	border-radius: 6px;
	margin-bottom: 5px;
	border: 1px solid rgba(79, 70, 229, .1);
	text-decoration: none;
	transition: .2s
}

.category-badge:hover {
	background-color: #4f46e5;
	color: #fff;
	border-color: #4f46e5;
	text-decoration: none
}

@media (max-width:768px) {
	.category-badge {
		font-size: .55rem;
		padding: 5px 8px;
		margin-bottom: .5rem
	}
}

@media (max-width:900px) {
	.pro-dashboard-grid {
		grid-template-columns: 1fr;
		min-height: auto
	}

	.pro-panel {
		border-right: none;
		border-bottom: 1px solid #f1f5f9;
		padding: 1rem
	}
}

@media (max-width:500px) {
	.stats-grid {
		grid-template-columns: 1fr
	}

	.flex-wrap-row {
		flex-direction: column
	}

	.sm-wrapper {
		width: 100%
	}

	.rc-val {
		font-size: 2.5rem
	}
}

.cs-embed-wrapper {
	max-width: 1350px;
	margin: 30px auto;
	padding: 0 20px;
	box-sizing: border-box
}

.cs-embed-badge {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border: 1px dashed rgba(148, 163, 184, .5);
	border-radius: 8px;
	padding: 12px 20px;
	gap: 15px
}

.cs-embed-text {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: .9rem;
	color: #475569
}

.cs-embed-text svg {
	color: #6366f1;
	flex-shrink: 0
}

.cs-embed-text strong {
	color: #1e293b;
	font-weight: 600
}

.cs-embed-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(99, 102, 241, .05);
	border: 1px solid rgba(99, 102, 241, .2);
	color: #4f46e5;
	padding: 8px 16px;
	border-radius: 6px;
	font-weight: 600;
	font-size: .85rem;
	cursor: pointer;
	transition: .2s;
	white-space: nowrap
}

.cs-embed-btn:hover {
	background: #6366f1;
	color: #fff;
	border-color: #6366f1
}

@media (max-width:600px) {
	.cs-embed-wrapper {
		margin-bottom: 0 !important;
		padding: 0 15px
	}

	.cs-embed-badge {
		flex-direction: column;
		align-items: flex-start;
		padding: 16px;
		gap: 12px
	}

	.cs-embed-text {
		align-items: flex-start;
		gap: 10px
	}

	.cs-embed-text svg {
		margin-top: 2px
	}

	.cs-embed-btn {
		width: 100%;
		justify-content: center;
		margin-top: 4px
	}
}

.cs-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, .6);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px)
}

.cs-modal-box {
	background: #fff;
	width: 90%;
	max-width: 500px;
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1);
	position: relative
}

.cs-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: 0 0;
	border: none;
	font-size: 24px;
	color: #94a3b8;
	cursor: pointer;
	line-height: 1;
	transition: color .2s
}

.cs-modal-close:hover {
	color: #ef4444
}

.cs-modal-title {
	margin-top: 0;
	color: #0f172a;
	font-size: 1.25rem;
	font-weight: 700
}

.cs-modal-desc {
	color: #64748b;
	font-size: .9rem;
	margin-bottom: 16px
}

.cs-modal-textarea {
	width: 100%;
	height: 120px;
	padding: 12px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #f8fafc;
	color: #334155;
	font-family: monospace;
	font-size: .85rem;
	resize: none;
	margin-bottom: 16px;
	box-sizing: border-box
}

.cs-modal-copy-btn {
	width: 100%;
	padding: 12px;
	background: #6366f1;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s
}

.cs-modal-copy-btn:hover {
	background: #4f46e5
}





/* ── SECTION ────────────────────────────────────────────── */
.cs-about {
    background: #fcfcff;
    border-top: 1px solid #e8eaf0;
    border-bottom: 1px solid #e8eaf0;
    padding: 64px 0 72px;
}
 
.cs-about__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
 
/* ── HEADER ─────────────────────────────────────────────── */
.cs-about__header {
    margin-bottom: 32px;
}
 
.cs-about__badge {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 4px 11px;
    border-radius: 20px;
    margin-bottom: 14px;
}
 
.cs-about__h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin: 0;
}
 
/* ── STAT BAR ───────────────────────────────────────────── */
.cs-about__stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: #ffffff;
    border: 1px solid #e4e7ef;
    border-radius: 12px;
    padding: 18px 28px;
    margin-bottom: 32px;
}
 
.cs-about__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
 
.cs-about__stat-div {
    width: 1px;
    height: 32px;
    background: #e4e7ef;
    flex-shrink: 0;
}
 
.cs-about__stat-n {
    font-size: 24px;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
    letter-spacing: -0.03em;
}
 
.cs-about__stat-n sup {
    font-size: 14px;
    font-weight: 700;
    vertical-align: super;
}
 
.cs-about__stat-l {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
}
 
/* ── BODY TEXT ──────────────────────────────────────────── */
.cs-about__body {
    margin-bottom: 24px;
}
 
.cs-about__body p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 14px;
}
 
.cs-about__body p:last-child {
    margin-bottom: 0;
}
 
.cs-about__lead {
    font-size: 16px !important;
    color: #334155 !important;
    font-weight: 500;
}
 
.cs-about__body strong {
    color: #1d4ed8;
    font-weight: 600;
}
 
/* ── CHIPS ──────────────────────────────────────────────── */
.cs-about__chips {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
 
.cs-about__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    background: #ffffff;
    border: 1px solid #e4e7ef;
    border-radius: 8px;
    padding: 6px 12px;
    line-height: 1;
}
 
.cs-about__chip svg {
    color: #2563eb;
    flex-shrink: 0;
}
 
/* ── DIVIDER ────────────────────────────────────────────── */
.cs-about__rule {
    border: none;
    border-top: 1px solid #e8eaf0;
    margin: 0 0 32px;
}
 
/* ── FAQ ────────────────────────────────────────────────── */
.cs-faq__title {
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 4px;
}
 
.cs-faq__list {
    border-top: 1px solid #e8eaf0;
}
 
.cs-faq__item {
    border: 1px solid #e8eaf0;
}
 
.cs-faq__btn {
    width: 100%;
    background: #fff;
    border: 1px solid #fff;
	border-radius:10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    text-align: left;
    transition: color 0.15s;
}
 
.cs-faq__btn:hover {
    color: #2563eb;
}
 
.cs-faq__btn[aria-expanded="true"] {
    color: #2563eb;
}
 
.cs-faq__chevron {
    flex-shrink: 0;
    color: #cbd5e1;
    transition: transform 0.22s ease;
}
 
.cs-faq__btn[aria-expanded="true"] .cs-faq__chevron {
    transform: rotate(180deg);
    color: #2563eb;
}
 
.cs-faq__panel {
    padding: 0 20px 16px;
}
 
.cs-faq__panel p {
    font-size: 14px;
    line-height: 1.75;
    color: #64748b;
    margin: 0;
}
 
.cs-faq__panel a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid #bfdbfe;
    transition: border-color 0.15s;
}
 
.cs-faq__panel a:hover {
    border-color: #2563eb;
}
 
/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 600px) {
    .cs-about {
        padding: 48px 0 56px;
    }
 
    .cs-about__stats {
        padding: 14px 16px;
        gap: 0;
    }
 
    .cs-about__stat-n {
        font-size: 20px;
    }
 
    .cs-about__stat-l {
        font-size: 10px;
    }
 
    .cs-about__h2 {
        font-size: 22px;
    }
 
    .cs-about__chips {
        gap: 6px;
    }
 
    .cs-about__chip {
        font-size: 12px;
        padding: 5px 10px;
    }
}
