/* ============================================================
   Homepage — How to Repel
   Visual upgrade: premium hero, animations, category grid,
   enhanced cards, trust section, newsletter.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ── Design tokens ── */
:root {
	--htr-primary:       #0f6463;
	--htr-primary-dark:  #0a4a49;
	--htr-primary-light: #19807f;
	--htr-accent:        #1a7f7e;
	--htr-gold:          #e8a21a;
	--htr-text:          #1d1a16;
	--htr-text-muted:    #4a5568;
	--htr-bg:            #f5f2eb;
	--htr-surface:       #fcfbf8;
	--htr-white:         #ffffff;
	--htr-border:        rgba(15,100,99,.12);
	--htr-text-light:    #8a7960;
	--htr-shadow-soft:   0 10px 30px rgba(15,100,99,.08);
	--htr-shadow-md:     0 4px 20px rgba(15,100,99,.14);
	--htr-shadow-hover:  0 16px 40px rgba(15,100,99,.18);
	--htr-radius-lg:     18px;
	--htr-radius-md:     12px;
	--htr-radius-pill:   999px;
	--htr-container:     1200px;
}

/* ── Box-sizing reset ── */
.home .htr-wrap,
.home .htr-wrap * {
	box-sizing: border-box;
}

.home .htr-wrap {
	width: 100%;
	font-family: 'Poppins', 'Segoe UI', sans-serif;
	line-height: 1.6;
	color: var(--htr-text);
}

.home .htr-container {
	width: min(var(--htr-container), calc(100% - 2rem));
	margin: 0 auto;
}

/* ================================================================
   NAV
   ================================================================ */
.home .htr-nav {
	display: block !important;
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(252,251,248,.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(15,100,99,.1);
	padding: 0 !important;
	box-shadow: 0 1px 0 rgba(15,100,99,.06);
}

.home .htr-nav-inner {
	width: min(var(--htr-container), calc(100% - 2rem));
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	padding: 0.65rem 0;
	min-height: 68px;
}

.home .htr-logo {
	text-decoration: none;
	color: var(--htr-primary);
	white-space: nowrap;
	flex-shrink: 0;
}

.home .htr-logo--brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 0;
	line-height: 1;
	text-decoration: none !important;
	transition: opacity .2s;
}

.home .htr-logo--brand:hover {
	opacity: .85;
}

.home .htr-logo-mark {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
	flex-shrink: 0;
}

.home .htr-logo-wordmark {
	font-family: 'Poppins', 'Segoe UI', sans-serif;
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1;
	color: var(--htr-primary);
	letter-spacing: -0.02em;
}

.home .htr-logo-wordmark strong {
	font-weight: 800;
}

.home .htr-nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	gap: 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.home .htr-nav-links li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.home .htr-nav-links a {
	text-decoration: none;
	color: var(--htr-text);
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.3rem 0;
	border-bottom: 2px solid transparent;
	transition: color .2s, border-color .2s;
}

.home .htr-nav-links a:hover {
	color: var(--htr-primary);
	border-bottom-color: var(--htr-primary);
}

.home .htr-nav-cta {
	flex-shrink: 0;
	margin-left: 1.25rem;
	display: inline-block !important;
	text-decoration: none !important;
	background: var(--htr-primary);
	color: #fff !important;
	padding: 0.6rem 1.2rem;
	border-radius: var(--htr-radius-pill);
	font-weight: 700;
	font-size: 0.9rem;
	transition: background .2s, transform .15s, box-shadow .2s;
}

