/* ==========================================================================
   SocialToolSpot — Design Tokens (LOCKED — do not change without Zain's ok)
   ========================================================================== */

:root {
	/* Brand colors */
	--sts-primary: #FF5C35;      /* orange — CTAs, links, highlights */
	--sts-accent: #0EA5E9;       /* blue — tags, badges, secondary icons */
	--sts-badge-howto: #7C3AED;  /* purple — Tutorial/How-To badge (Screen 5) */

	/* Neutrals */
	--sts-bg: #FFFFFF;
	--sts-bg-alt: #F8FAFC;
	--sts-text: #1A1A2E;
	--sts-text-muted: #6B7280;
	--sts-border: #E5E7EB;

	/* Typography */
	--sts-font-heading: 'Poppins', sans-serif;
	--sts-font-body: 'Nunito', sans-serif;

	/* Shape */
	--sts-radius-btn: 50px;
	--sts-radius-card: 16px;

	/* Layout */
	--sts-container-width: 1200px;
	--sts-space-1: 8px;
	--sts-space-2: 16px;
	--sts-space-3: 24px;
	--sts-space-4: 40px;
	--sts-space-5: 64px;
}

/* Tighter spacing scale on small screens — cascades to every section/card
   that uses var(--sts-space-*), instead of patching each component. */
@media (max-width: 640px) {
	:root {
		--sts-space-3: 18px;
		--sts-space-4: 28px;
		--sts-space-5: 40px;
	}
}

@media (max-width: 480px) {
	:root {
		--sts-space-2: 12px;
		--sts-space-3: 16px;
		--sts-space-4: 24px;
		--sts-space-5: 32px;
	}

	body {
		font-size: 15px;
	}

	h1 { font-size: 26px; }
	h2 { font-size: 20px; }
	h3 { font-size: 17px; }
}

/* ==========================================================================
   Reset / base
   ========================================================================== */

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

body {
	margin: 0;
	font-family: var(--sts-font-body);
	color: var(--sts-text);
	background: var(--sts-bg);
	line-height: 1.6;
	font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--sts-font-heading);
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 var(--sts-space-2);
}

a {
	color: var(--sts-primary);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.sts-container {
	max-width: var(--sts-container-width);
	margin: 0 auto;
	padding: 0 var(--sts-space-3);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.sts-btn {
	display: inline-block;
	font-family: var(--sts-font-heading);
	font-weight: 700;
	padding: 12px 28px;
	border-radius: var(--sts-radius-btn);
	background: var(--sts-primary);
	color: #fff;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.15s ease;
}

.sts-btn:hover {
	opacity: 0.9;
	text-decoration: none;
	color: #fff;
}

.sts-btn--outline {
	background: transparent;
	color: var(--sts-primary);
	border: 2px solid var(--sts-primary);
}

.sts-btn--outline:hover {
	color: var(--sts-primary);
}

/* ==========================================================================
   Badges (content type — Screen 5)
   ========================================================================== */

.sts-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	font-family: var(--sts-font-heading);
	padding: 4px 12px;
	border-radius: var(--sts-radius-btn);
	color: #fff;
}

.sts-badge--review { background: var(--sts-primary); }
.sts-badge--bestof  { background: var(--sts-accent); }
.sts-badge--howto   { background: var(--sts-badge-howto); }

/* ==========================================================================
   Stars
   ========================================================================== */

.sts-stars {
	color: var(--sts-primary);
	letter-spacing: 1px;
}

.sts-star--empty {
	color: var(--sts-border);
}

/* ==========================================================================
   Fallback template (index.php) — minimal styling, real templates override
   ========================================================================== */

.sts-fallback-article {
	padding: var(--sts-space-3) 0;
	border-bottom: 1px solid var(--sts-border);
}

.sts-fallback-title a {
	color: var(--sts-text);
}

/* ==========================================================================
   Icons (generic sizing — inline SVGs from sts_icon())
   ========================================================================== */

.sts-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.sts-icon-bg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
}

.sts-icon-bg .sts-icon {
	width: 16px;
	height: 16px;
}

.sts-icon-bg--orange-soft { background: #FFE4DA; color: var(--sts-primary); }
.sts-icon-bg--blue-soft   { background: #DFF3FC; color: var(--sts-accent); }
.sts-icon-bg--orange-solid { background: var(--sts-primary); color: #fff; }
.sts-icon-bg--blue-solid   { background: var(--sts-accent); color: #fff; }

/* ==========================================================================
   Logo
   ========================================================================== */

.sts-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.sts-logo:hover {
	text-decoration: none;
}

.sts-logo__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--sts-primary);
	color: #fff;
}

.sts-logo__mark-icon {
	width: 20px;
	height: 20px;
}

.sts-logo__text {
	font-family: var(--sts-font-heading);
	font-weight: 700;
	font-size: 20px;
	color: var(--sts-text);
	white-space: nowrap;
}

.sts-logo__tool {
	color: var(--sts-primary);
}

/* ==========================================================================
   Header — shared
   ========================================================================== */

.sts-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--sts-border);
	transition: box-shadow 0.2s ease;
}

.sts-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sts-space-3);
	padding: 16px var(--sts-space-3);
	position: relative;
}

.sts-header.is-scrolled .sts-header__inner {
	padding: 10px var(--sts-space-3);
}

.sts-header.is-scrolled {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.sts-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sts-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: transparent;
	color: var(--sts-text);
	cursor: pointer;
}

.sts-icon-btn:hover {
	background: var(--sts-bg-alt);
}

.sts-btn--sm {
	padding: 8px 20px;
	font-size: 14px;
}

/* ==========================================================================
   Desktop nav
   ========================================================================== */

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

.sts-nav__menu {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sts-nav__item {
	position: relative;
}

.sts-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--sts-text);
	font-weight: 600;
	text-decoration: none;
	padding: 8px 0;
}

.sts-nav__link:hover {
	color: var(--sts-primary);
	text-decoration: none;
}

.sts-nav__chevron .sts-icon {
	width: 14px;
	height: 14px;
	transition: transform 0.15s ease;
}

.sts-nav__item--parent.is-open .sts-nav__chevron .sts-icon {
	transform: rotate(180deg);
}

.sts-nav__item--parent.is-open > .sts-nav__link {
	color: var(--sts-primary);
}

.sts-nav__submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border-radius: var(--sts-radius-card);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
	padding: 10px;
	list-style: none;
	margin: 8px 0 0;
	z-index: 10;
}

.sts-nav--desktop .sts-nav__item--parent.is-open .sts-nav__submenu {
	display: block;
}

.sts-nav__sublink {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-radius: 10px;
	color: var(--sts-text);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}

.sts-nav__sublink:hover {
	background: var(--sts-bg-alt);
	text-decoration: none;
}

/* ==========================================================================
   Search panel
   ========================================================================== */

.sts-search-panel {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border-bottom: 1px solid var(--sts-border);
	padding: var(--sts-space-2) 0;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.sts-search-panel .search-form {
	display: flex;
	gap: 8px;
}

.sts-search-panel .search-form label {
	flex: 1;
	min-width: 0;
}

.sts-search-panel input[type="search"] {
	width: 100%;
	padding: 10px 16px;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-btn);
	font-family: var(--sts-font-body);
}

.sts-search-panel input[type="submit"] {
	padding: 10px 20px;
	border: none;
	border-radius: var(--sts-radius-btn);
	background: var(--sts-primary);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

/* ==========================================================================
   Mobile toggle + panel
   ========================================================================== */

.sts-mobile-toggle {
	display: none;
	position: relative;
}

.sts-mobile-toggle__close {
	display: none;
	position: absolute;
}

.sts-mobile-toggle[aria-expanded="true"] .sts-mobile-toggle__open {
	display: none;
}

.sts-mobile-toggle[aria-expanded="true"] .sts-mobile-toggle__close {
	display: block;
	position: static;
}

.sts-mobile-panel {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: #fff;
	overflow-y: auto;
	padding: var(--sts-space-3);
}

.sts-mobile-panel__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--sts-space-3);
}

.sts-mobile-panel__search {
	margin-bottom: var(--sts-space-3);
}

.sts-mobile-panel__search .search-form {
	display: flex;
	gap: 8px;
}

.sts-mobile-panel__search .search-form label {
	flex: 1;
	min-width: 0;
}

.sts-mobile-panel__search input[type="search"] {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-btn);
	font-family: var(--sts-font-body);
}

.sts-mobile-panel__search input[type="submit"] {
	padding: 12px 20px;
	border: none;
	border-radius: var(--sts-radius-btn);
	background: var(--sts-primary);
	color: #fff;
	font-weight: 700;
	font-family: var(--sts-font-heading);
	cursor: pointer;
	flex-shrink: 0;
}

