/*
Theme Name: Review Jaket
Theme URI: https://reviewjaket.example
Author: Review Jaket
Author URI: https://reviewjaket.example
Description: Theme majalah kurasi review jaket outdoor & urban Indonesia. Desain editorial minimalis dengan tipografi Plus Jakarta Sans, palet Soft Off-White / Deep Charcoal / Burnt Orange. Fitur: header sticky dengan live search, hero kurasi + filter cepat, Verdict Card review (skor, kelebihan, kekurangan, CTA afiliasi), TOC sticky, schema markup Product/Review/FAQPage, Weather & Purpose Matcher interaktif, katalog perawatan material, dan newsletter Drop Alert. Ringan dengan target LCP < 1.8s.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.1.2
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reviewjaket
Tags: blog, news, editorial, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =====================================================
   1. DESIGN TOKENS
   ===================================================== */
:root {
	/* Palet warna */
	--bg: #F9F9FB;              /* Soft Off-White */
	--bg-elevated: #FFFFFF;
	--bg-subtle: #F1F2F5;
	--text: #1A1A1A;            /* Deep Charcoal */
	--text-muted: #55565B;
	--text-faint: #8A8B90;
	--accent: #D9531E;          /* Burnt Orange */
	--accent-hover: #B84317;
	--accent-soft: #FBEDE5;
	--olive: #2C4A3E;           /* Deep Olive */
	--olive-soft: #E8EFEA;
	--border: #E6E7EB;
	--border-strong: #D4D5DA;

	/* Tipografi */
	--font-head: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	/* Skala & layout */
	--site-width: 1200px;
	--content-width: 720px;
	--radius-sm: 8px;
	--radius: 14px;
	--radius-lg: 20px;
	--shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.05);
	--shadow:  0 6px 24px rgba(26, 26, 26, 0.08);
	--shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.14);
	--header-height: 72px;
	--transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   2. RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 17px;          /* minimal 17px sesuai spek */
	line-height: 1.7;         /* line-height 1.7 sesuai spek */
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
img { border-style: none; }

a {
	color: var(--accent);
	text-decoration: none;
	transition: color var(--transition);
}
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	color: var(--text);
	line-height: 1.22;
	letter-spacing: -0.02em;
	font-weight: 800;
	margin: 0 0 0.5em;
	text-wrap: balance;
}

p { margin: 0 0 1.2em; }

.wrap {
	max-width: var(--site-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* =====================================================
   3. ACCESSIBILITY
   ===================================================== */
.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; overflow: hidden;
	padding: 0; position: absolute !important; word-wrap: normal !important;
}
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--text); color: #fff; padding: 10px 18px;
	border-radius: 0 0 var(--radius-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
	border-radius: 2px;
}

::selection { background: var(--accent); color: #fff; }

/* =====================================================
   4. ELEMEN UMUM: tombol, badge, pill, section
   ===================================================== */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	background: var(--accent); color: #fff;
	font-family: var(--font-head); font-weight: 700; font-size: 15px;
	padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
	cursor: pointer; text-decoration: none;
	transition: background var(--transition), transform var(--transition), color var(--transition);
}
.btn:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-ghost {
	background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--text); color: #fff; border-color: var(--text); }

.btn-olive { background: var(--olive); }
.btn-olive:hover { background: #233d33; }

.badge {
	display: inline-block; font-size: 12px; font-weight: 700;
	letter-spacing: 0.06em; text-transform: uppercase;
	background: var(--text); color: #fff;
	padding: 4px 10px; border-radius: 999px;
	text-decoration: none;
}
.badge:hover { color: #fff; opacity: 0.85; }
.badge-accent { background: var(--accent); }
.badge-olive { background: var(--olive); }

.pill {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--bg-elevated); color: var(--text);
	border: 1.5px solid var(--border-strong);
	font-size: 14px; font-weight: 600; font-family: var(--font-head);
	padding: 8px 16px; border-radius: 999px; text-decoration: none;
	transition: all var(--transition);
}
.pill:hover { border-color: var(--text); color: var(--text); background: var(--bg-subtle); }
.pill .pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

.section { padding: 64px 0; }
.section-tint { background: var(--bg-elevated); border-block: 1px solid var(--border); }

.section-head { margin-bottom: 36px; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 6px; }
.section-head .section-sub { color: var(--text-muted); margin: 0; font-size: 15.5px; max-width: 560px; }
.section-link { font-weight: 700; font-size: 14.5px; white-space: nowrap; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }

.eyebrow {
	font-family: var(--font-head); font-size: 13px; font-weight: 800;
	letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
	margin: 0 0 14px;
}

/* =====================================================
   5. HEADER + NAVIGASI + PENCARIAN
   ===================================================== */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(249, 249, 251, 0.88);
	-webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px; height: var(--header-height);
}