.home .htr-nav-cta:hover {
	background: var(--htr-primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(15,100,99,.35);
}

.home .htr-menu-toggle {
	display: none;
	border: 1px solid rgba(15,100,99,.18);
	background: #fff;
	color: var(--htr-primary);
	border-radius: 10px;
	padding: 0.6rem 0.85rem;
	font-weight: 700;
	font-size: 0.9rem;
	cursor: pointer;
	transition: background .2s;
}

.home .htr-menu-toggle:hover {
	background: rgba(15,100,99,.06);
}

/* Footer logo */
.home .htr-footer-logo-img {
	display: block !important;
	height: 40px !important;
	width: auto !important;
	max-width: 220px !important;
	min-width: 0 !important;
	object-fit: contain !important;
	object-position: left center;
}

.home .htr-footer-brand-link {
	display: inline-flex;
	text-decoration: none;
	margin-bottom: 1rem;
}

.home .htr-footer-brand-inner {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
}

.home .htr-footer-brand-link .htr-logo-wordmark {
	color: #fff;
}

/* ================================================================
   SEARCH STRIP — subtly integrated below nav
   ================================================================ */
.home .htr-search-strip {
	background: var(--htr-surface);
	border-bottom: 1px solid rgba(15,100,99,.08);
	padding: 1.1rem 0 1.3rem;
}

.home .htr-search-label {
	display: block;
	margin-bottom: 0.6rem;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--htr-primary);
	letter-spacing: 0.01em;
}

.home .htr-search-row {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.home .htr-search-input {
	flex: 1;
	min-width: 0;
	height: 58px;
	padding: 0 1.25rem;
	border-radius: var(--htr-radius-pill);
	border: 2px solid rgba(15,100,99,.14);
	background: #fff;
	font: inherit;
	font-size: 1rem;
	transition: border-color .2s, box-shadow .2s;
}

.home .htr-search-input:focus {
	outline: none;
	border-color: var(--htr-primary);
	box-shadow: 0 0 0 4px rgba(15,100,99,.1);
}

.home .htr-search-button {
	height: 58px;
	padding: 0 1.6rem;
	border: 0;
	border-radius: var(--htr-radius-pill);
	background: var(--htr-primary);
	color: #fff;
	font: inherit;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: background .2s, transform .15s, box-shadow .2s;
}

.home .htr-search-button:hover {
	background: var(--htr-primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(15,100,99,.3);
}

/* ================================================================
   HERO — Rich gradient with decorative wave
   ================================================================ */
.home .htr-hero {
	position: relative;
	padding: 5.5rem 0 7rem;
	background: linear-gradient(150deg,
		#0a4a49 0%,
		#0f6463 40%,
		#1a7f7e 70%,
		#155e5d 100%
	);
	overflow: hidden;
	color: #fff;
}

/* decorative circles — depth effect */
.home .htr-hero::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -80px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(255,255,255,.035);
	pointer-events: none;
}

.home .htr-hero::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 80px;
	background: var(--htr-bg);
	-webkit-clip-path: ellipse(55% 100% at 50% 100%);
	clip-path: ellipse(55% 100% at 50% 100%);
	pointer-events: none;
}

.home .htr-hero-inner {
	position: relative;
	z-index: 1;
	width: min(var(--htr-container), calc(100% - 2rem));
	margin: 0 auto;
	text-align: center;
}

.home .htr-hero h1 {
	margin: 0 0 1.25rem;
	font-size: clamp(2.4rem, 5.5vw, 4.4rem);
	line-height: 1.06;
	color: #fff;
	font-weight: 800;
	letter-spacing: -0.03em;
	text-shadow: 0 2px 20px rgba(0,0,0,.18);
}

.home .htr-hero h1 span {
	color: #8ef0ef;
}

.home .htr-hero p {
	max-width: 640px;
	margin: 0 auto 2.5rem;
	font-size: 1.15rem;
	color: rgba(255,255,255,.88);
	line-height: 1.65;
}

.home .htr-hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3.5rem;
}

.home .htr-btn {
	display: inline-block !important;
	text-decoration: none !important;
	padding: 1rem 2rem;
	border-radius: var(--htr-radius-pill);
	font-weight: 700;
	font-size: 1rem;
	transition: transform .2s, box-shadow .2s, background .2s;
}

.home .htr-btn:hover {
	transform: translateY(-2px);
}