.sts-nav__menu--mobile {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	list-style: none;
	margin: 0 0 var(--sts-space-3);
	padding: 0;
}

.sts-nav--mobile .sts-nav__item {
	border-bottom: 1px solid var(--sts-border);
}

.sts-nav--mobile .sts-nav__link {
	width: 100%;
	justify-content: space-between;
	padding: 14px 4px;
	font-size: 16px;
}

.sts-nav--mobile .sts-nav__submenu {
	display: none;
	position: static;
	box-shadow: none;
	background: var(--sts-bg-alt);
	margin: 0 0 8px;
}

.sts-nav--mobile .sts-nav__item--parent.is-open .sts-nav__submenu {
	display: block;
}

.sts-mobile-panel__subscribe {
	display: block;
	text-align: center;
	margin-bottom: var(--sts-space-3);
}

.sts-mobile-panel__social {
	display: flex;
	justify-content: center;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sts-mobile-panel__social a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--sts-bg-alt);
	color: var(--sts-text);
}

body.sts-no-scroll {
	overflow: hidden;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.sts-footer {
	background: var(--sts-text);
	color: #cbd0dc;
	margin-top: var(--sts-space-5);
}

.sts-footer .sts-logo__text,
.sts-footer .sts-logo__social,
.sts-footer .sts-logo__spot {
	color: #fff;
}

.sts-footer__top {
	display: grid;
	grid-template-columns: 1.6fr repeat(4, 1fr);
	gap: var(--sts-space-4);
	padding: var(--sts-space-5) var(--sts-space-3);
}

.sts-footer__desc {
	margin: var(--sts-space-2) 0;
	color: #9aa1b3;
	font-size: 14px;
	max-width: 32ch;
}

.sts-footer__social {
	display: flex;
	gap: 12px;
	list-style: none;
	margin: var(--sts-space-2) 0 0;
	padding: 0;
}

.sts-footer__social a {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.sts-footer__social a:hover {
	background: var(--sts-primary);
}

.sts-footer-accordion__header {
	display: none;
}

.sts-footer__col > .sts-footer-accordion__body,
.sts-footer-accordion__body {
	display: block;
}

.sts-footer .sts-footer-heading {
	font-family: var(--sts-font-heading);
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin-bottom: var(--sts-space-2);
}

.sts-footer-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sts-footer-widget li {
	margin-bottom: 10px;
}

.sts-footer-widget a {
	color: #cbd0dc;
	font-size: 14px;
	text-decoration: none;
}

.sts-footer-widget a:hover {
	color: #fff;
	text-decoration: underline;
}

.sts-footer__placeholder {
	font-size: 13px;
	color: #6b7280;
	font-style: italic;
}

.sts-footer__about-link {
	display: inline-block;
	margin-top: 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--sts-primary);
}

.sts-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sts-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: var(--sts-space-2) var(--sts-space-3);
	font-size: 13px;
	color: #9aa1b3;
}

.sts-footer__legal-menu {
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sts-footer__legal-menu a {
	color: #9aa1b3;
	font-size: 13px;
	text-decoration: none;
}

.sts-footer__legal-menu a:hover {
	color: #fff;
	text-decoration: underline;
}

/* ==========================================================================
   Responsive — 1200 / 768 / 375 (per skill's Done checklist)
   ========================================================================== */

@media (max-width: 1024px) {
	.sts-nav--desktop,
	.sts-header__subscribe {
		display: none;
	}

	.sts-mobile-toggle {
		display: inline-flex;
	}

	.sts-footer__top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.sts-footer__top {
		grid-template-columns: 1fr;
		gap: var(--sts-space-2);
		padding: var(--sts-space-4) var(--sts-space-3);
	}

	.sts-footer__col {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.sts-footer-accordion__header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 16px 0;
		background: none;
		border: none;
		color: #fff;
		font-family: var(--sts-font-heading);
		font-weight: 700;
		font-size: 16px;
		cursor: pointer;
	}

	.sts-footer-accordion__chevron .sts-icon {
		width: 18px;
		height: 18px;
		transition: transform 0.15s ease;
	}

	.sts-footer-accordion.is-open .sts-footer-accordion__chevron .sts-icon {
		transform: rotate(180deg);
	}

	.sts-footer-accordion__body {
		display: none;
		padding-bottom: 16px;
	}

	.sts-footer-accordion.is-open .sts-footer-accordion__body {
		display: block;
	}

	.sts-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 480px) {
	.sts-header__inner {
		padding: 12px var(--sts-space-2);
	}

	.sts-logo__text {
		font-size: 17px;
	}

	.sts-footer__top {
		padding-top: 48px !important;
	}

	.sts-footer__brand {
		margin-bottom: 8px;
	}
}

/* ==========================================================================
   Homepage — shared section scaffolding
   ========================================================================== */

.sts-section {
	padding: var(--sts-space-5) 0;
}

.sts-section--alt {
	background: var(--sts-bg-alt);
}

.sts-section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sts-space-2);
	margin-bottom: var(--sts-space-3);
}

.sts-section__title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 24px;
}

.sts-section--alt .sts-section__title {
	margin-bottom: var(--sts-space-3);
}

.sts-section__title .sts-icon {
	color: var(--sts-primary);
}

.sts-section__viewall {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-family: var(--sts-font-heading);
	font-size: 14px;
	color: var(--sts-primary);
	white-space: nowrap;
}

.sts-section__viewall .sts-icon {
	width: 16px;
	height: 16px;
}

.sts-section__empty {
	color: var(--sts-text-muted);
	font-style: italic;
}

.sts-btn--outline-accent {
	background: #fff;
	color: var(--sts-accent);
	border: 2px solid var(--sts-accent);
}

.sts-btn--outline-accent:hover {
	color: var(--sts-accent);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.sts-hero {
	background: var(--sts-bg-alt);
	overflow: hidden;
}

.sts-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: var(--sts-space-5);
	padding: var(--sts-space-5) var(--sts-space-3);
}

.sts-hero__title {
	font-size: 44px;
	margin-bottom: var(--sts-space-2);
}

.sts-hero__highlight {
	position: relative;
	color: var(--sts-primary);
}

.sts-hero__highlight::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 4px;
	background: var(--sts-primary);
	border-radius: 4px;
	opacity: 0.5;
}

.sts-hero__subtitle {
	font-size: 17px;
	color: var(--sts-text-muted);
	max-width: 46ch;
	margin-bottom: var(--sts-space-3);
}

.sts-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.sts-hero__actions .sts-icon {
	width: 16px;
	height: 16px;
}

.sts-hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
}

.sts-hero__mockup {
	position: relative;
	width: 100%;
	max-width: 360px;
	background: #fff;
	border-radius: var(--sts-radius-card);
	box-shadow: 0 20px 50px rgba(20, 20, 46, 0.12);
	padding: var(--sts-space-3);
}

.sts-hero__mockup-dots {
	display: flex;
	gap: 6px;
	margin-bottom: var(--sts-space-2);
}

.sts-hero__mockup-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sts-border);
}

.sts-hero__mockup-chart {
	height: 70px;
	border-radius: 10px;
	margin-bottom: var(--sts-space-2);
	background: linear-gradient(135deg, var(--sts-accent) 0%, rgba(14, 165, 233, 0.15) 100%);
	clip-path: polygon(0 70%, 15% 55%, 30% 65%, 45% 30%, 60% 45%, 75% 15%, 100% 35%, 100% 100%, 0 100%);
}

.sts-hero__mockup-row {
	display: flex;
	align-items: center;
	gap: var(--sts-space-2);
}

.sts-hero__mockup-pie {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	flex-shrink: 0;
	background: conic-gradient(var(--sts-primary) 0deg 140deg, var(--sts-accent) 140deg 260deg, var(--sts-border) 260deg 360deg);
}

