.tnstack-custom-gradient-page {
	background-color: #050814 !important;
	background-image: none !important;
}

.tnstack-resources-page,
.tnstack-resources {
	--tnstack-res-primary: var(--theme-palette-color-1, #2d6bff);
	--tnstack-res-primary-dark: var(--theme-palette-color-2, #1a2b5c);
	--tnstack-res-primary-rgb: 45, 107, 255;
	--tnstack-res-primary-dark-rgb: 26, 43, 92;
	--tnstack-res-glow: rgba(var(--tnstack-res-primary-rgb), 0.35);
	--tnstack-res-surface: #0c0c0c;
	--tnstack-res-border: rgba(255, 255, 255, 0.11);
	--tnstack-res-border-light: rgba(255, 255, 255, 0.13);
	--tnstack-res-text: var(--theme-palette-color-3, #d2d7dc);
	--tnstack-res-heading: var(--theme-palette-color-4, #fff);
	--tnstack-res-ease: cubic-bezier(0.4, 0, 0.2, 1);

	font-family: var(--theme-font-family, Manrope, sans-serif);
}

.tnstack-resources-page {
	background-color: var(--tnstack-res-page-bg, var(--theme-palette-color-8, #000));
	background-image:
		radial-gradient(circle at 88% 12%, rgba(var(--tnstack-res-primary-rgb), 0.17), transparent 27%),
		radial-gradient(circle at 7% 58%, rgba(111, 66, 255, 0.1), transparent 29%),
		radial-gradient(circle at 68% 91%, rgba(0, 203, 184, 0.08), transparent 25%),
		linear-gradient(180deg, rgba(3, 6, 13, 0.3), rgba(0, 0, 0, 0.74));
}

.tnstack-resources.tnstack-resources--list {
	padding-top: 32px;
	padding-bottom: 48px;
}

.tnstack-resources {
	max-width: var(--theme-normal-container-max-width, 1290px);
	margin: 0 auto;
	padding: 0 24px 100px;
}

/* ── Hero ── */
.tnstack-resources__hero {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 220px calc(50vw - 50% + 24px) 110px;
	overflow: hidden;
	background:
		radial-gradient(circle at 68% 26%, rgba(var(--tnstack-res-primary-rgb), 0.3), transparent 30%),
		radial-gradient(circle at 92% 76%, rgba(65, 208, 255, 0.11), transparent 24%),
		linear-gradient(132deg, #02050b 0%, #0a1020 54%, #04070e 100%);
	border-bottom: 1px solid var(--tnstack-res-border-light);
}

.tnstack-resources__hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.tnstack-resources__hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, rgba(0, 0, 0, 0.77) 0%, rgba(0, 0, 0, 0.24) 44%, rgba(5, 8, 16, 0.76) 100%),
		radial-gradient(ellipse 75% 55% at 72% 38%, rgba(var(--tnstack-res-primary-rgb), 0.16) 0%, transparent 68%);
}

.tnstack-resources__hero-grid {
	position: absolute;
	inset: 0;
	opacity: 0.32;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(180deg, #000 15%, transparent 92%);
}

.tnstack-resources__particles {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.tnstack-resources__particle {
	position: absolute;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(var(--tnstack-res-primary-rgb), 0.75);
	box-shadow: 0 0 8px rgba(var(--tnstack-res-primary-rgb), 0.5);
	opacity: 0;
	animation:
		tnstack-res-particle-fade calc(4s + var(--i) * 0.35s) ease-in-out infinite,
		tnstack-res-particle-drift calc(8s + var(--i) * 0.5s) ease-in-out infinite;
	animation-delay: calc(var(--i) * -0.65s);
	left: calc((var(--i) * 19 + 7) * 1%);
	top: calc((var(--i) * 13 + 11) * 1%);
}

@keyframes tnstack-res-particle-fade {
	0%, 100% { opacity: 0; transform: scale(0.6); }
	45%, 55% { opacity: 0.85; transform: scale(1); }
}

@keyframes tnstack-res-particle-drift {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(12px, -18px); }
}

.tnstack-resources__scanline {
	position: absolute;
	inset: 0;
	overflow: hidden;
	opacity: 0.5;
}

.tnstack-resources__scanline::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 3px,
		rgba(0, 0, 0, 0.04) 3px,
		rgba(0, 0, 0, 0.04) 4px
	);
}

.tnstack-resources__scanline::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 120px;
	background: linear-gradient(180deg, transparent, rgba(var(--tnstack-res-primary-rgb), 0.06), transparent);
	animation: tnstack-res-scan 10s linear infinite;
}

@keyframes tnstack-res-scan {
	0% { top: -120px; }
	100% { top: 100%; }
}

.tnstack-resources__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	animation: tnstack-res-float 8s ease-in-out infinite;
	will-change: transform;
}

.tnstack-resources__hero.is-interactive .tnstack-resources__orb {
	animation: none;
}

.tnstack-resources__orb--1 {
	top: 12%;
	right: 10%;
	width: 280px;
	height: 280px;
	background: rgba(var(--tnstack-res-primary-rgb), 0.24);
}

.tnstack-resources__orb--2 {
	bottom: 18%;
	left: 48%;
	width: 200px;
	height: 200px;
	background: rgba(var(--tnstack-res-primary-rgb), 0.12);
	animation-delay: -3s;
}

.tnstack-resources__orb--3 {
	top: 38%;
	left: 6%;
	width: 130px;
	height: 130px;
	background: rgba(255, 255, 255, 0.07);
	animation-delay: -5s;
}

@keyframes tnstack-res-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(12px, -18px) scale(1.05); }
	66% { transform: translate(-8px, 10px) scale(0.95); }
}