.home .htr-btn-primary {
	background: #fff;
	color: var(--htr-primary) !important;
	box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.home .htr-btn-primary:hover {
	box-shadow: 0 8px 30px rgba(0,0,0,.22);
}

.home .htr-btn-secondary {
	background: rgba(255,255,255,.12);
	color: #fff !important;
	border: 2px solid rgba(255,255,255,.5);
	backdrop-filter: blur(6px);
}

.home .htr-btn-secondary:hover {
	background: rgba(255,255,255,.22);
	border-color: rgba(255,255,255,.85);
	box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* ================================================================
   STATS ROW — glass cards inside hero
   ================================================================ */
.home .htr-stats,
.home .htr-grid-trust {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 12px !important;
	width: 100% !important;
	align-items: stretch !important;
}

.home .htr-stat,
.home .htr-trust {
	flex: unset !important;
	width: auto !important;
	min-width: 0 !important;
	height: auto !important;
	overflow: visible !important;
}

.home .htr-stat {
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: var(--htr-radius-md);
	padding: 1rem 0.75rem;
	text-align: center;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	align-items: center !important;
	font-size: 0.75rem;
	line-height: 1.35;
	color: rgba(255,255,255,.8);
	backdrop-filter: blur(8px);
	transition: transform .2s, background .2s;
}

.home .htr-stat:hover {
	background: rgba(255,255,255,.18);
	transform: translateY(-2px);
}

.home .htr-stat strong {
	display: block;
	font-size: 1.9rem;
	font-weight: 800;
	line-height: 1;
	color: #fff;
	margin-bottom: 0.2rem;
	letter-spacing: -0.02em;
}

.home .htr-stats .htr-stats-note {
	grid-column: 1 / -1 !important;
	width: 100% !important;
	flex: none !important;
	text-align: center;
	font-size: 0.78rem;
	line-height: 1.55;
	color: rgba(255,255,255,.6);
	margin: 0.85rem auto 0;
	max-width: 640px;
}

.home .htr-stats .htr-stats-note a {
	color: rgba(255,255,255,.85) !important;
	font-weight: 600;
	text-decoration: underline !important;
	text-underline-offset: 2px;
}

/* ================================================================
   SECTIONS
   ================================================================ */
.home .htr-section {
	padding: 5rem 0;
}

.home .htr-section-alt {
	background: linear-gradient(180deg, var(--htr-bg) 0%, #fff 100%);
}

.home .htr-section-head {
	text-align: center;
	margin-bottom: 3rem;
}

.home .htr-section-head h2 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--htr-primary);
}

.home .htr-section-head p {
	font-size: 1.05rem;
	color: var(--htr-text-muted);
	margin: 0;
}

/* ================================================================
   GUIDES SECTION — toggle header + card grid
   ================================================================ */
.home section#guides.htr-section {
	padding: 2rem 20px 3rem !important;
}

.home .htr-guides-toggle {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.home .htr-view-toggle {
	background: transparent;
	border: 2px solid var(--htr-primary);
	color: var(--htr-primary);
	padding: 0.5rem 1.1rem;
	border-radius: var(--htr-radius-pill);
	font-weight: 600;
	cursor: pointer;
	font-size: 0.88rem;
	transition: background .2s, color .2s, box-shadow .2s;
}

.home .htr-view-toggle:hover {
	background: rgba(15,100,99,.08);
}

.home .htr-view-active {
	background: var(--htr-primary);
	color: #fff;
}

.home .htr-view-active:hover {
	background: var(--htr-primary-dark);
}

.home section#guides .htr-grid-guides {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 1.5rem;
}

/* Guide card */
.home section#guides .htr-card {
	background: var(--htr-surface);
	border: 1px solid var(--htr-border);
	border-top: 3px solid var(--htr-primary);
	border-radius: var(--htr-radius-md);
	padding: 14px 16px 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: var(--htr-shadow-soft);
	overflow: hidden;
	transition: transform .2s, box-shadow .25s, border-top-color .2s;
}

.home section#guides .htr-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--htr-shadow-hover);
	border-top-color: var(--htr-accent);
}

.home section#guides .htr-card--has-thumb {
	padding-top: 0;
}

.home section#guides .htr-card-thumb {
	width: calc(100% + 32px);
	margin: 0 -16px 12px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #deeeed;
	position: relative;
}

.home section#guides .htr-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s;
}

.home section#guides .htr-card:hover .htr-card-thumb img {
	transform: scale(1.05);
}

.home section#guides .htr-card-icon {
	font-size: 1.8rem;
	margin: 0.25rem 0 0.5rem;
	line-height: 1;
}