.sts-hero__mockup-lines {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.sts-hero__mockup-lines span {
	display: block;
	height: 8px;
	border-radius: 4px;
	background: var(--sts-bg-alt);
}

.sts-hero__mockup-lines span:nth-child(1) { width: 90%; }
.sts-hero__mockup-lines span:nth-child(2) { width: 70%; }
.sts-hero__mockup-lines span:nth-child(3) { width: 50%; }

.sts-hero__float {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 10px 24px rgba(20, 20, 46, 0.1);
}

.sts-hero__float--instagram { top: 6%; left: 2%; color: #d6249f; }
.sts-hero__float--tiktok { top: 42%; left: -4%; color: #1A1A2E; }
.sts-hero__float--facebook { bottom: 8%; left: 8%; color: #1877f2; }

.sts-hero__bubble {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 14px;
	border-radius: var(--sts-radius-btn);
	background: #fff;
	box-shadow: 0 10px 24px rgba(20, 20, 46, 0.1);
	font-family: var(--sts-font-heading);
	font-weight: 700;
	font-size: 13px;
}

.sts-hero__bubble--like { top: 12%; right: 4%; }
.sts-hero__bubble--heart { bottom: 10%; right: -2%; background: var(--sts-primary); color: #fff; }

/* ==========================================================================
   Tool cards (Featured & Trending Tools)
   ========================================================================== */

.sts-tool-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sts-space-3);
}

.sts-card-tool {
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-card-tool__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--sts-bg-alt);
	margin-bottom: var(--sts-space-2);
}

.sts-card-tool__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sts-card-tool__logo-fallback {
	font-family: var(--sts-font-heading);
	font-weight: 700;
	font-size: 20px;
	color: var(--sts-primary);
}

.sts-card-tool__title {
	font-size: 17px;
	margin-bottom: 6px;
}

.sts-card-tool__title a {
	color: var(--sts-text);
}

.sts-card-tool__desc {
	font-size: 14px;
	color: var(--sts-text-muted);
	margin-bottom: var(--sts-space-2);
}

.sts-card-tool__rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: var(--sts-space-2);
	font-weight: 700;
	font-size: 14px;
}

.sts-card-tool__rating-num {
	color: var(--sts-text-muted);
	font-weight: 600;
}

/* ==========================================================================
   Browse by Category
   ========================================================================== */

.sts-category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sts-space-2);
}

.sts-category-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	color: var(--sts-text);
	font-weight: 700;
	font-family: var(--sts-font-heading);
	font-size: 14px;
}

.sts-category-item:hover {
	border-color: var(--sts-primary);
	text-decoration: none;
}

.sts-category-item--all {
	justify-content: space-between;
	color: var(--sts-primary);
}

.sts-category-item--all .sts-icon {
	width: 16px;
	height: 16px;
}

/* ==========================================================================
   Post cards (Best-Of / How-To grids — reused on archives)
   ========================================================================== */

.sts-post-grid {
	display: grid;
	gap: var(--sts-space-3);
}

.sts-post-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.sts-card-post {
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	overflow: hidden;
}

.sts-card-post__thumb {
	position: relative;
	display: block;
	aspect-ratio: 3 / 2;
	background: var(--sts-bg-alt);
}

.sts-card-post__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sts-card-post__badge {
	position: absolute;
	top: 12px;
	left: 12px;
}

.sts-card-post__rating {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px;
	border-radius: var(--sts-radius-btn);
	background: #fff;
	font-weight: 700;
	font-size: 12px;
	color: var(--sts-primary);
}

.sts-card-post__body {
	padding: var(--sts-space-2) var(--sts-space-2) var(--sts-space-3);
}

.sts-card-post__title {
	font-size: 16px;
	margin-bottom: 6px;
}

.sts-card-post__title a {
	color: var(--sts-text);
}

.sts-card-post__desc {
	font-size: 14px;
	color: var(--sts-text-muted);
	margin-bottom: 10px;
}

.sts-card-post__meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--sts-text-muted);
}

/* ==========================================================================
   Trust strip
   ========================================================================== */

.sts-trust-strip {
	border-top: 1px solid var(--sts-border);
	border-bottom: 1px solid var(--sts-border);
	padding: var(--sts-space-3) 0;
}

.sts-trust-strip__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--sts-space-3) var(--sts-space-4);
}

.sts-trust-strip__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-family: var(--sts-font-heading);
	font-size: 14px;
	color: var(--sts-text);
}

.sts-trust-strip__item .sts-icon {
	color: var(--sts-primary);
	width: 18px;
	height: 18px;
}

/* ==========================================================================
   Newsletter band
   ========================================================================== */

.sts-newsletter {
	background: var(--sts-accent);
	color: #fff;
	padding: var(--sts-space-4) 0;
}

.sts-newsletter__inner {
	display: flex;
	align-items: center;
	gap: var(--sts-space-3);
	flex-wrap: wrap;
}

.sts-newsletter__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	flex-shrink: 0;
}

.sts-newsletter__copy {
	flex: 1;
	min-width: 240px;
}

.sts-newsletter__copy h2 {
	font-size: 20px;
	margin-bottom: 4px;
	color: #fff;
}

.sts-newsletter__copy p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
}

.sts-newsletter__notice {
	margin: 8px 0 0;
	font-size: 14px;
	font-weight: 700;
}

.sts-newsletter__notice--success {
	color: #fff;
}

.sts-newsletter__notice--error {
	color: #FEE2E2;
}

.sts-newsletter__form {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.sts-newsletter__input {
	padding: 12px 18px;
	border: none;
	border-radius: var(--sts-radius-btn);
	font-family: var(--sts-font-body);
	min-width: 260px;
}

.sts-newsletter__submit {
	background: #fff;
	color: var(--sts-accent);
}

.sts-newsletter__submit:hover {
	color: var(--sts-accent);
}

/* ==========================================================================
   Homepage responsive — 1024 / 768 / 480
   ========================================================================== */

@media (max-width: 1024px) {
	.sts-hero__inner {
		grid-template-columns: 1fr;
	}

	.sts-hero__visual {
		order: -1;
		min-height: 260px;
	}

	.sts-tool-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sts-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.sts-post-grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.sts-hero__title {
		font-size: 32px;
	}

	.sts-hero__actions {
		flex-direction: column;
	}

	.sts-hero__actions .sts-btn {
		text-align: center;
	}

	.sts-tool-grid,
	.sts-post-grid--3 {
		grid-template-columns: 1fr;
	}

	.sts-newsletter__form {
		width: 100%;
	}

	.sts-newsletter__input {
		flex: 1;
		min-width: 0;
	}
}

@media (max-width: 480px) {
	.sts-section {
		padding: var(--sts-space-4) 0;
	}

	.sts-section__header {
		flex-wrap: wrap;
	}

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

	.sts-hero__bubble,
	.sts-hero__float {
		display: none;
	}
}

/* ==========================================================================
   Single Review (Screen 2) — breadcrumb + review header
   ========================================================================== */

.sts-review-page .sts-main {
	padding: var(--sts-space-3) 0 var(--sts-space-5);
}

.sts-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--sts-text-muted);
	margin-bottom: var(--sts-space-3);
}

.sts-breadcrumb a {
	color: var(--sts-text-muted);
}

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

.sts-review-header {
	display: flex;
	align-items: flex-start;
	gap: var(--sts-space-3);
	margin-bottom: var(--sts-space-4);
	flex-wrap: wrap;
}

.sts-review-header__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 100px;
	flex-shrink: 0;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	background: #fff;
	overflow: hidden;
}

.sts-review-header__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: var(--sts-space-2);
}

.sts-review-header__logo-fallback {
	font-family: var(--sts-font-heading);
	font-weight: 700;
	font-size: 32px;
	color: var(--sts-primary);
}

.sts-review-header__body {
	flex: 1;
	min-width: 260px;
}

.sts-review-header__title {
	font-size: 30px;
	margin-bottom: 10px;
}

.sts-review-header__byline {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--sts-text-muted);
	flex-wrap: wrap;
}

.sts-review-header__byline img {
	border-radius: 50%;
}

.sts-review-header__byline a {
	color: var(--sts-primary);
	font-weight: 600;
}

.sts-review-header__rating {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-btn);
	font-family: var(--sts-font-heading);
	font-weight: 700;
	white-space: nowrap;
}

/* ==========================================================================
   Single Review — 3-region layout
   ========================================================================== */

.sts-review {
	display: block;
}

.sts-review > * {
	margin-bottom: var(--sts-space-3);
}

.sts-review h2 {
	font-size: 20px;
}

/* ==========================================================================
   Table of Contents
   ========================================================================== */

.sts-review-toc {
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	overflow: hidden;
}

.sts-review-toc__toggle {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	padding: 14px var(--sts-space-2);
	background: none;
	border: none;
	font-family: var(--sts-font-heading);
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
}

.sts-review-toc__toggle .sts-icon {
	transition: transform 0.15s ease;
}

.sts-review-toc__toggle[aria-expanded="true"] .sts-icon {
	transform: rotate(180deg);
}

.sts-review-toc__heading {
	display: none;
}

.sts-review-toc__body {
	display: none;
	padding: 0 var(--sts-space-2) var(--sts-space-2);
}

.sts-review-toc__toggle[aria-expanded="true"] + .sts-review-toc__body {
	display: block;
}

.sts-review-toc__list {
	list-style: none;
	margin: 0 0 var(--sts-space-2);
	padding: 0;
}

.sts-review-toc__list a {
	display: block;
	padding: 8px 10px;
	border-left: 3px solid transparent;
	color: var(--sts-text-muted);
	font-size: 14px;
	font-weight: 600;
}