.tnstack-resources__hero-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
}

.tnstack-resources__kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 20px;
	padding: 8px 16px 8px 12px;
	border: 1px solid rgba(var(--tnstack-res-primary-rgb), 0.35);
	border-radius: 999px;
	background: rgba(var(--tnstack-res-primary-rgb), 0.1);
	color: var(--tnstack-res-primary);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.tnstack-resources__kicker-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--tnstack-res-primary);
	box-shadow: 0 0 12px var(--tnstack-res-glow);
	animation: tnstack-res-pulse 2s ease-in-out infinite;
}

@keyframes tnstack-res-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(1.3); }
}

.tnstack-resources__title {
	margin: 0 0 20px;
	font-size: clamp(2.4rem, 4.8vw, 3.5rem);
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
	color: var(--tnstack-res-heading);
	background: linear-gradient(135deg, #fff 28%, rgba(var(--tnstack-res-primary-rgb), 0.92) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.tnstack-resources__subtitle {
	margin: 0 0 32px;
	max-width: 540px;
	font-size: 1.2rem;
	line-height: 1.65;
	color: var(--tnstack-res-text);
}

.tnstack-resources__hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.tnstack-resources__hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 15px 28px;
	border-radius: 8px;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.65;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.25s var(--tnstack-res-ease), background 0.25s var(--tnstack-res-ease), box-shadow 0.25s var(--tnstack-res-ease);
}

.tnstack-resources__hero-btn svg {
	width: 18px;
	height: 18px;
	transition: transform 0.25s var(--tnstack-res-ease);
}

.tnstack-resources__hero-btn--primary {
	background: var(--tnstack-res-primary);
	color: #fff;
	border: none;
}

.tnstack-resources__hero-btn--primary:hover {
	background: var(--tnstack-res-primary-dark);
	color: var(--tnstack-res-text);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px var(--tnstack-res-glow);
}

.tnstack-resources__hero-btn--primary:hover svg {
	transform: translateY(4px);
}

.tnstack-resources__hero-panel {
	position: relative;
	padding: 36px 30px 28px;
	border: 1px solid var(--tnstack-res-border-light);
	border-radius: 16px;
	background: linear-gradient(160deg, rgb(45 107 255 / 22%) 0%, rgba(12, 12, 12, 0.92) 55%);
	backdrop-filter: blur(12px);
	overflow: hidden;
	will-change: transform;
}