.site-branding { flex: none; }
.site-logo {
	font-family: var(--font-head); font-weight: 800; font-size: 21px;
	letter-spacing: -0.03em; color: var(--text); text-decoration: none;
	display: inline-flex; align-items: center; gap: 2px;
}
.site-logo:hover { color: var(--text); }
.site-logo .logo-dot { color: var(--accent); }
.site-logo .custom-logo { max-height: 44px; width: auto; }

.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; }
.primary-nav li { position: relative; }
.primary-nav a {
	display: block; padding: 9px 14px; border-radius: 999px;
	color: var(--text); font-family: var(--font-head); font-weight: 600; font-size: 15px;
	text-decoration: none; transition: background var(--transition), color var(--transition);
}
.primary-nav a:hover { background: var(--bg-subtle); color: var(--text); }
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { background: var(--text); color: #fff; }
.primary-nav .current-menu-item > a:hover { color: #fff; }

/* Sub menu */
.primary-nav .sub-menu {
	position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
	background: var(--bg-elevated); border: 1px solid var(--border);
	border-radius: var(--radius); box-shadow: var(--shadow);
	padding: 8px; display: none; flex-direction: column; gap: 2px;
}
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu { display: flex; }
.primary-nav .sub-menu a { padding: 9px 14px; border-radius: var(--radius-sm); }

.header-actions { display: flex; align-items: center; gap: 8px; flex: none; }
.icon-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 50%;
	background: transparent; border: 1.5px solid transparent; color: var(--text);
	cursor: pointer; transition: all var(--transition);
}
.icon-btn:hover { background: var(--bg-subtle); border-color: var(--border); color: var(--text); }
.icon-btn svg { width: 20px; height: 20px; }

.nav-toggle { display: none; }
.nav-toggle .bars { display: flex; flex-direction: column; gap: 4.5px; }
.nav-toggle .bars span { width: 20px; height: 2px; border-radius: 2px; background: currentColor; transition: transform var(--transition), opacity var(--transition); }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Panel pencarian (live search) */
.search-panel {
	position: absolute; inset-inline: 0; top: 100%;
	background: var(--bg-elevated);
	border-bottom: 1px solid var(--border);
	box-shadow: var(--shadow);
	padding: 20px 0 24px;
}
.search-panel[hidden] { display: none; }
.search-panel .wrap { max-width: 720px; }

.search-form { display: flex; gap: 10px; }
.search-form label { flex: 1; display: flex; }
.search-field {
	width: 100%; font-family: var(--font-body); font-size: 17px;
	padding: 13px 18px; border-radius: 999px;
	border: 1.5px solid var(--border-strong); background: var(--bg);
	color: var(--text); transition: border-color var(--transition);
}
.search-field:focus { outline: none; border-color: var(--accent); background: var(--bg-elevated); }
.search-submit {
	flex: none; display: inline-flex; align-items: center; justify-content: center;
	width: 50px; height: 50px; border-radius: 50%;
	border: none; background: var(--accent); color: #fff; cursor: pointer;
	transition: background var(--transition);
}
.search-submit:hover { background: var(--accent-hover); }
.search-submit svg { width: 19px; height: 19px; }

.search-results { margin-top: 12px; }
.search-results:not(:empty) {
	border: 1px solid var(--border); border-radius: var(--radius);
	overflow: hidden; background: var(--bg);
}
.search-result {
	display: block; padding: 12px 16px; text-decoration: none;
	border-bottom: 1px solid var(--border);
}
.search-result:last-child { border-bottom: none; }
.search-result:hover, .search-result.is-active { background: var(--bg-subtle); }
.search-result .sr-title { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--text); }
.search-result .sr-type { font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; }
.search-status { font-size: 14px; color: var(--text-muted); padding: 10px 4px; }
.search-hint { font-size: 13.5px; color: var(--text-faint); margin: 10px 4px 0; }

/* Navigasi mobile */
.mobile-nav { display: none; }
.mobile-nav[hidden] { display: none; }

@media (max-width: 920px) {
	.primary-nav { display: none; }
	.nav-toggle { display: inline-flex; }
	.mobile-nav {
		display: block; position: absolute; inset-inline: 0; top: 100%;
		background: var(--bg-elevated); border-bottom: 1px solid var(--border);
		box-shadow: var(--shadow); padding: 14px 24px 22px;
	}
	.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
	.mobile-nav a {
		display: block; padding: 13px 6px; font-family: var(--font-head);
		font-weight: 700; font-size: 17px; color: var(--text); text-decoration: none;
		border-bottom: 1px solid var(--border);
	}
	.mobile-nav a:hover { color: var(--accent); }
}

/* Bar progres baca (single) */
.reading-progress {
	position: fixed; top: 0; left: 0; height: 3px; width: 0;
	background: var(--accent); z-index: 100; pointer-events: none;
}