.sts-review-toc__list a:hover {
	color: var(--sts-primary);
	text-decoration: none;
}

.sts-review-toc__top {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--sts-primary);
}

.sts-review-toc__top .sts-icon {
	width: 14px;
	height: 14px;
}

/* ==========================================================================
   Quick Verdict + At a Glance
   ========================================================================== */

.sts-review__verdict-row {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: var(--sts-space-3);
}

.sts-verdict-box,
.sts-glance-box {
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-verdict-box {
	background: #EAF4FE;
}

.sts-verdict-box h2,
.sts-glance-box h2 {
	color: var(--sts-accent);
	margin-bottom: var(--sts-space-2);
}

.sts-verdict-box__row {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-top: 10px;
}

.sts-verdict-box__row p {
	margin: 0;
	font-size: 14px;
}

.sts-tag {
	flex-shrink: 0;
	display: inline-block;
	padding: 4px 12px;
	border-radius: var(--sts-radius-btn);
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
}

.sts-tag--best { background: var(--sts-accent); }
.sts-tag--skip { background: #E11D48; }

.sts-glance-box {
	background: #fff;
	border: 1px solid var(--sts-border);
}

.sts-glance-box__list {
	margin: 0;
}

.sts-glance-box__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sts-space-2);
	padding: 8px 0;
	border-bottom: 1px solid var(--sts-border);
	font-size: 14px;
}

.sts-glance-box__item:last-child {
	border-bottom: none;
}

.sts-glance-box__item dt {
	color: var(--sts-text-muted);
}

.sts-glance-box__item dd {
	margin: 0;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* ==========================================================================
   Ad slots (placeholders — Zain wires real AdSense units here later)
   ========================================================================== */

.sts-ad-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 250px;
	border: 2px dashed var(--sts-border);
	border-radius: var(--sts-radius-card);
	background: var(--sts-bg-alt);
	color: var(--sts-text-muted);
	font-size: 13px;
	text-align: center;
}

/* ==========================================================================
   How I Tested It
   ========================================================================== */

.sts-review__tested p {
	color: var(--sts-text-muted);
}

/* ==========================================================================
   Key Features
   ========================================================================== */

.sts-feature-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sts-space-2) var(--sts-space-3);
}

.sts-feature-list__item {
	display: flex;
	gap: 12px;
	padding: var(--sts-space-2) 0;
	border-bottom: 1px solid var(--sts-border);
}

.sts-feature-list__item strong {
	display: block;
	margin-bottom: 4px;
}

.sts-feature-list__item p {
	margin: 0;
	font-size: 14px;
	color: var(--sts-text-muted);
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.sts-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sts-space-3);
	align-items: start;
}

.sts-pricing-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-pricing-card--popular {
	border: 2px solid var(--sts-primary);
}

.sts-pricing-card__badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--sts-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: var(--sts-radius-btn);
	white-space: nowrap;
}

.sts-pricing-card h3 {
	font-size: 16px;
	color: var(--sts-accent);
	margin-bottom: 6px;
}

.sts-pricing-card__price {
	font-family: var(--sts-font-heading);
	font-weight: 700;
	font-size: 26px;
	margin: 0 0 4px;
}

.sts-pricing-card__price span {
	font-size: 13px;
	font-weight: 600;
	color: var(--sts-text-muted);
}

.sts-pricing-card__tagline {
	font-size: 13px;
	color: var(--sts-text-muted);
	margin-bottom: var(--sts-space-2);
}

.sts-pricing-card__features {
	list-style: none;
	margin: 0 0 var(--sts-space-2);
	padding: 0;
}

.sts-pricing-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	padding: 4px 0;
}

.sts-pricing-card__features .sts-icon {
	width: 16px;
	height: 16px;
	color: var(--sts-accent);
	flex-shrink: 0;
	margin-top: 2px;
}

.sts-pricing-card__cta {
	display: block;
	width: 100%;
	text-align: center;
	background: var(--sts-accent);
}

.sts-pricing-card--popular .sts-pricing-card__cta {
	background: var(--sts-primary);
}

/* ==========================================================================
   Pros and Cons
   ========================================================================== */

.sts-pros-cons-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sts-space-3);
	align-items: start;
}