.home section#guides .htr-card h3 {
	font-size: 0.88rem;
	line-height: 1.45;
	margin: 0 0 0.5rem;
	color: var(--htr-primary-dark);
	font-weight: 700;
}

.home section#guides .htr-card-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.72rem;
	color: #888;
	margin-bottom: 0.65rem;
}

.home section#guides .htr-card-link {
	display: inline-block !important;
	margin-top: auto;
	background: var(--htr-primary) !important;
	color: #fff !important;
	padding: 6px 16px;
	border-radius: var(--htr-radius-pill);
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none !important;
	transition: background .2s, transform .15s;
}

.home section#guides .htr-card-link:hover {
	background: var(--htr-primary-dark) !important;
	transform: translateY(-1px);
}

.home .htr-guides-cta {
	text-align: center;
	margin-top: 2rem;
}

.home .htr-guides-cta a {
	display: inline-block;
	color: var(--htr-primary) !important;
	font-weight: 700;
	text-decoration: none !important;
	border: 2px solid var(--htr-primary);
	padding: 0.65rem 1.5rem;
	border-radius: var(--htr-radius-pill);
	transition: background .2s, color .2s;
}

.home .htr-guides-cta a:hover {
	background: var(--htr-primary);
	color: #fff !important;
}

/* ================================================================
   CATEGORY GRID — htr-grid-cats (was missing all CSS)
   ================================================================ */
.home .htr-grid-cats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 0.5rem;
}

.home .htr-cat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.75rem 1rem;
	background: #fff;
	border: 1px solid var(--htr-border);
	border-radius: var(--htr-radius-lg);
	text-decoration: none !important;
	color: var(--htr-text) !important;
	box-shadow: var(--htr-shadow-soft);
	transition: transform .22s, box-shadow .22s, border-color .2s;
	position: relative;
	overflow: hidden;
}

.home .htr-cat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--htr-primary), var(--htr-accent));
	opacity: 0;
	transition: opacity .22s;
}

.home .htr-cat-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--htr-shadow-hover);
	border-color: rgba(15,100,99,.25);
}

.home .htr-cat-item:hover::before {
	opacity: 1;
}

.home .htr-cat-icon {
	font-size: 2.5rem;
	margin-bottom: 0.75rem;
	line-height: 1;
	transition: transform .22s;
}

.home .htr-cat-item:hover .htr-cat-icon {
	transform: scale(1.15);
}

.home .htr-cat-label {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--htr-primary-dark);
	margin-bottom: 0.35rem;
	line-height: 1.3;
}

.home .htr-cat-count {
	font-size: 0.78rem;
	color: var(--htr-text-light);
	background: rgba(15,100,99,.07);
	padding: 0.2rem 0.65rem;
	border-radius: var(--htr-radius-pill);
	font-weight: 500;
}

/* ================================================================
   TRUST CARDS
   ================================================================ */
.home .htr-trust {
	background: #fff !important;
	border: 1px solid rgba(15,100,99,.12) !important;
	border-left: 4px solid var(--htr-primary) !important;
	border-radius: var(--htr-radius-md) !important;
	padding: 1.75rem 1.5rem !important;
	text-align: left;
	display: flex !important;
	flex-direction: column !important;
	justify-content: flex-start !important;
	align-items: flex-start !important;
	box-shadow: var(--htr-shadow-soft);
	transition: transform .22s, box-shadow .22s;
}

.home .htr-trust:hover {
	transform: translateY(-3px);
	box-shadow: var(--htr-shadow-md);
}

.home .htr-trust h4 {
	color: var(--htr-primary);
	font-size: 0.98rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	line-height: 1.25;
}

.home .htr-trust .htr-card-icon {
	font-size: 1.6rem;
	margin-bottom: 0.65rem;
	line-height: 1;
}

.home .htr-trust p {
	font-size: 0.88rem;
	line-height: 1.65;
	color: var(--htr-text-muted);
	margin: 0;
	width: 100%;
}

.home .htr-trust p a {
	color: var(--htr-primary) !important;
	font-weight: 600;
	text-decoration: none !important;
}

.home .htr-trust p a:hover {
	text-decoration: underline !important;
}

/* ================================================================
   NEWSLETTER SECTION
   ================================================================ */