.tnstack-resources__panel-glow {
	position: absolute;
	top: -40%;
	right: -20%;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: var(--tnstack-res-glow);
	filter: blur(50px);
	animation: tnstack-res-float 6s ease-in-out infinite;
}

.tnstack-resources__stats {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-bottom: 22px;
}

.tnstack-resources__stat {
	padding: 18px 14px;
	border: 1px solid var(--tnstack-res-border);
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.38);
	text-align: center;
	transition: transform 0.3s var(--tnstack-res-ease), border-color 0.3s var(--tnstack-res-ease), box-shadow 0.3s var(--tnstack-res-ease);
}

.tnstack-resources__stat:hover {
	transform: translateY(-4px);
	border-color: rgba(var(--tnstack-res-primary-rgb), 0.42);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.tnstack-resources__stat-value {
	display: block;
	margin-bottom: 4px;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--tnstack-res-heading);
	font-variant-numeric: tabular-nums;
}

.tnstack-resources__stat-value.is-counting {
	color: var(--tnstack-res-primary);
}

.tnstack-resources__stat-label {
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--tnstack-res-text);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.tnstack-resources__float-cards {
	position: relative;
	z-index: 1;
	height: 72px;
}

.tnstack-resources__float-card {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid var(--tnstack-res-border);
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.45);
	color: var(--tnstack-res-text);
	font-size: 0.8rem;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.tnstack-resources__float-card svg {
	width: 16px;
	height: 16px;
	color: var(--tnstack-res-primary);
}

.tnstack-resources__float-icon {
	font-size: 1rem;
	line-height: 1;
}

.tnstack-resources__float-card--1 {
	top: 0;
	left: 4%;
	animation: tnstack-res-float-card-1 7s ease-in-out infinite;
}

.tnstack-resources__float-card--2 {
	top: 8px;
	right: 2%;
	animation: tnstack-res-float-card-2 8s ease-in-out infinite;
}

.tnstack-resources__float-card--3 {
	bottom: 0;
	left: 38%;
	animation: tnstack-res-float-card-3 6.5s ease-in-out infinite;
}

@keyframes tnstack-res-float-card-1 {
	0%, 100% { transform: translate(0, 0) rotate(-1deg); }
	50% { transform: translate(8px, -10px) rotate(1deg); }
}

@keyframes tnstack-res-float-card-2 {
	0%, 100% { transform: translate(0, 0) rotate(1deg); }
	50% { transform: translate(-10px, -8px) rotate(-1deg); }
}

@keyframes tnstack-res-float-card-3 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(6px, -12px); }
}

.tnstack-resources__scroll-hint {
	position: absolute;
	bottom: 28px;
	left: 50%;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 26px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.22);
	border-radius: 14px;
	text-decoration: none;
	transform: translateX(-50%);
	transition: border-color 0.25s ease, transform 0.25s var(--tnstack-res-ease);
}

.tnstack-resources__scroll-hint:hover {
	border-color: rgba(var(--tnstack-res-primary-rgb), 0.55);
	transform: translateX(-50%) translateY(2px);
}

.tnstack-resources__scroll-hint span {
	display: block;
	width: 4px;
	height: 8px;
	margin-top: 8px;
	border-radius: 2px;
	background: var(--tnstack-res-primary);
	animation: tnstack-res-scroll-dot 2s ease-in-out infinite;
}

@keyframes tnstack-res-scroll-dot {
	0%, 100% { opacity: 1; transform: translateY(0); }
	50% { opacity: 0.35; transform: translateY(10px); }
}

/* ── Body ── */
.tnstack-resources__body {
	padding-top: 60px;
	scroll-margin-top: 120px;
}

.tnstack-resources__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 36px;
}

.tnstack-resources__filters {
	position: relative;
	display: inline-flex;
	gap: 4px;
	padding: 5px;
	border: 1px solid var(--tnstack-res-border);
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.4);
}

.tnstack-resources__filter-indicator {
	position: absolute;
	top: 5px;
	left: 5px;
	height: calc(100% - 10px);
	border-radius: 7px;
	background: var(--tnstack-res-primary);
	box-shadow: 0 4px 16px var(--tnstack-res-glow);
	transition: transform 0.35s var(--tnstack-res-ease), width 0.35s var(--tnstack-res-ease);
	pointer-events: none;
	z-index: 0;
}