.sts-pc-box {
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-pc-box--pros { background: #ECFDF5; }
.sts-pc-box--cons { background: #FEF2F2; }

.sts-pc-box__label {
	display: block;
	font-family: var(--sts-font-heading);
	font-weight: 700;
	margin-bottom: var(--sts-space-2);
}

.sts-pc-box--pros .sts-pc-box__label { color: #059669; }
.sts-pc-box--cons .sts-pc-box__label { color: #DC2626; }

.sts-pc-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sts-pc-box li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	padding: 4px 0;
}

.sts-pc-box li .sts-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 2px;
}

.sts-pc-box--pros li .sts-icon { color: #059669; }
.sts-pc-box--cons li .sts-icon { color: #DC2626; }

.sts-ad-slot--inline {
	min-height: 200px;
}

/* ==========================================================================
   Comparison table
   ========================================================================== */

.sts-comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.sts-comparison-table th,
.sts-comparison-table td {
	padding: 10px 8px;
	text-align: left;
	border-bottom: 1px solid var(--sts-border);
}

.sts-comparison-table thead th {
	font-family: var(--sts-font-heading);
	color: var(--sts-text-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.sts-comparison-table tbody th {
	font-weight: 600;
	color: var(--sts-text-muted);
}

.sts-comparison-table .sts-stars {
	font-size: 13px;
}

/* ==========================================================================
   Who It's For / Who Should Skip
   ========================================================================== */

.sts-review__who {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sts-space-3);
}

.sts-who-box {
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-who-box--for { background: #ECFDF5; }
.sts-who-box--skip { background: #FEF2F2; }

.sts-who-box__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	margin-bottom: 10px;
}

.sts-who-box--for .sts-who-box__icon { background: #059669; color: #fff; }
.sts-who-box--skip .sts-who-box__icon { background: #DC2626; color: #fff; }

.sts-who-box h3 {
	font-size: 15px;
	margin-bottom: 6px;
}

.sts-who-box--for h3 { color: #059669; }
.sts-who-box--skip h3 { color: #DC2626; }

.sts-who-box p {
	margin: 0;
	font-size: 14px;
	color: var(--sts-text);
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.sts-faq-accordion__item {
	border-bottom: 1px solid var(--sts-border);
}

.sts-faq-accordion__question {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: var(--sts-space-2);
	padding: 14px 0;
	background: none;
	border: none;
	text-align: left;
	font-family: var(--sts-font-body);
	font-weight: 700;
	font-size: 15px;
	color: var(--sts-text);
	cursor: pointer;
}

.sts-faq-accordion__question .sts-icon {
	flex-shrink: 0;
	transition: transform 0.15s ease;
}

.sts-faq-accordion__item.is-open .sts-faq-accordion__question .sts-icon {
	transform: rotate(180deg);
}

.sts-faq-accordion__answer {
	display: none;
	padding-bottom: 14px;
}

.sts-faq-accordion__item.is-open .sts-faq-accordion__answer {
	display: block;
}

.sts-faq-accordion__answer p {
	margin: 0;
	color: var(--sts-text-muted);
	font-size: 14px;
}

/* ==========================================================================
   Final Verdict
   ========================================================================== */

.sts-final-box {
	display: flex;
	align-items: center;
	gap: var(--sts-space-3);
	background: #EAF4FE;
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
	flex-wrap: wrap;
}

.sts-final-box__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--sts-accent);
	color: #fff;
	flex-shrink: 0;
}

.sts-final-box__body {
	flex: 1;
	min-width: 240px;
}

.sts-final-box__body h2 {
	color: var(--sts-accent);
	margin-bottom: 6px;
}

.sts-final-box__body p {
	margin: 0 0 var(--sts-space-2);
	font-size: 14px;
}

.sts-final-box__rating {
	text-align: center;
	flex-shrink: 0;
}

.sts-final-box__rating-num {
	display: block;
	font-family: var(--sts-font-heading);
	font-weight: 700;
	font-size: 30px;
	color: var(--sts-primary);
}

.sts-final-box__rating-num small {
	font-size: 14px;
	color: var(--sts-text-muted);
}

/* ==========================================================================
   Related reviews
   ========================================================================== */

.sts-review__related h2 {
	margin-bottom: var(--sts-space-3);
}

/* ==========================================================================
   Single Review — desktop 3-column layout (≥1025px)
   ========================================================================== */

@media (min-width: 1025px) {
	.sts-review {
		display: grid;
		grid-template-columns: 240px 1fr 300px;
		column-gap: var(--sts-space-4);
		align-items: start;
	}

	.sts-review > * {
		margin-bottom: 0;
	}

	.sts-review-toc {
		grid-column: 1;
		grid-row: 1 / 10;
		position: sticky;
		top: 90px;
		border: none;
		background: none;
	}

	.sts-review-toc__toggle {
		display: none;
	}

	.sts-review-toc__heading {
		display: block;
		font-family: var(--sts-font-heading);
		font-weight: 700;
		font-size: 12px;
		letter-spacing: 0.04em;
		text-transform: uppercase;
		color: var(--sts-text-muted);
		padding: 0 10px 10px;
	}

	.sts-review-toc__body {
		display: block !important;
		padding: 0;
	}

	.sts-review__verdict-row { grid-column: 2; grid-row: 1; }
	.sts-review__ad-1 { grid-column: 3; grid-row: 1 / 3; position: sticky; top: 90px; }
	.sts-review__tested { grid-column: 2; grid-row: 2; }
	.sts-review__features { grid-column: 2; grid-row: 3; }
	.sts-review__pricing { grid-column: 2; grid-row: 4; }
	.sts-review__pros-cons { grid-column: 2; grid-row: 5; }
	.sts-review__comparison { grid-column: 3; grid-row: 3 / 6; }
	.sts-review__who { grid-column: 3; grid-row: 6 / 8; grid-template-columns: 1fr; }
	.sts-review__faq { grid-column: 2; grid-row: 6; }
	.sts-review__final { grid-column: 2; grid-row: 7; }

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

/* ==========================================================================
   Single Review responsive — 768 / 480
   ========================================================================== */

@media (max-width: 768px) {
	.sts-review-header {
		flex-direction: column;
	}

	.sts-review__verdict-row,
	.sts-pricing-grid,
	.sts-pros-cons-row,
	.sts-review__who {
		grid-template-columns: 1fr;
	}

	.sts-feature-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.sts-review-header__title {
		font-size: 22px;
	}

	.sts-review-header__logo {
		width: 100px;
		height: 80px;
	}
}

/* ==========================================================================
   Archive / Category (Screen 5) + Search
   ========================================================================== */

.sts-archive-page .sts-main,
.sts-archive-page {
	padding-top: var(--sts-space-3);
}

.sts-archive-page > .sts-container {
	padding-bottom: var(--sts-space-5);
}

.sts-ad-slot--leaderboard {
	min-height: 90px;
	margin-bottom: var(--sts-space-3);
}

.sts-archive-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto var(--sts-space-3);
}

.sts-archive-header__icon {
	width: 64px;
	height: 64px;
	margin-bottom: var(--sts-space-2);
}

.sts-archive-header__icon .sts-icon {
	width: 30px;
	height: 30px;
}

.sts-archive-header__title {
	font-size: 32px;
	margin-bottom: 10px;
}

.sts-archive-header__desc {
	color: var(--sts-text-muted);
	margin-bottom: var(--sts-space-2);
}

.sts-archive-header__count {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-family: var(--sts-font-heading);
	font-size: 14px;
	color: var(--sts-text-muted);
	margin: 0;
}

.sts-archive-header__count .sts-icon {
	width: 16px;
	height: 16px;
	color: var(--sts-primary);
}

/* Filter pills + sort */

.sts-archive-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sts-space-2);
	flex-wrap: wrap;
	margin-bottom: var(--sts-space-3);
}

.sts-filter-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sts-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-btn);
	background: #fff;
	color: var(--sts-text);
	font-family: var(--sts-font-heading);
	font-weight: 700;
	font-size: 14px;
}

.sts-pill:hover {
	border-color: var(--sts-primary);
	text-decoration: none;
}

.sts-pill .sts-icon {
	width: 16px;
	height: 16px;
	color: var(--sts-primary);
}

.sts-pill--active {
	background: var(--sts-primary);
	border-color: var(--sts-primary);
	color: #fff;
}

.sts-pill--active .sts-icon {
	color: #fff;
}

.sts-sort__select {
	padding: 10px 16px;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-btn);
	background: #fff;
	font-family: var(--sts-font-body);
	font-weight: 600;
	font-size: 14px;
	color: var(--sts-text);
	cursor: pointer;
}

/* Card grid — reuses .sts-card-post (Lesson 1: same card as homepage) */

.sts-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sts-space-3);
	margin-bottom: var(--sts-space-3);
}

.sts-ad-slot--grid {
	min-height: 0;
	align-self: stretch;
}

.sts-card-post__author {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.sts-card-post__author img {
	border-radius: 50%;
	width: 20px;
	height: 20px;
}

.sts-loadmore {
	text-align: center;
	margin: var(--sts-space-3) 0 var(--sts-space-5);
}

.sts-loadmore__btn {
	min-width: 260px;
}

.sts-archive-empty {
	text-align: center;
	color: var(--sts-text-muted);
	font-style: italic;
	padding: var(--sts-space-4) 0;
}

.sts-archive-search {
	max-width: 520px;
	margin: 0 auto var(--sts-space-3);
}

.sts-archive-search .search-form,
.sts-404__search .search-form {
	display: flex;
	gap: 8px;
}

.sts-archive-search .search-form label,
.sts-404__search .search-form label {
	flex: 1;
	min-width: 0;
}

.sts-archive-search input[type="search"],
.sts-404__search input[type="search"] {
	width: 100%;
	padding: 12px 18px;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-btn);
	font-family: var(--sts-font-body);
}

.sts-archive-search input[type="submit"],
.sts-404__search input[type="submit"] {
	padding: 12px 24px;
	border: none;
	border-radius: var(--sts-radius-btn);
	background: var(--sts-primary);
	color: #fff;
	font-family: var(--sts-font-heading);
	font-weight: 700;
	cursor: pointer;
}

/* Explore other categories */

.sts-explore {
	margin-top: var(--sts-space-4);
}

.sts-explore__title {
	font-size: 20px;
	margin-bottom: var(--sts-space-2);
}

.sts-explore__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sts-space-2);
}

.sts-explore__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	color: var(--sts-text);
}

.sts-explore__item:hover {
	border-color: var(--sts-primary);
	text-decoration: none;
}

.sts-explore__item-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.sts-explore__item-body strong {
	font-family: var(--sts-font-heading);
	font-size: 15px;
}

.sts-explore__item-body span {
	font-size: 13px;
	color: var(--sts-text-muted);
}

.sts-explore__item > .sts-icon {
	width: 16px;
	height: 16px;
	color: var(--sts-text-muted);
}

/* ==========================================================================
   404
   ========================================================================== */

.sts-404 {
	text-align: center;
	padding: var(--sts-space-5) var(--sts-space-3);
	max-width: 680px;
}

.sts-404__code {
	display: block;
	font-family: var(--sts-font-heading);
	font-weight: 700;
	font-size: 96px;
	line-height: 1;
	color: var(--sts-primary);
}

.sts-404__title {
	font-size: 28px;
	margin-bottom: 10px;
}

.sts-404__desc {
	color: var(--sts-text-muted);
	margin-bottom: var(--sts-space-3);
}

.sts-404__search {
	max-width: 480px;
	margin: 0 auto var(--sts-space-3);
}

.sts-404__actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: var(--sts-space-5);
}

.sts-404__cats h2 {
	font-size: 20px;
	margin-bottom: var(--sts-space-2);
}

.sts-404__cats .sts-explore__item {
	text-align: left;
}

/* ==========================================================================
   Archive / 404 responsive — 1024 / 640
   ========================================================================== */

@media (max-width: 1024px) {
	.sts-archive-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.sts-archive-controls {
		flex-direction: column;
		align-items: stretch;
	}

	.sts-sort__select {
		width: 100%;
	}
}

@media (max-width: 640px) {
	.sts-archive-grid {
		grid-template-columns: 1fr;
	}

	.sts-explore__grid {
		grid-template-columns: 1fr;
	}

	.sts-404__code {
		font-size: 72px;
	}
}

/* ==========================================================================
   Generic page + rich text (page.php, legal content)
   ========================================================================== */

.sts-page__inner {
	max-width: 820px;
	padding-top: var(--sts-space-3);
	padding-bottom: var(--sts-space-5);
}

.sts-page__title {
	font-size: 32px;
	margin: var(--sts-space-2) 0 var(--sts-space-3);
}

.sts-rich-text {
	color: var(--sts-text);
	line-height: 1.7;
}

.sts-rich-text h2 {
	font-size: 20px;
	margin: var(--sts-space-3) 0 var(--sts-space-2);
}

.sts-rich-text h3 {
	font-size: 17px;
	margin: var(--sts-space-3) 0 10px;
}

.sts-rich-text p,
.sts-rich-text ul,
.sts-rich-text ol {
	margin: 0 0 var(--sts-space-2);
}