/* =====================================================
   6. HERO BERANDA
   ===================================================== */
.hero { padding: 56px 0 24px; }
.hero-grid {
	display: grid; grid-template-columns: 1.05fr 0.95fr;
	gap: 56px; align-items: center;
}
.hero h1 {
	font-size: clamp(2rem, 4.6vw, 3.05rem);
	letter-spacing: -0.035em; margin: 0 0 18px;
}
.hero-lead { font-size: 18px; color: var(--text-muted); max-width: 52ch; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 32px; }

.quick-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.filters-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); margin-right: 4px; }

.hero-media {
	margin: 0; border-radius: var(--radius-lg); overflow: hidden;
	box-shadow: var(--shadow-lg); position: relative;
	background: var(--olive); aspect-ratio: 16 / 10;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-fallback {
	width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
	color: rgba(255, 255, 255, 0.92);
}
.hero-media-fallback svg { width: 46%; height: auto; opacity: 0.95; }

@media (max-width: 920px) {
	.hero { padding-top: 36px; }
	.hero-grid { grid-template-columns: 1fr; gap: 32px; }
	.hero-media { order: -1; }
}

/* =====================================================
   7. KARTU ARTIKEL (POST CARD)
   ===================================================== */
.cards-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }

.post-card {
	background: var(--bg-elevated); border: 1px solid var(--border);
	border-radius: var(--radius); overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-strong); }

.card-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-subtle); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1); }
.post-card:hover .card-media img { transform: scale(1.04); }
.card-media .badge { position: absolute; top: 12px; left: 12px; z-index: 2; }

.score-chip {
	position: absolute; top: 12px; right: 12px; z-index: 2;
	background: var(--accent); color: #fff;
	font-family: var(--font-head); font-weight: 800; font-size: 13.5px;
	padding: 4px 10px; border-radius: 999px;
	box-shadow: 0 2px 8px rgba(217, 83, 30, 0.4);
}
.score-chip small { font-size: 10px; font-weight: 700; opacity: 0.85; margin-left: 1px; }

.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-title { font-size: 19px; line-height: 1.32; margin: 0; font-weight: 700; letter-spacing: -0.015em; }
.card-title a { color: var(--text); }
.card-title a:hover { color: var(--accent); }
.card-excerpt { color: var(--text-muted); font-size: 15px; line-height: 1.62; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-meta { margin-top: auto; padding-top: 6px; font-size: 13.5px; color: var(--text-faint); display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.card-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.6; }
.card-meta .read-time { color: var(--olive); font-weight: 600; }

/* =====================================================
   8. WEATHER & PURPOSE MATCHER (interaktif)
   ===================================================== */
.matcher-card {
	background: var(--bg-elevated); border: 1px solid var(--border);
	border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px);
	box-shadow: var(--shadow-sm);
}
.matcher-intro { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 26px; }
.matcher-icon {
	flex: none; width: 52px; height: 52px; border-radius: 16px;
	background: var(--olive-soft); color: var(--olive);
	display: flex; align-items: center; justify-content: center;
}
.matcher-icon svg { width: 28px; height: 28px; }
.matcher-intro h2 { font-size: clamp(1.3rem, 2.6vw, 1.65rem); margin: 0 0 4px; }
.matcher-intro p { margin: 0; color: var(--text-muted); font-size: 15px; }

.matcher-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 30px; }
.matcher-controls fieldset { border: none; margin: 0; padding: 0; }
.matcher-controls legend {
	font-family: var(--font-head); font-weight: 800; font-size: 13px;
	text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);
	padding: 0; margin-bottom: 12px;
}
.pill-options { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-options input { position: absolute; opacity: 0; pointer-events: none; }
.pill-options label {
	cursor: pointer; user-select: none;
	display: inline-flex; align-items: center; gap: 7px;
	border: 1.5px solid var(--border-strong); background: var(--bg);
	color: var(--text); font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
	padding: 9px 18px; border-radius: 999px;
	transition: all var(--transition);
}
.pill-options label:hover { border-color: var(--text); }
.pill-options input:checked + label {
	background: var(--text); border-color: var(--text); color: #fff;
}
.pill-options input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; }

.matcher-results { min-height: 120px; }
.matcher-hint {
	display: flex; align-items: center; gap: 12px;
	background: var(--bg-subtle); border: 1px dashed var(--border-strong);
	border-radius: var(--radius); padding: 22px 24px; color: var(--text-muted); font-size: 15.5px;
}
.matcher-hint svg { flex: none; width: 22px; height: 22px; color: var(--accent); }