.tnstack-resources__filter {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: none;
	border-radius: 7px;
	background: transparent;
	color: var(--tnstack-res-text);
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: color 0.25s ease;
}

.tnstack-resources__filter.is-active {
	color: #fff;
}

.tnstack-resources__filter-count {
	padding: 2px 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	font-size: 0.7rem;
	transition: background 0.25s ease, transform 0.25s var(--tnstack-res-ease);
}

.tnstack-resources__filter.is-active .tnstack-resources__filter-count {
	background: rgba(255, 255, 255, 0.2);
}

.tnstack-resources__filter:hover .tnstack-resources__filter-count {
	transform: scale(1.05);
}

.tnstack-resources__search {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 280px;
	padding: 10px 14px;
	border: 1px solid var(--tnstack-res-border);
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.35);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.tnstack-resources__search:focus-within {
	border-color: var(--tnstack-res-primary);
	background: rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 0 3px rgba(var(--tnstack-res-primary-rgb), 0.15);
}

.tnstack-resources__search svg {
	width: 18px;
	height: 18px;
	color: var(--tnstack-res-text);
	flex-shrink: 0;
	transition: color 0.25s ease;
}

.tnstack-resources__search:focus-within svg {
	color: var(--tnstack-res-primary);
}

.tnstack-resources__search input {
	flex: 1;
	border: none;
	background: transparent;
	color: var(--tnstack-res-heading);
	font-family: inherit;
	font-size: 0.9375rem;
	outline: none;
}

.tnstack-resources__search input::placeholder {
	color: rgba(210, 215, 220, 0.5);
}

.tnstack-resources__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

.tnstack-resources__card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 24px;
	border: 1px solid var(--tnstack-res-border);
	border-radius: 14px;
	background: linear-gradient(165deg, rgba(var(--tnstack-res-primary-dark-rgb), 0.35) 0%, var(--tnstack-res-surface) 60%);
	transition:
		transform 0.35s var(--tnstack-res-ease),
		border-color 0.3s var(--tnstack-res-ease),
		box-shadow 0.3s var(--tnstack-res-ease),
		opacity 0.35s var(--tnstack-res-ease),
		filter 0.35s var(--tnstack-res-ease);
	transform-style: preserve-3d;
	will-change: transform, opacity;
}

