:root {
	--tsg-plum: #18151f;
	--tsg-plum-2: #2a2433;
	--tsg-accent: #c91d45;
	--tsg-accent-hover: #a91336;
	--tsg-cta: #5c3bc4;
	--tsg-cta-hover: #4729a9;
	--tsg-gold: #d5a331;
	--tsg-text: #231f2b;
	--tsg-muted: #665f70;
	--tsg-soft: #918998;
	--tsg-line: #e3dcde;
	--tsg-bg: #f8f6f4;
	--tsg-surface: #ffffff;
	--tsg-success: #18744f;
	--tsg-success-bg: #edf8f3;
	--tsg-warning-bg: #fff7e3;
	--tsg-info-bg: #f1effb;
	--tsg-danger-bg: #fff0f3;
	--tsg-radius-sm: 8px;
	--tsg-radius: 14px;
	--tsg-radius-lg: 22px;
	--tsg-shadow-sm: 0 3px 14px rgba(35, 25, 43, 0.07);
	--tsg-shadow: 0 18px 48px rgba(35, 25, 43, 0.12);
	--tsg-font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--tsg-heading: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body.tsg-design-active {
	background: var(--tsg-bg);
	color: var(--tsg-text);
	font-family: var(--tsg-font);
	font-size: 17px;
	line-height: 1.72;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.tsg-design-active *,
.tsg-design-active *::before,
.tsg-design-active *::after {
	box-sizing: border-box;
}

.tsg-design-active a {
	color: var(--tsg-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.tsg-design-active a:hover,
.tsg-design-active a:focus {
	color: var(--tsg-accent-hover);
}

.tsg-design-active :focus-visible {
	outline: 3px solid color-mix(in srgb, var(--tsg-accent) 30%, transparent);
	outline-offset: 3px;
}

@supports not (color: color-mix(in srgb, #000 30%, transparent)) {
	.tsg-design-active :focus-visible {
		outline-color: rgba(201, 29, 69, 0.3);
	}
}

.tsg-design-active img {
	border-radius: var(--tsg-radius);
}

.tsg-design-active .grid-container {
	max-width: 1240px;
}

/* Header */
.tsg-design-active .site-header {
	background:
		radial-gradient(circle at 14% -50%, rgba(201, 29, 69, 0.27), transparent 42%),
		linear-gradient(135deg, var(--tsg-plum) 0%, #211a29 62%, #17131d 100%);
	border-top: 3px solid var(--tsg-accent);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	transition: box-shadow 0.2s ease, background-color 0.2s ease;
	z-index: 1000;
}

.tsg-design-active.tsg-sticky-header .site-header {
	position: sticky;
	top: 0;
}

.admin-bar.tsg-design-active.tsg-sticky-header .site-header {
	top: 32px;
}

.tsg-design-active.tsg-scrolled .site-header {
	box-shadow: 0 12px 34px rgba(24, 21, 31, 0.24);
	backdrop-filter: blur(12px);
}

.tsg-design-active .inside-header {
	min-height: 84px;
	padding: 14px 28px;
	display: flex;
	align-items: center;
	gap: 28px;
}

.tsg-design-active .site-logo a {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 13px;
	box-shadow: 0 9px 26px rgba(0, 0, 0, 0.19);
	display: inline-flex;
	justify-content: center;
	padding: 8px 13px;
}

.tsg-design-active .site-logo img {
	border-radius: 0;
	display: block;
	max-height: 55px;
	max-width: 300px;
	object-fit: contain;
	width: auto;
}

.tsg-design-active .site-branding {
	margin-right: auto;
}

.tsg-design-active .main-title,
.tsg-design-active .main-title a {
	color: #fff;
	font-family: var(--tsg-heading);
	font-size: clamp(23px, 2.2vw, 32px);
	font-weight: 850;
	letter-spacing: -0.04em;
	line-height: 1.05;
	text-decoration: none;
}

.tsg-design-active .site-description {
	color: rgba(255, 255, 255, 0.68);
}

/* Primary navigation */
.tsg-design-active .main-navigation,
.tsg-design-active .main-navigation ul ul {
	background: transparent;
}

.tsg-design-active .main-navigation .inside-navigation {
	padding: 0;
}

.tsg-design-active .main-navigation .main-nav ul li a,
.tsg-design-active .menu-toggle,
.tsg-design-active .main-navigation .menu-bar-items a {
	color: rgba(255, 255, 255, 0.83);
	font-size: 15px;
	font-weight: 750;
	line-height: 48px;
	padding-left: 15px;
	padding-right: 15px;
	text-decoration: none;
}

.tsg-design-active .main-navigation .main-nav ul li > a:hover,
.tsg-design-active .main-navigation .main-nav ul li > a:focus,
.tsg-design-active .main-navigation .main-nav ul li[class*="current-menu-"] > a,
.tsg-design-active .main-navigation .main-nav ul li[class*="current_page_"] > a {
	background: rgba(255, 255, 255, 0.09);
	color: #fff;
	border-radius: 9px;
}

.tsg-design-active .main-navigation ul ul {
	background: var(--tsg-surface);
	border: 1px solid var(--tsg-line);
	border-radius: 12px;
	box-shadow: var(--tsg-shadow);
	padding: 8px;
	min-width: 235px;
}

.tsg-design-active .main-navigation .main-nav ul ul li a {
	color: var(--tsg-text);
	line-height: 1.35;
	padding: 12px 14px;
	border-radius: 8px;
}

.tsg-design-active .main-navigation .main-nav ul ul li a:hover,
.tsg-design-active .main-navigation .main-nav ul ul li a:focus {
	background: var(--tsg-danger-bg);
	color: var(--tsg-accent-hover);
}

.tsg-design-active .menu-toggle {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 9px;
	line-height: 44px;
}

/* Optional GeneratePress secondary navigation is preserved and restyled. */
.tsg-design-active .secondary-navigation {
	background: #100e15;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tsg-design-active .secondary-navigation .main-nav ul li a,
.tsg-design-active .secondary-navigation .menu-toggle {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 700;
	line-height: 38px;
	text-decoration: none;
}

.tsg-design-active .secondary-navigation .main-nav ul li a:hover,
.tsg-design-active .secondary-navigation .main-nav ul li[class*="current-menu-"] > a {
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
}

@media (min-width: 769px) {
	.tsg-design-active .main-navigation {
		margin-left: auto;
		width: auto;
	}

	.tsg-design-active .main-navigation .inside-navigation {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	.tsg-design-active .main-navigation .menu-toggle {
		display: none !important;
	}

	.tsg-design-active .main-navigation .main-nav {
		display: block !important;
	}

	.tsg-design-active .main-navigation .main-nav > ul {
		display: flex !important;
		align-items: center;
		flex-wrap: nowrap;
		justify-content: flex-end;
		white-space: nowrap;
	}

	.tsg-design-active .main-navigation .main-nav > ul > li {
		float: none;
	}
}

@media (min-width: 769px) and (max-width: 1280px) {
	.tsg-design-active .inside-header {
		gap: 18px;
		padding-left: 18px;
		padding-right: 18px;
	}

	.tsg-design-active .site-logo img {
		max-height: 48px;
		max-width: 245px;
	}

	.tsg-design-active .main-navigation .main-nav ul li a,
	.tsg-design-active .main-navigation .menu-bar-items a {
		font-size: 13px;
		padding-left: 9px;
		padding-right: 9px;
	}
}

/* Main layout */
.tsg-design-active .site-content {
	padding: clamp(28px, 4vw, 58px) 28px;
}

.tsg-design-active .content-area,
.tsg-design-active .site-main {
	min-width: 0;
}

.tsg-design-active .inside-article {
	background: var(--tsg-surface);
	border: 1px solid rgba(222, 213, 216, 0.82);
	border-radius: var(--tsg-radius-lg);
	box-shadow: var(--tsg-shadow-sm);
	padding: clamp(25px, 4vw, 58px);
}

.tsg-design-active .page .inside-article,
.tsg-design-active .single .inside-article {
	max-width: 920px;
	margin-inline: auto;
}

.tsg-design-active.home .inside-article,
.tsg-design-active .archive .inside-article,
.tsg-design-active .blog .inside-article {
	max-width: none;
}

.tsg-design-active .entry-content {
	margin-top: 1.55em;
}

.tsg-design-active .entry-content > :first-child {
	margin-top: 0;
}

.tsg-design-active .entry-content > :last-child {
	margin-bottom: 0;
}

/* Typography */
.tsg-design-active h1,
.tsg-design-active h2,
.tsg-design-active h3,
.tsg-design-active h4,
.tsg-design-active h5,
.tsg-design-active h6 {
	color: var(--tsg-plum);
	font-family: var(--tsg-heading);
	font-weight: 850;
	letter-spacing: -0.035em;
	line-height: 1.18;
	text-wrap: balance;
}

.tsg-design-active h1 {
	font-size: clamp(36px, 5vw, 56px);
	margin-bottom: 0.55em;
}

.tsg-design-active h2 {
	font-size: clamp(28px, 3.5vw, 39px);
	margin-top: 1.8em;
	margin-bottom: 0.6em;
	position: relative;
}

.tsg-design-active .entry-content > h2::after {
	background: var(--tsg-accent);
	border-radius: 999px;
	content: "";
	display: block;
	height: 3px;
	margin-top: 11px;
	width: 42px;
}

.tsg-design-active h3 {
	font-size: clamp(22px, 2.4vw, 28px);
	margin-top: 1.55em;
	margin-bottom: 0.55em;
}

.tsg-design-active h4 {
	font-size: 20px;
}

.tsg-design-active p,
.tsg-design-active ul,
.tsg-design-active ol {
	margin-bottom: 1.25em;
}

.tsg-design-active .entry-header .entry-title {
	margin-bottom: 0.25em;
}

.tsg-design-active .entry-meta {
	color: var(--tsg-muted);
	font-size: 14px;
	font-weight: 650;
}

.tsg-design-active .entry-meta a {
	color: inherit;
}

.tsg-design-active blockquote {
	background: var(--tsg-info-bg);
	border: 0;
	border-left: 5px solid var(--tsg-cta);
	border-radius: 0 var(--tsg-radius) var(--tsg-radius) 0;
	color: var(--tsg-text);
	font-size: 1.07em;
	font-style: normal;
	margin: 2em 0;
	padding: 24px 28px;
}

.tsg-design-active hr {
	border: 0;
	border-top: 1px solid var(--tsg-line);
	margin: 2.4em 0;
}

/* Lists */
.tsg-design-active .entry-content ul:not([class]),
.tsg-design-active .entry-content ol:not([class]) {
	padding-left: 1.35em;
}

.tsg-design-active .entry-content li::marker {
	color: var(--tsg-accent);
	font-weight: 850;
}

.tsg-design-active .entry-content li + li {
	margin-top: 0.42em;
}

/* Buttons and forms */
.tsg-design-active button,
.tsg-design-active input[type="button"],
.tsg-design-active input[type="reset"],
.tsg-design-active input[type="submit"],
.tsg-design-active .button,
.tsg-design-active .wp-element-button,
.tsg-design-active .wp-block-button__link,
.tsg-design-active .tsg-button {
	appearance: none;
	background: var(--tsg-accent);
	border: 0;
	border-radius: 10px;
	box-shadow: 0 8px 18px rgba(201, 29, 69, 0.2);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--tsg-font);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.25;
	min-height: 48px;
	padding: 13px 21px;
	text-align: center;
	text-decoration: none;
}

.tsg-design-active button:hover,
.tsg-design-active input[type="button"]:hover,
.tsg-design-active input[type="reset"]:hover,
.tsg-design-active input[type="submit"]:hover,
.tsg-design-active .button:hover,
.tsg-design-active .wp-element-button:hover,
.tsg-design-active .wp-block-button__link:hover,
.tsg-design-active .tsg-button:hover {
	background: var(--tsg-accent-hover);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(201, 29, 69, 0.25);
}

.tsg-design-active .tsg-button--primary {
	background: var(--tsg-cta);
	box-shadow: 0 8px 18px rgba(92, 59, 196, 0.22);
}

.tsg-design-active .tsg-button--primary:hover,
.tsg-design-active .tsg-button--primary:focus {
	background: var(--tsg-cta-hover);
	box-shadow: 0 10px 24px rgba(92, 59, 196, 0.28);
}

.tsg-design-active .tsg-button--secondary {
	background: var(--tsg-surface);
	border: 1px solid var(--tsg-line);
	box-shadow: none;
	color: var(--tsg-plum);
}

.tsg-design-active .tsg-button--secondary:hover,
.tsg-design-active .tsg-button--secondary:focus {
	background: var(--tsg-danger-bg);
	border-color: rgba(201, 29, 69, 0.34);
	color: var(--tsg-accent-hover);
}

.tsg-design-active input[type="text"],
.tsg-design-active input[type="email"],
.tsg-design-active input[type="url"],
.tsg-design-active input[type="password"],
.tsg-design-active input[type="search"],
.tsg-design-active input[type="number"],
.tsg-design-active input[type="tel"],
.tsg-design-active select,
.tsg-design-active textarea {
	background: #fff;
	border: 1px solid #cfc7ca;
	border-radius: 9px;
	color: var(--tsg-text);
	font: inherit;
	padding: 12px 14px;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.tsg-design-active input:focus,
.tsg-design-active select:focus,
.tsg-design-active textarea:focus {
	border-color: var(--tsg-accent);
	box-shadow: 0 0 0 4px rgba(201, 29, 69, 0.11);
	outline: 0;
}

/* Tables */
.tsg-design-active .entry-content table,
.tsg-design-active .widget table {
	background: var(--tsg-surface);
	border: 1px solid var(--tsg-line);
	border-collapse: separate;
	border-radius: var(--tsg-radius);
	border-spacing: 0;
	box-shadow: var(--tsg-shadow-sm);
	display: block;
	overflow-x: auto;
	width: 100%;
}

.tsg-design-active table th,
.tsg-design-active table td {
	border: 0;
	border-bottom: 1px solid var(--tsg-line);
	padding: 15px 17px;
	text-align: left;
	vertical-align: top;
}

.tsg-design-active table th {
	background: var(--tsg-plum);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.tsg-design-active table tr:last-child td {
	border-bottom: 0;
}

.tsg-design-active table tbody tr:nth-child(even) td {
	background: #fcfaf9;
}

/* Blog and archive cards */
.tsg-design-active.blog .site-main,
.tsg-design-active.archive .site-main,
.tsg-design-active.search .site-main {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px;
}

.tsg-design-active.blog .site-main > article,
.tsg-design-active.archive .site-main > article,
.tsg-design-active.search .site-main > article {
	margin: 0;
}

.tsg-design-active.blog .site-main .inside-article,
.tsg-design-active.archive .site-main .inside-article,
.tsg-design-active.search .site-main .inside-article {
	height: 100%;
	padding: 28px;
}

.tsg-design-active .post-image img,
.tsg-design-active .featured-image img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
}

.tsg-design-active .read-more {
	font-weight: 800;
}

.tsg-design-active .paging-navigation {
	grid-column: 1 / -1;
}

/* Sidebar */
.tsg-design-active .widget-area .widget {
	background: var(--tsg-surface);
	border: 1px solid var(--tsg-line);
	border-radius: var(--tsg-radius);
	box-shadow: var(--tsg-shadow-sm);
	padding: 24px;
}

.tsg-design-active .widget-title {
	font-size: 21px;
	margin-bottom: 16px;
}

.tsg-design-active .widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tsg-design-active .widget li {
	border-bottom: 1px solid var(--tsg-line);
	padding: 10px 0;
}

.tsg-design-active .widget li:last-child {
	border-bottom: 0;
}

/* Comments */
.tsg-design-active .comments-area {
	background: var(--tsg-surface);
	border: 1px solid var(--tsg-line);
	border-radius: var(--tsg-radius-lg);
	margin-top: 28px;
	padding: clamp(25px, 4vw, 45px);
}

/* Pagination */
.tsg-design-active .page-numbers {
	background: var(--tsg-surface);
	border: 1px solid var(--tsg-line);
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	min-width: 42px;
	padding: 8px 12px;
	text-decoration: none;
}

.tsg-design-active .page-numbers.current,
.tsg-design-active .page-numbers:hover {
	background: var(--tsg-accent);
	border-color: var(--tsg-accent);
	color: #fff;
}

/* Reusable editorial components */
.tsg-notice {
	border: 1px solid rgba(92, 59, 196, 0.22);
	border-left: 5px solid var(--tsg-cta);
	border-radius: var(--tsg-radius);
	margin: 28px 0;
	padding: 20px 22px;
}

.tsg-notice--info {
	background: var(--tsg-info-bg);
}

.tsg-notice--success {
	background: var(--tsg-success-bg);
	border-color: rgba(24, 116, 79, 0.25);
	border-left-color: var(--tsg-success);
}

.tsg-notice--warning {
	background: var(--tsg-warning-bg);
	border-color: rgba(213, 163, 49, 0.38);
	border-left-color: var(--tsg-gold);
}

.tsg-notice__title {
	display: block;
	font-family: var(--tsg-heading);
	font-size: 18px;
	margin-bottom: 5px;
}

.tsg-notice__content > :last-child {
	margin-bottom: 0;
}

.tsg-pros-cons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 30px 0;
}

.tsg-pros-cons__column {
	border: 1px solid var(--tsg-line);
	border-radius: var(--tsg-radius);
	padding: 22px;
}

.tsg-pros-cons__pros {
	background: var(--tsg-success-bg);
}

.tsg-pros-cons__cons {
	background: var(--tsg-danger-bg);
}

.tsg-pros-cons h3 {
	font-size: 21px;
	margin: 0 0 13px;
}

.tsg-pros-cons ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tsg-pros-cons li {
	padding-left: 27px;
	position: relative;
}

.tsg-pros-cons li::before {
	font-weight: 900;
	left: 0;
	position: absolute;
	top: 0;
}

.tsg-pros-cons__pros li::before {
	color: var(--tsg-success);
	content: "✓";
}

.tsg-pros-cons__cons li::before {
	color: var(--tsg-accent);
	content: "×";
}

/* Facts used by both the theme shortcode and the future slots plugin */
.tsg-slot-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
	gap: 10px;
	margin: 26px 0;
}

.tsg-slot-fact {
	background: #fcfaf9;
	border: 1px solid var(--tsg-line);
	border-radius: 11px;
	padding: 14px 15px;
}

.tsg-slot-fact span {
	color: var(--tsg-muted);
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.055em;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.tsg-slot-fact strong {
	color: var(--tsg-plum);
	display: block;
	font-size: 16px;
	line-height: 1.25;
}

/* Plugin-ready slot catalogue */
.tsg-slot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
	gap: 20px;
	margin: 28px 0;
}

.tsg-slot-card {
	background: var(--tsg-surface);
	border: 1px solid var(--tsg-line);
	border-radius: 17px;
	box-shadow: var(--tsg-shadow-sm);
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	position: relative;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.tsg-slot-card:hover {
	border-color: rgba(201, 29, 69, 0.35);
	box-shadow: var(--tsg-shadow);
	transform: translateY(-3px);
}

.tsg-slot-card__media {
	background: linear-gradient(135deg, #eee7e8, #f9f4f1);
	position: relative;
}

.tsg-slot-card__media img {
	aspect-ratio: 16 / 10;
	border-radius: 0;
	display: block;
	object-fit: cover;
	width: 100%;
}

.tsg-slot-card__badge {
	background: var(--tsg-accent);
	border-radius: 999px;
	color: #fff;
	font-size: 11px;
	font-weight: 850;
	left: 12px;
	letter-spacing: 0.04em;
	padding: 6px 9px;
	position: absolute;
	top: 12px;
	text-transform: uppercase;
}

.tsg-slot-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.tsg-slot-card__provider {
	color: var(--tsg-muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.045em;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.tsg-slot-card__title {
	font-size: 21px;
	margin: 0 0 11px;
}

.tsg-slot-card__title a {
	color: var(--tsg-plum);
	text-decoration: none;
}

.tsg-slot-card__title a:hover {
	color: var(--tsg-accent);
}

.tsg-slot-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 16px;
}

.tsg-slot-chip {
	background: #f4f0ef;
	border: 1px solid var(--tsg-line);
	border-radius: 999px;
	color: var(--tsg-muted);
	display: inline-flex;
	font-size: 12px;
	font-weight: 750;
	line-height: 1;
	padding: 7px 9px;
}

.tsg-slot-card__footer {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	margin-top: auto;
}

.tsg-slot-rating {
	align-items: baseline;
	display: inline-flex;
	gap: 4px;
}

.tsg-slot-rating strong {
	color: var(--tsg-plum);
	font-size: 21px;
}

.tsg-slot-rating span {
	color: var(--tsg-muted);
	font-size: 12px;
}

.tsg-slot-list {
	display: grid;
	gap: 14px;
	margin: 28px 0;
}

.tsg-slot-row {
	align-items: center;
	background: var(--tsg-surface);
	border: 1px solid var(--tsg-line);
	border-radius: 15px;
	display: grid;
	gap: 18px;
	grid-template-columns: 120px minmax(170px, 1.25fr) repeat(3, minmax(95px, 0.55fr)) minmax(135px, 0.7fr);
	padding: 15px;
}

.tsg-slot-row__image img {
	aspect-ratio: 16 / 10;
	border-radius: 10px;
	object-fit: cover;
	width: 100%;
}

.tsg-slot-row__label {
	color: var(--tsg-muted);
	display: block;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.tsg-slot-row__value {
	color: var(--tsg-plum);
	font-weight: 800;
}

.tsg-slot-filters {
	align-items: end;
	background: var(--tsg-surface);
	border: 1px solid var(--tsg-line);
	border-radius: var(--tsg-radius);
	display: grid;
	gap: 13px;
	grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
	margin: 24px 0;
	padding: 18px;
}

.tsg-slot-filters label {
	color: var(--tsg-muted);
	display: block;
	font-size: 12px;
	font-weight: 800;
	margin-bottom: 5px;
}

.tsg-slot-filters input,
.tsg-slot-filters select {
	width: 100%;
}

.tsg-slot-empty {
	background: var(--tsg-info-bg);
	border: 1px dashed rgba(92, 59, 196, 0.35);
	border-radius: var(--tsg-radius);
	color: var(--tsg-muted);
	padding: 30px;
	text-align: center;
}

/* Common FAQ markup */
.tsg-design-active details {
	background: var(--tsg-surface);
	border: 1px solid var(--tsg-line);
	border-radius: 11px;
	margin: 10px 0;
	padding: 0 19px;
}

.tsg-design-active summary {
	cursor: pointer;
	font-family: var(--tsg-heading);
	font-weight: 800;
	padding: 17px 0;
}

.tsg-design-active details[open] summary {
	border-bottom: 1px solid var(--tsg-line);
	margin-bottom: 15px;
}

/* Footer */
.tsg-design-active .site-footer,
.tsg-design-active .footer-widgets,
.tsg-design-active .site-info {
	background: var(--tsg-plum);
	color: rgba(255, 255, 255, 0.72);
}

.tsg-design-active .footer-widgets {
	border-top: 3px solid var(--tsg-accent);
	padding-top: 55px;
	padding-bottom: 40px;
}

.tsg-design-active .footer-widgets .widget-title {
	color: #fff;
}

.tsg-design-active .site-footer a {
	color: rgba(255, 255, 255, 0.84);
}

.tsg-design-active .site-footer a:hover,
.tsg-design-active .site-footer a:focus {
	color: #fff;
}

.tsg-design-active .site-info {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 14px;
	padding: 22px 20px;
}

.tsg-responsible-bar {
	background: #100d14;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
}

.tsg-responsible-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px 14px;
	padding: 15px 28px;
	text-align: center;
}

.tsg-responsible-bar strong {
	color: #fff;
}

/* Refined footer navigation */
.tsg-design-active .site-footer .widget ul,
.tsg-design-active .footer-widgets .widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tsg-design-active .site-footer .widget li,
.tsg-design-active .footer-widgets .widget li {
	border: 0;
	margin: 0;
	padding: 0;
}

.tsg-design-active .footer-widgets .widget_nav_menu ul,
.tsg-design-active .footer-widgets .widget_pages ul,
.tsg-design-active .footer-widgets .widget_categories ul {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 9px;
}

.tsg-design-active .footer-widgets .widget_nav_menu a,
.tsg-design-active .footer-widgets .widget_pages a,
.tsg-design-active .footer-widgets .widget_categories a {
	align-items: center;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 9px;
	color: rgba(255, 255, 255, 0.82);
	display: flex;
	min-height: 44px;
	padding: 9px 12px;
	text-decoration: none;
	text-underline-offset: 0;
}

.tsg-design-active .footer-widgets .widget_nav_menu a:hover,
.tsg-design-active .footer-widgets .widget_nav_menu a:focus,
.tsg-design-active .footer-widgets .widget_pages a:hover,
.tsg-design-active .footer-widgets .widget_pages a:focus,
.tsg-design-active .footer-widgets .widget_categories a:hover,
.tsg-design-active .footer-widgets .widget_categories a:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.16);
	color: #fff;
	transform: translateY(-1px);
}

.tsg-design-active .site-info .footer-bar,
.tsg-design-active .site-info .footer-bar .widget,
.tsg-design-active .site-info .widget_nav_menu {
	margin: 0;
}

.tsg-design-active .site-info .footer-bar .widget_nav_menu ul,
.tsg-design-active .site-info > .inside-site-info .widget_nav_menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px 8px;
}

.tsg-design-active .site-info .footer-bar .widget_nav_menu a,
.tsg-design-active .site-info > .inside-site-info .widget_nav_menu a {
	background: rgba(255, 255, 255, 0.045);
	border: 0;
	border-radius: 7px;
	color: rgba(255, 255, 255, 0.78);
	display: inline-flex;
	padding: 7px 10px;
	text-decoration: none;
}

.tsg-design-active .site-info .footer-bar .widget_nav_menu a:hover,
.tsg-design-active .site-info .footer-bar .widget_nav_menu a:focus,
.tsg-design-active .site-info > .inside-site-info .widget_nav_menu a:hover,
.tsg-design-active .site-info > .inside-site-info .widget_nav_menu a:focus {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.tsg-design-active .site-footer a,
.tsg-design-active .site-footer a:visited {
	text-decoration: none;
}

.tsg-design-active .inside-footer-widgets {
	align-items: flex-start;
}

.tsg-design-active .inside-footer-widgets > div {
	min-width: 0;
}

.tsg-design-active .footer-widgets .widget_nav_menu li,
.tsg-design-active .footer-widgets .widget_pages li,
.tsg-design-active .footer-widgets .widget_categories li {
	width: 100%;
}

/* Responsive */
@media (max-width: 1050px) {
	.tsg-slot-row {
		grid-template-columns: 110px minmax(180px, 1.4fr) repeat(2, minmax(90px, 0.6fr));
	}

	.tsg-slot-row > :nth-child(5),
	.tsg-slot-row > :nth-child(6) {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	.admin-bar.tsg-design-active.tsg-sticky-header .site-header {
		top: 46px;
	}

	.tsg-design-active .inside-header {
		min-height: 68px;
		padding: 10px 18px;
	}

	.tsg-design-active .site-logo a {
		border-radius: 10px;
		padding: 6px 10px;
	}

	.tsg-design-active .site-logo img {
		max-height: 42px;
		max-width: 220px;
	}

	.tsg-design-active .site-content {
		padding: 22px 14px 36px;
	}

	.tsg-design-active .inside-article {
		border-radius: 15px;
		padding: 24px 19px;
	}

	.tsg-design-active.blog .site-main,
	.tsg-design-active.archive .site-main,
	.tsg-design-active.search .site-main {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.tsg-pros-cons {
		grid-template-columns: 1fr;
	}

	.tsg-slot-row {
		grid-template-columns: 100px 1fr;
	}

	.tsg-slot-row > * {
		grid-column: auto !important;
	}

	.tsg-slot-row__image {
		grid-row: span 2;
	}

	.tsg-responsible-bar__inner {
		align-items: center;
		flex-direction: column;
		gap: 2px;
		padding: 14px 18px;
	}

	.tsg-design-active table th,
	.tsg-design-active table td {
		padding: 12px 13px;
	}

	.tsg-design-active .footer-widgets {
		padding-top: 36px;
		padding-bottom: 28px;
	}

	.tsg-design-active .footer-widgets .widget_nav_menu a,
	.tsg-design-active .footer-widgets .widget_pages a,
	.tsg-design-active .footer-widgets .widget_categories a {
		font-size: 15px;
		line-height: 1.3;
		min-height: 46px;
		padding: 10px 11px;
	}

	.tsg-design-active .site-info {
		padding: 18px 14px 22px;
	}
}

@media (max-width: 480px) {
	.tsg-design-active h1 {
		font-size: 34px;
	}

	.tsg-design-active h2 {
		font-size: 27px;
	}

	.tsg-slot-grid {
		grid-template-columns: 1fr;
	}

	.tsg-slot-row {
		grid-template-columns: 82px 1fr;
		gap: 12px;
		padding: 12px;
	}

	.tsg-design-active .tsg-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tsg-design-active *,
	.tsg-design-active *::before,
	.tsg-design-active *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