.matcher-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.matcher-item {
	background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
	padding: 20px; display: flex; flex-direction: column; gap: 8px;
	animation: matcherIn 0.35s ease both;
}
@keyframes matcherIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.matcher-item .mi-tag { align-self: flex-start; }
.matcher-item h3 { font-size: 16.5px; margin: 0; letter-spacing: -0.01em; }
.matcher-item p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.55; flex: 1; }
.matcher-item .mi-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.matcher-item .mi-price { font-family: var(--font-head); font-weight: 800; font-size: 14.5px; color: var(--olive); white-space: nowrap; }
.matcher-item .mi-link { font-size: 13.5px; font-weight: 700; white-space: nowrap; }
@media (max-width: 900px) { .matcher-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) {
	.matcher-controls { grid-template-columns: 1fr; gap: 20px; }
	.matcher-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   9. KATALOG PERAWATAN MATERIAL
   ===================================================== */
.materials-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.material-card {
	display: flex; flex-direction: column; gap: 8px;
	background: var(--bg-elevated); border: 1px solid var(--border);
	border-radius: var(--radius); padding: 22px 20px; text-decoration: none;
	transition: all var(--transition); min-height: 150px;
}
.material-card:hover { border-color: var(--olive); background: var(--olive-soft); transform: translateY(-3px); }
.material-card .mc-icon { font-size: 22px; line-height: 1; }
.material-card h3 { font-size: 16px; margin: 0; color: var(--text); }
.material-card p { margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.5; flex: 1; }
.material-card .mc-arrow { font-size: 13px; font-weight: 700; color: var(--olive); }
@media (max-width: 980px) { .materials-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .materials-grid { grid-template-columns: repeat(2, 1fr); } }

/* =====================================================
   10. SECTION PILLAR (silo architecture)
   ===================================================== */
.pillar-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: stretch; }
.pillar-main {
	position: relative; border-radius: var(--radius-lg); overflow: hidden;
	min-height: 340px; display: flex; align-items: flex-end;
	background: var(--text); box-shadow: var(--shadow);
}
.pillar-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.62; }
.pillar-main .pillar-body {
	position: relative; z-index: 2; padding: 32px; color: #fff; width: 100%;
	background: linear-gradient(to top, rgba(20, 20, 20, 0.92) 0%, rgba(20, 20, 20, 0.35) 65%, transparent 100%);
}
.pillar-main h3 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 10px 0 8px; }
.pillar-main p { color: rgba(255, 255, 255, 0.85); margin: 0 0 14px; font-size: 15px; max-width: 56ch; }
.pillar-main .btn { font-size: 14px; padding: 11px 22px; }

.cluster-list {
	list-style: none; margin: 0; padding: 0;
	background: var(--bg-elevated); border: 1px solid var(--border);
	border-radius: var(--radius-lg); overflow: hidden;
	display: flex; flex-direction: column;
}
.cluster-list li { border-bottom: 1px solid var(--border); }
.cluster-list li:last-child { border-bottom: none; }
.cluster-list a {
	display: flex; flex-direction: column; gap: 3px;
	padding: 17px 22px; text-decoration: none; transition: background var(--transition);
}
.cluster-list a:hover { background: var(--bg-subtle); }
.cluster-list .cl-cat { font-size: 11.5px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent); }
.cluster-list .cl-title { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--text); line-height: 1.35; }
@media (max-width: 900px) { .pillar-grid { grid-template-columns: 1fr; } }

/* =====================================================
   11. BREADCRUMB
   ===================================================== */
.breadcrumbs {
	font-size: 13.5px; color: var(--text-faint); padding: 20px 0 0;
}
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li + li::before { content: "\203A"; color: var(--text-faint); font-size: 15px; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs [aria-current="page"] { color: var(--text); font-weight: 600; }

/* =====================================================
   12. SINGLE POST — LAYOUT EDITORIAL
   ===================================================== */
.single-header {
	padding: 28px 0 8px;
	max-width: var(--content-width);
	margin: 0 auto;
}
.single-article.has-toc .single-header {
	max-width: calc(250px + 56px + var(--content-width));
}
.single-header .entry-cats { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.single-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.03em; margin: 0 0 16px;
}
.entry-meta {
	display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
	color: var(--text-muted); font-size: 14px; margin: 0 0 22px; padding: 0;
	list-style: none;
}
.entry-meta .byline { display: flex; align-items: center; gap: 9px; }
.entry-meta .avatar { border-radius: 50%; width: 34px; height: 34px; }
.entry-meta .author-name { font-weight: 700; color: var(--text); }
.entry-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-faint); }
.updated-on { color: var(--text-faint); font-size: 13px; }

.share-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.share-row .share-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-faint); margin-right: 4px; }
.share-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 50%;
	border: 1.5px solid var(--border-strong); color: var(--text-muted);
	background: var(--bg-elevated); cursor: pointer; text-decoration: none;
	transition: all var(--transition);
}
.share-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.share-btn svg { width: 16px; height: 16px; }

