/*
Theme Name: BaziGid Theme
Theme URI: https://bazigid.ru/
Description: Кастомная лёгкая классическая тема сайта «БацзыГид» (八字 / Четыре столпа судьбы). Каркас: серверный HTML, контроль над Core Web Vitals, минимум внешних зависимостей. Полная структура — theme/README.md в репозитории bazi-site.
Author: BaziGid dev
Version: 0.1.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bazi-theme
*/

:root {
	--bg: #fffdf9;
	--fg: #1c1a17;
	--muted: #6b6459;
	--accent: #8a1f1f;
	--border: #e6ddcd;
	--maxw: 46rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--fg);
	font: 400 1.05rem/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a { color: var(--accent); }

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

.site-header,
.site-footer { border-color: var(--border); }

.site-header {
	border-bottom: 1px solid var(--border);
	padding: 1rem 1.25rem;
}

.site-footer {
	border-top: 1px solid var(--border);
	padding: 2rem 1.25rem;
	color: var(--muted);
	font-size: 0.9rem;
}

.site-branding a {
	font-weight: 700;
	font-size: 1.15rem;
	text-decoration: none;
	color: var(--fg);
}

.site-nav a {
	margin-right: 1rem;
	text-decoration: none;
}

.site-main {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 2rem 1.25rem 3rem;
}

.entry-title { line-height: 1.2; }

.breadcrumbs {
	max-width: var(--maxw);
	margin: 1rem auto 0;
	padding: 0 1.25rem;
	font-size: 0.85rem;
	color: var(--muted);
}

.skip-link {
	position: absolute;
	left: -9999px;
}
.skip-link:focus {
	left: 1rem;
	top: 1rem;
	background: #fff;
	padding: 0.5rem 0.75rem;
	z-index: 100;
}

.pagination { margin-top: 2rem; display: flex; gap: 1rem; }