.tnstack-resources__card:hover {
	border-color: rgba(var(--tnstack-res-primary-rgb), 0.45);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.tnstack-resources__card.is-featured {
	border-color: rgba(var(--tnstack-res-primary-rgb), 0.5);
	background: linear-gradient(165deg, rgba(var(--tnstack-res-primary-rgb), 0.18) 0%, var(--tnstack-res-surface) 62%);
	box-shadow: 0 16px 40px rgba(var(--tnstack-res-primary-rgb), 0.12);
}

.tnstack-resources__card.is-hidden {
	display: none;
}

.tnstack-resources__card.is-filtered-in {
	animation: tnstack-res-card-in 0.45s var(--tnstack-res-ease) both;
}

@keyframes tnstack-res-card-in {
	from {
		opacity: 0;
		transform: translateY(16px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.tnstack-resources__card-shine {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	overflow: hidden;
	pointer-events: none;
}

.tnstack-resources__card-shine::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -60%;
	width: 40%;
	height: 200%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
	animation: tnstack-res-shine 4s ease-in-out infinite;
}

@keyframes tnstack-res-shine {
	0%, 100% { transform: translateX(0) rotate(25deg); }
	50% { transform: translateX(350%) rotate(25deg); }
}

.tnstack-resources__featured-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 1;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--tnstack-res-primary);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	animation: tnstack-res-badge-pop 0.5s var(--tnstack-res-ease) both;
}

@keyframes tnstack-res-badge-pop {
	from { transform: scale(0.8); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.tnstack-resources__card-icon {
	width: 64px;
	height: 64px;
	margin-bottom: 16px;
	border-radius: 12px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s var(--tnstack-res-ease);
}

.tnstack-resources__card:hover .tnstack-resources__card-icon {
	transform: scale(1.05);
}

.tnstack-resources__card-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tnstack-resources__type-icon {
	font-size: 1.75rem;
	line-height: 1;
}

.tnstack-resources__card-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.tnstack-resources__type {
	padding: 3px 10px;
	border-radius: 999px;
	background: rgba(var(--tnstack-res-primary-rgb), 0.15);
	color: var(--tnstack-res-primary);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
}

.tnstack-resources__version {
	font-size: 0.8rem;
	color: rgba(210, 215, 220, 0.7);
}

.tnstack-resources__card-title {
	margin: 0 0 10px;
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.35;
	color: var(--tnstack-res-heading);
}

.tnstack-resources__card-excerpt {
	margin: 0 0 14px;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--tnstack-res-text);
}

.tnstack-resources__card-info {
	flex: 1;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	font-size: 0.82rem;
	line-height: 1.7;
	color: rgba(210, 215, 220, 0.85);
}

.tnstack-resources__card-info strong {
	color: var(--tnstack-res-heading);
	font-weight: 600;
}

.tnstack-resources__card-footer {
	margin-top: 10px;
}

.tnstack-resources__download {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 13px 20px;
	border-radius: 8px;
	background: var(--tnstack-res-primary);
	color: #fff !important;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.tnstack-resources__download svg {
	width: 18px;
	height: 18px;
	transition: transform 0.25s ease;
}

.tnstack-resources__download:hover {
	background: var(--tnstack-res-primary-dark);
	transform: scale(1.02);
	box-shadow: 0 10px 24px var(--tnstack-res-glow);
}

.tnstack-resources__download:hover svg {
	transform: translateY(3px);
}

.tnstack-resources__unavailable {
	display: block;
	padding: 13px 20px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(210, 215, 220, 0.6);
	font-size: 0.9rem;
	font-weight: 600;
	text-align: center;
}

.tnstack-resources__empty,
.tnstack-resources__empty-search {
	padding: 48px 0;
	text-align: center;
	color: var(--tnstack-res-text);
	font-size: 1rem;
}

.tnstack-res-reveal,
.tnstack-res-animate {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s var(--tnstack-res-ease) var(--delay, 0s), transform 0.7s var(--tnstack-res-ease) var(--delay, 0s);
}

.tnstack-res-reveal.is-visible,
.tnstack-res-animate.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1024px) {
	.tnstack-resources__hero-layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.tnstack-resources__hero-panel {
		max-width: 520px;
	}
}

@media (max-width: 768px) {
	.tnstack-resources__hero {
		padding: 170px calc(50vw - 50% + 16px) 80px;
	}

	.tnstack-resources__stats {
		gap: 10px;
	}

	.tnstack-resources__stat-value {
		font-size: 1.25rem;
	}

	.tnstack-resources__float-cards {
		height: 60px;
	}

	.tnstack-resources__float-card {
		padding: 8px 10px;
		font-size: 0.72rem;
	}

	.tnstack-resources__toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.tnstack-resources__search {
		min-width: 0;
		width: 100%;
	}

	.tnstack-resources__filters {
		width: 100%;
		justify-content: space-between;
	}

	.tnstack-resources__filter {
		flex: 1;
		justify-content: center;
		padding: 10px 8px;
	}

	.tnstack-resources__scroll-hint {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tnstack-res-reveal,
	.tnstack-res-animate,
	.tnstack-resources__orb,
	.tnstack-resources__kicker-dot,
	.tnstack-resources__particle,
	.tnstack-resources__scanline::after,
	.tnstack-resources__float-card,
	.tnstack-resources__panel-glow,
	.tnstack-resources__scroll-hint span,
	.tnstack-resources__card-shine::after {
		animation: none !important;
		transition: none !important;
	}

	.tnstack-res-reveal,
	.tnstack-res-animate {
		opacity: 1;
		transform: none;
	}

	.tnstack-resources__card.is-hidden {
		display: none;
	}
}