/* Layout artikel: 1 kolom centered (default/no-toc) vs 2 kolom (has-toc) */
.single-layout {
	display: grid;
	gap: 56px;
	justify-content: center;
	padding: 32px 0 24px;
	margin: 0 auto;
}
.single-layout,
.single-layout.no-toc {
	grid-template-columns: minmax(0, var(--content-width));
	max-width: var(--content-width);
}
.single-layout.has-toc {
	grid-template-columns: 250px minmax(0, var(--content-width));
	max-width: calc(250px + 56px + var(--content-width));
}
@media (max-width: 1080px) {
	.single-layout.has-toc {
		grid-template-columns: minmax(0, var(--content-width));
		max-width: var(--content-width);
	}
	.single-article.has-toc .single-header {
		max-width: var(--content-width);
	}
}

.toc-column:empty {
	display: none !important;
}

/* Konten dibatasi 720px */
.entry-content {
	max-width: var(--content-width);
	font-size: 17.5px;
	width: 100%;
}

/* — Table of Contents sticky — */
.toc-column { align-self: stretch; }
.toc-wrap { position: sticky; top: calc(var(--header-height) + 24px); }
.toc-inner {
	position: static;
	background: var(--bg-elevated); border: 1px solid var(--border);
	border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm);
}
.toc-heading {
	font-family: var(--font-head); font-size: 12px; font-weight: 800;
	letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint);
	margin: 0 0 12px; display: flex; align-items: center; gap: 8px;
}
.toc-heading svg { width: 15px; height: 15px; color: var(--accent); }
.toc-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.toc-nav a {
	display: block; padding: 6px 10px; border-radius: var(--radius-sm);
	font-size: 13.5px; line-height: 1.45; color: var(--text-muted); text-decoration: none;
	border-left: 2px solid var(--border);
	transition: all var(--transition);
}
.toc-nav a:hover { color: var(--text); background: var(--bg-subtle); border-left-color: var(--accent); }
.toc-nav a.is-active { color: var(--text); font-weight: 700; border-left-color: var(--accent); background: var(--accent-soft); }
.toc-nav .toc-h3 a { padding-left: 24px; font-size: 13px; }
.toc-toggle { display: none; }

@media (max-width: 1080px) {
	.toc-column { align-self: auto; }
	.toc-wrap { position: static; }
	.toc-inner { position: static; }
	.toc-toggle {
		display: flex; width: 100%; align-items: center; justify-content: space-between;
		background: none; border: none; cursor: pointer; padding: 0;
		font-family: var(--font-head); font-size: 12px; font-weight: 800;
		letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint);
	}
	.toc-toggle svg { width: 16px; height: 16px; transition: transform var(--transition); }
	.toc-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
	.toc-nav { display: none; }
	.toc-nav.is-open { display: block; margin-top: 14px; }
}

/* =====================================================
   13. VERDICT CARD (review)
   ===================================================== */
.verdict-card {
	max-width: var(--content-width);
	background: var(--bg-elevated); border: 1px solid var(--border);
	border-top: 4px solid var(--accent);
	border-radius: var(--radius-lg); box-shadow: var(--shadow);
	padding: clamp(22px, 4vw, 34px); margin: 8px auto 8px;
}
.verdict-card.no-score { border-top-color: var(--olive); }
.verdict-top { display: flex; gap: 24px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }

.score-ring {
	--pct: 88;
	position: relative; flex: none;
	width: 104px; height: 104px; border-radius: 50%;
	background: conic-gradient(var(--accent) calc(var(--pct) * 1%), var(--border) 0);
	display: grid; place-items: center;
}
.score-ring::before {
	content: ""; position: absolute; inset: 9px;
	background: var(--bg-elevated); border-radius: 50%;
}
.score-ring .score-num {
	position: relative; z-index: 1; text-align: center;
	font-family: var(--font-head); font-weight: 800; font-size: 26px; line-height: 1;
	letter-spacing: -0.02em; color: var(--text);
}
.score-ring .score-num small { display: block; font-size: 10.5px; font-weight: 700; color: var(--text-faint); letter-spacing: 0.08em; margin-top: 3px; }