.sts-rich-text ul,
.sts-rich-text ol {
	padding-left: 22px;
}

.sts-rich-text li {
	margin-bottom: 8px;
}

.sts-rich-text a {
	color: var(--sts-primary);
	text-decoration: underline;
}

.sts-rich-text img {
	border-radius: var(--sts-radius-card);
	margin: var(--sts-space-2) 0;
}

/* ==========================================================================
   About page (Screen 6)
   ========================================================================== */

.sts-about-page .sts-breadcrumb {
	padding-top: var(--sts-space-3);
}

.sts-about-hero {
	background: var(--sts-bg-alt);
	border-bottom: 1px solid var(--sts-border);
}

.sts-about-hero__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	align-items: center;
	gap: var(--sts-space-4);
	padding: var(--sts-space-4) var(--sts-space-3);
}

.sts-about-hero__content h1 {
	font-size: 40px;
	margin-bottom: var(--sts-space-2);
}

.sts-about-hero__lead {
	font-size: 17px;
	color: var(--sts-text-muted);
	margin-bottom: var(--sts-space-3);
}

.sts-about-hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.sts-about-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-family: var(--sts-font-heading);
	font-size: 14px;
}

.sts-about-chip .sts-icon {
	color: var(--sts-accent);
}

.sts-about-hero__visual {
	position: relative;
	min-height: 240px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sts-about-hero__screen {
	width: 100%;
	max-width: 320px;
	background: #fff;
	border-radius: var(--sts-radius-card);
	box-shadow: 0 20px 50px rgba(20, 20, 46, 0.12);
	padding: var(--sts-space-3);
}

.sts-about-hero__stars {
	font-size: 22px;
	margin-bottom: var(--sts-space-2);
}

.sts-about-hero__screen > span {
	display: block;
	height: 10px;
	border-radius: 5px;
	background: var(--sts-bg-alt);
	margin-bottom: 10px;
}

.sts-about-hero__screen > span:nth-child(2) { width: 90%; }
.sts-about-hero__screen > span:nth-child(3) { width: 75%; }
.sts-about-hero__screen > span:nth-child(4) { width: 60%; }

.sts-about-hero__badge {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 10px 24px rgba(20, 20, 46, 0.12);
}

.sts-about-hero__badge--star { top: 6%; right: 10%; color: var(--sts-primary); }
.sts-about-hero__badge--heart { bottom: 8%; left: 6%; color: #E11D48; }

.sts-about-body {
	padding-top: var(--sts-space-5);
	padding-bottom: var(--sts-space-5);
}

.sts-about-cols {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: var(--sts-space-4);
	margin-bottom: var(--sts-space-5);
}

.sts-about-story h2,
.sts-about-test h2,
.sts-about-team h2,
.sts-about-values h2 {
	font-size: 22px;
	margin-bottom: var(--sts-space-2);
}

.sts-about-story p {
	color: var(--sts-text-muted);
	margin-bottom: var(--sts-space-2);
}

.sts-about-test__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sts-space-2) var(--sts-space-3);
	margin-bottom: var(--sts-space-3);
}

.sts-about-test__item {
	display: flex;
	gap: 12px;
}

.sts-about-test__item strong {
	display: block;
	margin-bottom: 4px;
}

.sts-about-test__item p {
	margin: 0;
	font-size: 14px;
	color: var(--sts-text-muted);
}

.sts-about-promise {
	display: flex;
	gap: 12px;
	background: #EAF4FE;
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-about-promise__icon {
	color: var(--sts-accent);
	flex-shrink: 0;
}

.sts-about-promise p {
	margin: 0;
	font-size: 14px;
}

.sts-about-team {
	margin-bottom: var(--sts-space-5);
}

.sts-about-team__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sts-space-3);
}

.sts-about-team__card {
	display: flex;
	align-items: flex-start;
	gap: var(--sts-space-2);
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-about-team__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--sts-primary);
	color: #fff;
	font-family: var(--sts-font-heading);
	font-weight: 700;
	font-size: 22px;
}

.sts-about-team__body {
	flex: 1;
}

.sts-about-team__body strong {
	display: block;
	font-size: 16px;
}

.sts-about-team__role {
	display: block;
	color: var(--sts-accent);
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 6px;
}

.sts-about-team__body p {
	margin: 0;
	font-size: 14px;
	color: var(--sts-text-muted);
}

.sts-about-team__social {
	color: var(--sts-accent);
	flex-shrink: 0;
}

.sts-about-values {
	margin-bottom: var(--sts-space-5);
}

.sts-about-values__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sts-space-3);
}

.sts-about-values__item {
	background: var(--sts-bg-alt);
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-about-values__icon {
	display: inline-flex;
	color: var(--sts-primary);
	margin-bottom: 10px;
}

.sts-about-values__item:nth-child(even) .sts-about-values__icon {
	color: var(--sts-accent);
}

.sts-about-values__item strong {
	display: block;
	margin-bottom: 4px;
}

.sts-about-values__item p {
	margin: 0;
	font-size: 14px;
	color: var(--sts-text-muted);
}

.sts-about-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sts-space-2);
	background: #EAF4FE;
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
	margin-bottom: var(--sts-space-4);
	text-align: center;
}

.sts-about-stats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.sts-about-stats__icon {
	color: var(--sts-primary);
}

.sts-about-stats__num {
	font-family: var(--sts-font-heading);
	font-weight: 700;
	font-size: 26px;
}

.sts-about-stats__label {
	font-size: 13px;
	color: var(--sts-text-muted);
}

.sts-about-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sts-space-3);
	flex-wrap: wrap;
	background: #FFF1EC;
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-4);
}

.sts-about-cta__body h2 {
	font-size: 22px;
	margin-bottom: 4px;
}

.sts-about-cta__body p {
	margin: 0;
	color: var(--sts-text-muted);
}

.sts-about-cta .sts-icon {
	width: 16px;
	height: 16px;
}

/* ==========================================================================
   Contact page (Screen 7)
   ========================================================================== */

.sts-contact-page .sts-breadcrumb {
	padding-top: var(--sts-space-3);
}

.sts-contact-header {
	text-align: center;
	max-width: 640px;
	margin: var(--sts-space-3) auto var(--sts-space-4);
}

.sts-contact-header h1 {
	font-size: 40px;
	margin-bottom: 10px;
}

.sts-contact-header p {
	color: var(--sts-text-muted);
	font-size: 17px;
	margin: 0;
}

.sts-contact-layout {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: var(--sts-space-3);
	align-items: start;
	margin-bottom: var(--sts-space-4);
}

.sts-contact-form-card {
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-contact-notice {
	padding: 12px 16px;
	border-radius: 12px;
	margin-bottom: var(--sts-space-2);
	font-size: 14px;
	font-weight: 600;
}

.sts-contact-notice--success {
	background: #ECFDF5;
	color: #059669;
}

.sts-contact-notice--error {
	background: #FEF2F2;
	color: #DC2626;
}

.sts-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.sts-contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sts-space-2);
}

.sts-field {
	margin-bottom: var(--sts-space-2);
}

.sts-field label {
	display: block;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 6px;
}

.sts-req {
	color: var(--sts-primary);
}

.sts-field input,
.sts-field select,
.sts-field textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--sts-border);
	border-radius: 12px;
	font-family: var(--sts-font-body);
	font-size: 15px;
	color: var(--sts-text);
	background: #fff;
}

.sts-field textarea {
	resize: vertical;
}

.sts-field input:focus,
.sts-field select:focus,
.sts-field textarea:focus {
	outline: none;
	border-color: var(--sts-primary);
}

.sts-contact-form__submit {
	width: 100%;
	margin-top: 6px;
}

.sts-contact-form__note {
	display: flex;
	align-items: center;
	gap: 6px;
	justify-content: center;
	font-size: 13px;
	color: var(--sts-text-muted);
	margin: var(--sts-space-2) 0 0;
}

.sts-contact-form__note .sts-icon {
	width: 14px;
	height: 14px;
}

.sts-contact-side {
	display: flex;
	flex-direction: column;
	gap: var(--sts-space-2);
}