.home .htr-newsletter {
	position: relative;
	background: linear-gradient(135deg,
		#0a4a49 0%,
		#0f6463 50%,
		#155e5d 100%
	);
	color: #fff;
	overflow: hidden;
}

.home .htr-newsletter::before {
	content: '';
	position: absolute;
	bottom: -60px;
	right: -60px;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: rgba(255,255,255,.04);
	pointer-events: none;
}

.home .htr-newsletter .htr-section-head h2 {
	color: #fff;
}

.home .htr-newsletter .htr-section-head p {
	color: rgba(255,255,255,.82);
}

.home .htr-newsletter-form {
	max-width: 700px;
	margin: 0 auto;
	display: flex;
	gap: 0.85rem;
}

.home .htr-newsletter-form-wrap {
	max-width: 640px;
	margin: 0 auto;
}

.home .htr-newsletter-note {
	text-align: center;
	font-size: 0.82rem;
	color: rgba(255,255,255,.6);
	margin-top: 1rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
.home .htr-footer {
	background: var(--htr-text);
	color: #fff;
	padding: 4rem 0 2rem;
}

.home .htr-footer-grid {
	width: min(var(--htr-container), calc(100% - 2rem));
	margin: 0 auto 2rem;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 2.5rem;
}

.home .htr-footer-description {
	font-size: 0.88rem;
	color: rgba(255,255,255,.55);
	line-height: 1.65;
	margin-top: 0.5rem;
}

.home .htr-footer h4 {
	color: rgba(255,255,255,.9);
	font-size: 0.88rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
}

.home .htr-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.home .htr-footer ul li {
	margin-bottom: 0.5rem;
}

.home .htr-footer a {
	color: rgba(255,255,255,.6);
	text-decoration: none;
	font-size: 0.88rem;
	transition: color .2s;
}

.home .htr-footer a:hover {
	color: rgba(255,255,255,.95);
}

.home .htr-footer-bottom {
	width: min(var(--htr-container), calc(100% - 2rem));
	margin: 0 auto;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255,255,255,.1);
	text-align: center;
	color: rgba(255,255,255,.4);
	font-size: 0.85rem;
}

.home .htr-legal-bar {
	display: none !important;
}

/* ================================================================
   SCROLL ANIMATION — fade-in on scroll via IntersectionObserver
   ================================================================ */
.htr-animate {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .55s ease, transform .55s ease;
}

.htr-animate.htr-visible {
	opacity: 1;
	transform: translateY(0);
}

.htr-animate-delay-1 { transition-delay: .1s; }
.htr-animate-delay-2 { transition-delay: .2s; }
.htr-animate-delay-3 { transition-delay: .3s; }
.htr-animate-delay-4 { transition-delay: .4s; }

/* ================================================================
   PATH B helpers (native front-page.php)
   ================================================================ */
.htr-front-page,
.htr-front-page .site-main {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 980px) {
	.home section#guides .htr-grid-guides,
	.home .htr-grid-trust {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.home .htr-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.home .htr-grid-cats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home .htr-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.home .htr-footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.home .htr-menu-toggle {
		display: inline-block;
	}

	.home .htr-nav-links {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 0.5rem 0 0.75rem;
		border-top: 1px solid rgba(15,100,99,.08);
	}

	.home .htr-nav-links.open {
		display: flex;
	}

	.home .htr-nav-links li {
		width: 100%;
	}

	.home .htr-nav-links a {
		display: block;
		padding: 0.55rem 0;
		border-bottom: none;
	}

	.home .htr-hero {
		padding: 4rem 0 5.5rem;
	}

	.home .htr-hero h1 {
		font-size: clamp(2rem, 8vw, 2.8rem);
	}

	.home section#guides .htr-grid-guides,
	.home .htr-grid-trust,
	.home .htr-stats {
		grid-template-columns: 1fr !important;
	}

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

	.home .htr-footer-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.home .htr-search-row {
		flex-direction: column;
	}

	.home .htr-search-input,
	.home .htr-search-button {
		width: 100%;
	}

	.home .htr-newsletter-form {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.home .htr-grid-cats {
		grid-template-columns: 1fr;
	}
}