.verdict-summary { flex: 1; min-width: 240px; }
.verdict-summary .v-label {
	font-family: var(--font-head); font-size: 11.5px; font-weight: 800;
	letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent); margin: 0 0 6px;
}
.verdict-summary h2 { font-size: 20px; margin: 0 0 8px; letter-spacing: -0.015em; }
.verdict-summary p { margin: 0; color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.verdict-summary .v-brand { margin-top: 10px; font-size: 13px; color: var(--text-faint); }
.verdict-summary .v-brand strong { color: var(--text); }

.verdict-proscons {
	display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
	padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.verdict-proscons h3 {
	font-size: 12.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
	margin: 0 0 10px; display: flex; align-items: center; gap: 7px;
}
.verdict-proscons .pros h3 { color: var(--olive); }
.verdict-proscons .cons h3 { color: var(--accent); }
.verdict-proscons h3 svg { width: 15px; height: 15px; }
.verdict-proscons ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.verdict-proscons li { position: relative; padding-left: 20px; font-size: 14.5px; line-height: 1.55; color: var(--text-muted); }
.verdict-proscons li::before {
	content: ""; position: absolute; left: 0; top: 8px;
	width: 8px; height: 8px; border-radius: 50%;
}
.verdict-proscons .pros li::before { background: var(--olive); }
.verdict-proscons .cons li::before { background: var(--accent); }

.verdict-cta { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 20px; }
.verdict-price .vp-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); font-weight: 700; }
.verdict-price .vp-amount { font-family: var(--font-head); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; }
.verdict-cta .btn { font-size: 15.5px; padding: 14px 30px; }
.verdict-note { margin: 14px 0 0; font-size: 12.5px; color: var(--text-faint); }
@media (max-width: 640px) {
	.verdict-proscons { grid-template-columns: 1fr; gap: 16px; }
	.verdict-cta { justify-content: flex-start; }
}

/* =====================================================
   14. TIPOGRAFI KONTEN ARTIKEL (720px)
   ===================================================== */
.entry-content > * { max-width: 100%; }
.entry-content h2 {
	font-size: clamp(1.4rem, 2.6vw, 1.7rem); margin: 2.1em 0 0.65em; letter-spacing: -0.02em;
	scroll-margin-top: calc(var(--header-height) + 32px);
}
.entry-content h3 {
	font-size: clamp(1.15rem, 2vw, 1.3rem); margin: 1.7em 0 0.5em;
	scroll-margin-top: calc(var(--header-height) + 32px);
}
.entry-content p { margin: 0 0 1.35em; }
.entry-content a { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.entry-content a:hover { text-decoration-thickness: 2.5px; }

.entry-content ul, .entry-content ol { padding-left: 1.4em; margin: 0 0 1.35em; }
.entry-content li { margin-bottom: 0.5em; }
.entry-content li::marker { color: var(--accent); font-weight: 700; }

.entry-content img, .entry-content .wp-caption { border-radius: var(--radius); }
.entry-content figcaption, .entry-content .wp-caption-text {
	font-size: 13.5px; color: var(--text-faint); text-align: center; margin-top: 8px; padding: 0 8px;
}

.entry-content blockquote {
	margin: 1.8em 0; padding: 4px 0 4px 24px;
	border-left: 3px solid var(--accent);
	font-size: 19px; font-weight: 600; letter-spacing: -0.01em; color: var(--text);
	font-family: var(--font-head); line-height: 1.5;
}
.entry-content blockquote p { margin: 0 0 0.5em; }
.entry-content blockquote p:last-child { margin-bottom: 0; }
.entry-content blockquote cite {
	display: block; margin-top: 8px; font-size: 13.5px; font-weight: 600;
	color: var(--text-faint); font-family: var(--font-body);
}

.entry-content table {
	width: 100%; border-collapse: collapse; margin: 1.6em 0;
	font-size: 15px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.entry-content th {
	background: var(--bg-subtle); text-align: left;
	font-family: var(--font-head); font-weight: 700; font-size: 13.5px;
	text-transform: uppercase; letter-spacing: 0.05em;
}
.entry-content th, .entry-content td { padding: 11px 14px; border-bottom: 1px solid var(--border); }
.entry-content tr:last-child td { border-bottom: none; }

.entry-content code, .entry-content kbd {
	font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
	font-size: 0.88em; background: var(--bg-subtle);
	padding: 2px 7px; border-radius: 6px;
}
.entry-content pre {
	background: var(--text); color: #F3F3F5; border-radius: var(--radius);
	padding: 20px 24px; overflow-x: auto; line-height: 1.6; font-size: 14.5px;
}
.entry-content pre code { background: none; padding: 0; color: inherit; }

.entry-content hr { border: none; border-top: 1px solid var(--border); margin: 2.4em auto; width: 64%; }

/* Gutenberg: alignwide / alignfull */
.entry-content .alignwide { max-width: min(1100px, 92vw); margin-inline: auto; }
.entry-content .alignfull { max-width: 100vw; margin-inline: calc(50% - 50vw); border-radius: 0; }

/* Blok Gutenberg */
.wp-block-button__link {
	background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 700;
	border-radius: 999px; padding: 13px 26px; font-size: 15px;
}
.wp-block-button__link:hover { background: var(--accent-hover); color: #fff; }
.is-style-outline .wp-block-button__link { border-color: var(--text); color: var(--text); background: transparent; }
.wp-block-pullquote {
	border-top: 3px solid var(--accent); border-bottom: 3px solid var(--accent);
	padding: 28px 0; margin: 1.8em 0; text-align: center;
}
.wp-block-pullquote blockquote { border: none; padding: 0; font-size: 22px; }
.wp-block-separator { border: none; border-top: 1px solid var(--border); }
.wp-block-embed iframe, .wp-block-embed video { border-radius: var(--radius); max-width: 100%; }
.has-text-color a { color: inherit; }

/* =====================================================
   15. FAQ ACCORDION
   ===================================================== */
.faq-section { max-width: var(--content-width); margin: 48px auto 0; }
.faq-section h2 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); margin: 0 0 18px; }
.faq-item {
	background: var(--bg-elevated); border: 1px solid var(--border);
	border-radius: var(--radius); margin-bottom: 10px; overflow: hidden;
}
.faq-item summary {
	list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
	padding: 17px 22px; font-family: var(--font-head); font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "+"; flex: none; width: 26px; height: 26px; border-radius: 50%;
	background: var(--bg-subtle); color: var(--accent);
	display: grid; place-items: center; font-weight: 800; font-size: 17px; line-height: 1;
	transition: transform var(--transition), background var(--transition);
}
.faq-item[open] summary::after { content: "\2212"; background: var(--accent); color: #fff; }
.faq-item .faq-answer { padding: 0 22px 18px; color: var(--text-muted); font-size: 15.5px; line-height: 1.7; }
.faq-item .faq-answer p:last-child { margin-bottom: 0; }

/* =====================================================
   16. TAGS, AUTHOR BOX, RELATED, COMMENTS
   ===================================================== */
.post-tags { max-width: var(--content-width); margin: 44px auto 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.post-tags .tags-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-faint); margin-right: 4px; }

.affiliate-note {
	max-width: var(--content-width); margin: 22px auto 0;
	font-size: 13px; color: var(--text-faint); background: var(--bg-subtle);
	border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px;
	line-height: 1.6;
}

.author-box {
	max-width: var(--content-width); margin: 48px auto 0;
	background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg);
	padding: 26px 28px; display: flex; gap: 20px; align-items: flex-start;
}
.author-box .avatar { width: 64px; height: 64px; border-radius: 50%; flex: none; }
.author-box .ab-role { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); margin: 0 0 3px; }
.author-box h2 { font-size: 18px; margin: 0 0 6px; }
.author-box p { margin: 0 0 8px; font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }
.author-box .ab-link { font-size: 13.5px; font-weight: 700; }
@media (max-width: 560px) { .author-box { flex-direction: column; } }