.sts-contact-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-contact-card--block {
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.sts-contact-card strong {
	display: block;
	margin-bottom: 2px;
}

.sts-contact-card span,
.sts-contact-card__email {
	display: block;
	font-size: 14px;
	color: var(--sts-text-muted);
}

.sts-contact-card .sts-icon-bg {
	display: inline-flex;
	flex-shrink: 0;
}

.sts-contact-card__email {
	color: var(--sts-primary);
	font-weight: 700;
}

.sts-contact-card__accent {
	color: var(--sts-accent);
}

.sts-contact-card__social {
	display: flex;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sts-contact-card__social a {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--sts-bg-alt);
	color: var(--sts-text);
}

.sts-contact-card__social a:hover {
	background: var(--sts-primary);
	color: #fff;
}

.sts-contact-qa {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sts-contact-qa li {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
	font-size: 14px;
}

.sts-contact-qa li:last-child {
	margin-bottom: 0;
}

.sts-contact-qa__icon {
	color: var(--sts-accent);
	flex-shrink: 0;
}

.sts-contact-qa b {
	display: block;
}

.sts-contact-trust {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #EAF4FE;
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
	margin-bottom: var(--sts-space-5);
}

.sts-contact-trust__icon {
	color: var(--sts-accent);
	flex-shrink: 0;
}

.sts-contact-trust p {
	margin: 0;
	font-size: 14px;
}

/* ==========================================================================
   Privacy / Legal page (Screen 8)
   ========================================================================== */

.sts-legal-page .sts-breadcrumb {
	padding-top: var(--sts-space-3);
}

.sts-legal {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: var(--sts-space-4);
	align-items: start;
	padding-bottom: var(--sts-space-5);
}

.sts-legal-jump {
	position: sticky;
	top: 90px;
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-legal-jump__heading {
	display: block;
	font-family: var(--sts-font-heading);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--sts-text-muted);
	margin-bottom: var(--sts-space-2);
}

.sts-legal-jump ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sts-legal-jump li {
	margin-bottom: 4px;
}

.sts-legal-jump a {
	color: var(--sts-text-muted);
	font-size: 14px;
	font-weight: 600;
}

.sts-legal-jump a:hover {
	color: var(--sts-primary);
	text-decoration: none;
}

.sts-legal-content h1 {
	font-size: 32px;
	margin-bottom: 6px;
}

.sts-legal-updated {
	color: var(--sts-text-muted);
	font-size: 13px;
	margin-bottom: var(--sts-space-3);
}

.sts-legal-content section {
	scroll-margin-top: 90px;
	margin-bottom: var(--sts-space-3);
}

.sts-legal-affiliate {
	display: flex;
	gap: 16px;
	background: #FFF1EC;
	border: 1px solid #FFD9CC;
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-legal-affiliate__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--sts-primary);
	color: #fff;
}

.sts-legal-affiliate h2 {
	color: var(--sts-primary);
	margin-top: 0;
}

.sts-legal-affiliate p {
	margin: 0;
}

/* ==========================================================================
   Trust-page responsive — 1024 / 768
   ========================================================================== */

@media (max-width: 1024px) {
	.sts-about-hero__inner,
	.sts-about-cols {
		grid-template-columns: 1fr;
	}

	.sts-about-hero__visual {
		order: -1;
	}

	.sts-contact-layout {
		grid-template-columns: 1fr;
	}

	.sts-legal {
		grid-template-columns: 1fr;
	}

	.sts-legal-jump {
		position: static;
	}
}

@media (max-width: 768px) {
	.sts-about-hero__content h1,
	.sts-contact-header h1 {
		font-size: 30px;
	}

	.sts-about-test__grid,
	.sts-about-team__grid,
	.sts-about-values__grid,
	.sts-about-stats,
	.sts-contact-form__row {
		grid-template-columns: 1fr;
	}

	.sts-about-values__grid {
		gap: var(--sts-space-2);
	}

	.sts-about-stats {
		grid-template-columns: 1fr 1fr;
		gap: var(--sts-space-3);
	}
}

/* ==========================================================================
   [VERIFY] tag (Best-Of pricing/table cells)
   ========================================================================== */

.sts-verify {
	display: inline-block;
	font-family: var(--sts-font-heading);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.03em;
	padding: 1px 6px;
	margin-left: 4px;
	border-radius: 4px;
	background: #FEF3C7;
	color: #92400E;
	vertical-align: middle;
}

/* ==========================================================================
   Shared callout boxes (Best-Of + How-To)
   ========================================================================== */

.sts-callout {
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-callout h2 {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	margin-bottom: var(--sts-space-2);
}

.sts-callout ul {
	margin: 0;
	padding-left: 20px;
}

.sts-callout li {
	margin-bottom: 8px;
}

.sts-callout--info { background: #EAF4FE; }
.sts-callout--info h2 { color: var(--sts-accent); }
.sts-callout--warn { background: #FEF2F2; }
.sts-callout--warn h2 { color: #DC2626; }
.sts-callout--tips { background: #FFFBEB; }
.sts-callout--tips h2 { color: #B45309; }

.sts-callout--tips ul {
	list-style: none;
	padding-left: 0;
}

.sts-callout--tips li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.sts-callout--tips li .sts-icon {
	width: 16px;
	height: 16px;
	color: #059669;
	flex-shrink: 0;
	margin-top: 3px;
}

/* ==========================================================================
   Best-Of List (Screen 3)
   ========================================================================== */

.sts-bestof-page .sts-main,
.sts-bestof-page {
	padding-top: var(--sts-space-3);
}

.sts-bestof-header {
	margin-bottom: var(--sts-space-3);
}

.sts-bestof-header__title {
	font-size: 32px;
	margin-bottom: 12px;
}

.sts-bestof-header__byline,
.sts-howto-header__byline {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 14px;
	color: var(--sts-text-muted);
	margin-bottom: var(--sts-space-2);
}

.sts-bestof-header__byline img,
.sts-howto-header__byline img {
	border-radius: 50%;
}

.sts-bestof-header__byline a,
.sts-howto-header__byline a {
	color: var(--sts-primary);
	font-weight: 600;
}

.sts-bestof-header__byline .sts-icon,
.sts-howto-header__byline .sts-icon {
	width: 14px;
	height: 14px;
	vertical-align: middle;
}

.sts-bestof-header__intro,
.sts-howto-header__intro {
	font-size: 17px;
	color: var(--sts-text);
	margin-bottom: var(--sts-space-2);
}

.sts-bestof-picked {
	display: flex;
	gap: 12px;
	background: #EAF4FE;
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-2) var(--sts-space-3);
}

.sts-bestof-picked__icon {
	color: var(--sts-accent);
	flex-shrink: 0;
}

.sts-bestof-picked p {
	margin: 0;
	font-size: 14px;
}

.sts-bestof {
	display: block;
}

.sts-bestof > * {
	margin-bottom: var(--sts-space-3);
}

.sts-bestof-section {
	margin-bottom: var(--sts-space-4);
}

.sts-bestof-section > h2 {
	font-size: 22px;
	margin-bottom: var(--sts-space-2);
}

.sts-bestof-jump__list,
.sts-howto-jump__list {
	list-style: none;
	margin: 0 0 var(--sts-space-2);
	padding: 0;
}

.sts-bestof-jump__list a,
.sts-howto-jump__list a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--sts-text-muted);
}

.sts-bestof-jump__list a:hover,
.sts-howto-jump__list a:hover {
	color: var(--sts-primary);
	text-decoration: none;
}

.sts-bestof-jump__num,
.sts-howto-jump__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--sts-accent);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.sts-table-scroll {
	overflow-x: auto;
}

.sts-bestof-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	min-width: 640px;
}

.sts-bestof-table th,
.sts-bestof-table td {
	padding: 12px 10px;
	text-align: left;
	border-bottom: 1px solid var(--sts-border);
}

.sts-bestof-table thead th {
	background: var(--sts-accent);
	color: #fff;
	font-family: var(--sts-font-heading);
	font-size: 13px;
}

.sts-bestof-table thead th:first-child { border-top-left-radius: 10px; }
.sts-bestof-table thead th:last-child { border-top-right-radius: 10px; }

.sts-top3-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sts-space-2);
}

.sts-top3-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-top3-card__rank {
	position: absolute;
	top: var(--sts-space-2);
	right: var(--sts-space-2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--sts-bg-alt);
	font-weight: 700;
	font-size: 13px;
	color: var(--sts-text-muted);
}

.sts-top3-card strong {
	display: block;
	font-size: 16px;
}

.sts-top3-card__badge {
	display: inline-block;
	margin: 6px 0;
	padding: 3px 10px;
	border-radius: var(--sts-radius-btn);
	background: #FFF1EC;
	color: var(--sts-primary);
	font-size: 11px;
	font-weight: 700;
}

.sts-top3-card p {
	font-size: 14px;
	color: var(--sts-text-muted);
	margin: 6px 0 10px;
}

.sts-top3-card__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 700;
	font-size: 14px;
}

.sts-top3-card__link .sts-icon {
	width: 14px;
	height: 14px;
}

.sts-tool-block {
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
	margin-bottom: var(--sts-space-3);
	scroll-margin-top: 90px;
}

.sts-tool-block__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.sts-tool-block__rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 10px;
	background: var(--sts-primary);
	color: #fff;
	font-family: var(--sts-font-heading);
	font-weight: 700;
	font-size: 18px;
}