.related-posts { max-width: var(--content-width); margin: 56px auto 0; }
.related-posts h2 { font-size: 1.35rem; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 720px) { .related-grid { grid-template-columns: 1fr; } }
.related-grid .post-card { border-radius: var(--radius); }
.related-grid .card-title { font-size: 15.5px; }
.related-grid .card-body { padding: 15px 17px 17px; }
.related-grid .card-excerpt { display: none; }

/* Komentar */
.comments-area { max-width: var(--content-width); margin: 56px auto 0; }
.comments-area h2 { font-size: 1.35rem; }
.comment-list { list-style: none; margin: 0 0 32px; padding: 0; }
.comment-list .comment { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-elevated); padding: 18px 20px; margin-bottom: 14px; }
.comment-list .children { list-style: none; margin-top: 14px; padding-left: 20px; }
.comment-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.comment-meta img { border-radius: 50%; }
.comment-meta .comment-author { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin: 0; }
.comment-meta .comment-metadata { font-size: 12.5px; }
.comment-content p { font-size: 15px; }
.comment-reply-link { font-size: 13px; font-weight: 700; }
.comment-form label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 5px; color: var(--text-muted); }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
	width: 100%; font-family: var(--font-body); font-size: 15.5px; padding: 11px 14px;
	border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm); background: var(--bg-elevated);
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--accent); }
.comment-form .submit {
	background: var(--accent); color: #fff; border: none; border-radius: 999px;
	font-family: var(--font-head); font-weight: 700; font-size: 15px;
	padding: 12px 26px; cursor: pointer;
}
.comment-form .submit:hover { background: var(--accent-hover); }
.comment-form p { margin-bottom: 16px; }

/* =====================================================
   17. NEWSLETTER (Drop Alert & Care Guide)
   ===================================================== */