.sts-tool-block__title {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.sts-tool-block__title h3 {
	margin: 0;
	font-size: 19px;
}

.sts-tool-block__badge {
	padding: 3px 12px;
	border-radius: var(--sts-radius-btn);
	background: #FFF1EC;
	color: var(--sts-primary);
	font-size: 11px;
	font-weight: 700;
}

.sts-tool-block__desc {
	color: var(--sts-text-muted);
	margin-bottom: var(--sts-space-2);
}

.sts-tool-block__feats strong {
	display: block;
	margin-bottom: 6px;
}

.sts-tool-block__feats ul {
	list-style: none;
	margin: 0 0 var(--sts-space-2);
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px 16px;
}

.sts-tool-block__feats li,
.sts-tool-block__pros li,
.sts-tool-block__cons li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	padding: 2px 0;
}

.sts-tool-block__feats .sts-icon { width: 16px; height: 16px; color: var(--sts-accent); flex-shrink: 0; margin-top: 3px; }

.sts-tool-block__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px var(--sts-space-3);
	padding: var(--sts-space-2) 0;
	border-top: 1px solid var(--sts-border);
	border-bottom: 1px solid var(--sts-border);
	margin-bottom: var(--sts-space-2);
	font-size: 14px;
}

.sts-tool-block__label {
	font-weight: 700;
}

.sts-tool-block__pc {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sts-space-2) var(--sts-space-3);
	margin-bottom: var(--sts-space-2);
}

.sts-tool-block__pros,
.sts-tool-block__cons {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sts-tool-block__pros .sts-icon { width: 16px; height: 16px; color: #059669; flex-shrink: 0; margin-top: 3px; }
.sts-tool-block__cons .sts-icon { width: 16px; height: 16px; color: #DC2626; flex-shrink: 0; margin-top: 3px; }

.sts-tool-block__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	color: var(--sts-primary);
}

.sts-tool-block__cta .sts-icon { width: 16px; height: 16px; }

.sts-takeaway {
	display: flex;
	gap: var(--sts-space-3);
	background: #FFFBEB;
	border: 1px solid #FDE68A;
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-takeaway__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--sts-primary);
	color: #fff;
}

.sts-takeaway__body h2 { font-size: 20px; margin-bottom: 6px; }
.sts-takeaway__pick { font-size: 15px; margin-bottom: 6px; }
.sts-takeaway__body p { margin: 0 0 var(--sts-space-2); font-size: 14px; }

.sts-trust-card {
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
	margin-bottom: var(--sts-space-3);
}

.sts-trust-card > strong {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: var(--sts-space-2);
	font-family: var(--sts-font-heading);
}

.sts-trust-card > strong .sts-icon { color: var(--sts-accent); }

.sts-trust-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sts-trust-card li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	padding: 4px 0;
}

.sts-trust-card li .sts-icon { width: 16px; height: 16px; color: #059669; flex-shrink: 0; margin-top: 3px; }

.sts-ad-slot--rail { min-height: 250px; }
.sts-ad-slot--top { max-width: 336px; margin: 0 auto var(--sts-space-3); min-height: 250px; }

@media (min-width: 1025px) {
	.sts-bestof {
		display: grid;
		grid-template-columns: 220px 1fr 300px;
		column-gap: var(--sts-space-4);
		align-items: start;
	}

	.sts-bestof > * { margin-bottom: 0; }

	.sts-bestof-jump { position: sticky; top: 90px; }
	.sts-bestof-rail { position: sticky; top: 90px; }
}

/* ==========================================================================
   How-To / Tutorial (Screen 4)
   ========================================================================== */

.sts-howto-page .sts-main,
.sts-howto-page {
	padding-top: var(--sts-space-3);
}

.sts-howto-header {
	margin-bottom: var(--sts-space-3);
}

.sts-howto-header .sts-badge {
	margin-bottom: 10px;
}

.sts-howto-header__title {
	font-size: 30px;
	margin-bottom: 12px;
}

.sts-needs-box {
	background: #EAF4FE;
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
	margin-bottom: var(--sts-space-3);
}

.sts-needs-box > strong {
	display: block;
	font-family: var(--sts-font-heading);
	margin-bottom: var(--sts-space-2);
}

.sts-needs-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 16px;
}

.sts-needs-box li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
}

.sts-needs-box li .sts-icon { width: 16px; height: 16px; color: var(--sts-accent); flex-shrink: 0; margin-top: 3px; }

.sts-steps {
	list-style: none;
	margin: 0 0 var(--sts-space-3);
	padding: 0;
}

.sts-step {
	position: relative;
	padding-left: 56px;
	padding-bottom: var(--sts-space-3);
	scroll-margin-top: 90px;
}

.sts-step:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 19px;
	top: 44px;
	bottom: 0;
	width: 2px;
	background: var(--sts-border);
}

.sts-step__num {
	position: absolute;
	left: 0;
	top: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--sts-primary);
	color: #fff;
	font-family: var(--sts-font-heading);
	font-weight: 700;
	z-index: 1;
}

.sts-step__body {
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
}

.sts-step__title {
	font-size: 17px;
	margin-bottom: 6px;
}

.sts-step__body p {
	color: var(--sts-text-muted);
	margin: 0 0 var(--sts-space-2);
}

.sts-step__shot {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 90px;
	border: 2px dashed var(--sts-border);
	border-radius: 12px;
	background: var(--sts-bg-alt);
	color: var(--sts-text-muted);
	font-size: 13px;
	text-align: center;
	padding: var(--sts-space-2);
}

.sts-trouble-list {
	list-style: none;
	padding-left: 0;
}

.sts-trouble-list li {
	margin-bottom: var(--sts-space-2);
	font-size: 14px;
}

.sts-allset {
	background: #EAF4FE;
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-3);
	margin-bottom: var(--sts-space-3);
}

.sts-allset h2 { color: var(--sts-accent); font-size: 20px; margin-bottom: 6px; }
.sts-allset > p { margin: 0 0 var(--sts-space-2); font-size: 14px; }

.sts-allset__card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--sts-border);
	border-radius: var(--sts-radius-card);
	padding: var(--sts-space-2) var(--sts-space-3);
}

.sts-allset__card:hover { text-decoration: none; border-color: var(--sts-primary); }

.sts-allset__card-body strong {
	display: block;
	color: var(--sts-text);
}

.sts-allset__card-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--sts-primary);
	font-weight: 700;
	font-size: 14px;
}

.sts-allset__card-link .sts-icon { width: 14px; height: 14px; }

@media (min-width: 1025px) {
	.sts-howto {
		display: grid;
		grid-template-columns: 220px 1fr;
		column-gap: var(--sts-space-4);
		align-items: start;
	}

	.sts-howto-jump { position: sticky; top: 90px; }
}

@media (max-width: 768px) {
	.sts-top3-grid {
		grid-template-columns: 1fr;
	}

	.sts-tool-block__feats ul,
	.sts-tool-block__pc,
	.sts-needs-box ul {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Mobile polish pass — page-title sizes + card/section padding at ≤480px.
   (Spacing tokens themselves are already scaled down site-wide — see the
   :root override near the top of this file.)
   ========================================================================== */

@media (max-width: 480px) {
	.sts-hero__title {
		font-size: 24px;
	}

	.sts-hero__subtitle {
		font-size: 15px;
	}

	.sts-archive-header__title,
	.sts-bestof-header__title,
	.sts-howto-header__title {
		font-size: 22px;
	}

	.sts-bestof-header__intro,
	.sts-howto-header__intro {
		font-size: 15px;
	}

	.sts-card-tool,
	.sts-card-post__body,
	.sts-tool-block,
	.sts-pricing-card,
	.sts-pc-box,
	.sts-verdict-box,
	.sts-glance-box,
	.sts-callout,
	.sts-final-box,
	.sts-takeaway,
	.sts-needs-box,
	.sts-step__body,
	.sts-trust-card,
	.sts-who-box {
		padding: var(--sts-space-2);
	}

	.sts-container {
		padding: 0 var(--sts-space-2);
	}

	.sts-section__title {
		font-size: 19px;
	}

	.sts-final-box,
	.sts-takeaway {
		flex-direction: column;
		text-align: center;
	}

	.sts-final-box__rating {
		margin-top: 4px;
	}

	.sts-review-header__logo {
		margin-bottom: var(--sts-space-2);
	}

	.sts-tool-block__head {
		gap: 8px;
	}

	.sts-tool-block__rank {
		width: 32px;
		height: 32px;
		font-size: 15px;
	}

	.sts-step {
		padding-left: 48px;
	}

	.sts-step__num {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}

	.sts-step:not(:last-child)::before {
		left: 15px;
	}
}