.newsletter-card {
	background: var(--bg-elevated); border: 1px solid var(--border);
	border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px);
	max-width: var(--content-width); margin: 56px auto 0;
	position: relative; overflow: hidden;
}
.newsletter-card::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
	background: linear-gradient(90deg, var(--olive), var(--accent));
}
.newsletter-card h2 { font-size: clamp(1.25rem, 2.4vw, 1.55rem); margin: 0 0 8px; }
.newsletter-card .nl-sub { color: var(--text-muted); font-size: 15px; margin: 0 0 22px; max-width: 56ch; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form .nl-email {
	flex: 1; min-width: 240px; font-family: var(--font-body); font-size: 16px;
	padding: 13px 18px; border-radius: 999px;
	border: 1.5px solid var(--border-strong); background: var(--bg);
}
.newsletter-form .nl-email:focus { outline: none; border-color: var(--olive); background: var(--bg-elevated); }
.newsletter-form .hp { position: absolute; left: -9999px; opacity: 0; }
.newsletter-privacy { margin: 14px 0 0; font-size: 12.5px; color: var(--text-faint); }
.newsletter-success {
	display: flex; gap: 12px; align-items: flex-start;
	background: var(--olive-soft); border: 1px solid var(--olive);
	border-radius: var(--radius); padding: 16px 18px; color: var(--olive); font-weight: 600;
}
.newsletter-success svg { flex: none; width: 22px; height: 22px; margin-top: 1px; }

/* =====================================================
   18. ARCHIVE / SEARCH / HEADER HALAMAN
   ===================================================== */
.page-header { padding: 36px 0 8px; max-width: 860px; margin: 0 auto; }
.page-header .archive-count { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin: 0 0 10px; }
.page-title { font-size: clamp(1.6rem, 3.4vw, 2.2rem); letter-spacing: -0.03em; margin: 0 0 10px; }
.archive-description { color: var(--text-muted); font-size: 16px; margin: 0 0 8px; max-width: 68ch; }

.posts-list { padding: 28px 0 64px; }

.no-results { max-width: var(--content-width); margin: 0 auto; padding: 32px 0 64px; text-align: center; }
.no-results h2 { font-size: 1.5rem; }
.no-results p { color: var(--text-muted); }
.no-results .search-form { max-width: 480px; margin: 24px auto 20px; }

/* Pagination */
.pagination, .navigation.pagination { padding: 8px 0 72px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center; }
.page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; height: 44px; padding: 0 14px;
	border: 1.5px solid var(--border-strong); border-radius: 999px;
	font-family: var(--font-head); font-weight: 700; font-size: 14.5px;
	color: var(--text); text-decoration: none; background: var(--bg-elevated);
	transition: all var(--transition);
}
.page-numbers:hover { border-color: var(--text); color: var(--text); }
.page-numbers.current { background: var(--text); border-color: var(--text); color: #fff; }
.page-numbers.dots { border: none; background: none; }

/* 404 */
.error-404 { text-align: center; padding: 80px 0 100px; }
.error-404 .code {
	font-family: var(--font-head); font-weight: 800; font-size: clamp(5rem, 16vw, 9rem);
	line-height: 1; letter-spacing: -0.05em; margin: 0;
	color: var(--text);
}
.error-404 .code span { color: var(--accent); }
.error-404 h1 { font-size: 1.5rem; margin: 12px 0 8px; }
.error-404 p { color: var(--text-muted); max-width: 46ch; margin: 0 auto 28px; }
.error-404 .search-form { max-width: 480px; margin: 0 auto 28px; }
.error-404 .pill { margin: 0 4px 8px; }

/* =====================================================
   19. FOOTER
   ===================================================== */
.site-footer {
	background: #141414; color: #B9BAC0; margin-top: 32px;
	font-size: 15px; line-height: 1.7;
}
.footer-grid {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px; padding: 60px 0 44px;
}
.site-footer .footer-brand {
	font-family: var(--font-head); font-weight: 800; font-size: 22px;
	color: #fff; letter-spacing: -0.03em; text-decoration: none;
	display: inline-flex; gap: 2px; margin-bottom: 14px;
}
.site-footer .footer-brand:hover { color: #fff; }
.site-footer .footer-brand .logo-dot { color: var(--accent); }
.site-footer .footer-about { margin: 0; font-size: 14.5px; max-width: 34ch; }
.site-footer h3 {
	color: #fff; font-size: 12.5px; font-weight: 800;
	letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.site-footer a { color: #B9BAC0; text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px;
	justify-content: space-between; align-items: center; font-size: 13px; color: #8A8B90;
}
.footer-disclosure { max-width: 640px; font-size: 12.5px; color: #8A8B90; line-height: 1.6; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* =====================================================
   20. UTILITIES & PRINT
   ===================================================== */
.toast {
	position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 12px);
	background: var(--text); color: #fff; font-size: 14px; font-weight: 600;
	padding: 11px 22px; border-radius: 999px; box-shadow: var(--shadow-lg);
	opacity: 0; pointer-events: none; transition: all 0.3s ease; z-index: 200;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media print {
	.site-header, .site-footer, .toc-wrap, .share-row, .newsletter-card,
	.related-posts, .comments-area, .reading-progress, .search-panel { display: none !important; }
	body { background: #fff; color: #000; }
}