html {
	scroll-behavior: smooth;
}

:root {
	--color-white: #ffffff;
	--color-snow: #f7faf8;
	--color-mint: #e8f5ec;
	--color-sage: #4caf7a;
	--color-sage-deep: #2e7d52;
	--color-ink: #1a2b23;
	--color-charcoal: #2d3a33;
	--color-warm-gray: #6b7c72;
	--color-border: #d4e4da;
	--color-success: #4caf7a;
	--color-warning: #f5a623;
	--color-error: #d32f2f;
	--font-heading: "Lora", Georgia, serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-mono: "JetBrains Mono", monospace;
	--text-hero: 2.5rem;
	--text-h1: 2rem;
	--text-h2: 1.5rem;
	--text-h3: 1.25rem;
	--text-body: 1rem;
	--text-small: 0.875rem;
	--text-xs: 0.75rem;
	--content-max: 1200px;
	--content-narrow: 720px;
	--header-height: 72px;
	--header-height-mobile: 60px;
	--radius-sm: 0.5rem;
	--radius-md: 1rem;
	--radius-lg: 1.5rem;
	--radius-full: 9999px;
	--shadow-sm: 0 12px 30px rgba(26, 43, 35, 0.06);
	--shadow-md: 0 20px 50px rgba(26, 43, 35, 0.1);
	--transition-base: 180ms ease;
	--transition-slow: 280ms ease;
	--container-padding: 1.25rem;
	--section-space: clamp(3.5rem, 6vw, 6rem);
}

@media (min-width: 768px) {
	:root {
		--text-hero: 4rem;
		--text-h1: 2.75rem;
		--text-h2: 2rem;
		--text-h3: 1.5rem;
		--container-padding: 1.5rem;
	}
}

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

html,
body {
	margin: 0;
	padding: 0;
}

body {
	min-width: 320px;
	background:
		radial-gradient(circle at top left, rgba(76, 175, 122, 0.09), transparent 28%),
		linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
	color: var(--color-charcoal);
	font-family: var(--font-body);
	font-size: var(--text-body);
	line-height: 1.7;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

main {
	display: block;
}

img,
picture,
svg,
video,
canvas {
	display: block;
	max-width: 100%;
	height: auto;
}

iframe {
	max-width: 100%;
	border: 0;
}

button,
input,
textarea,
select {
	font: inherit;
	color: inherit;
}

button {
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
}

input,
textarea,
select {
	width: 100%;
	padding: 0.9rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: var(--color-white);
	transition:
		border-color var(--transition-base),
		box-shadow var(--transition-base);
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--color-sage);
	box-shadow: 0 0 0 4px rgba(76, 175, 122, 0.14);
}

a {
	color: var(--color-sage-deep);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
	transition:
		color var(--transition-base),
		background-color var(--transition-base),
		border-color var(--transition-base),
		box-shadow var(--transition-base),
		transform var(--transition-base);
}

a:hover,
a:focus-visible {
	color: var(--color-sage);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 1rem;
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

h1 {
	font-size: var(--text-h1);
}

h2 {
	font-size: var(--text-h2);
}

h3 {
	font-size: var(--text-h3);
}

h4,
h5,
h6 {
	font-size: 1.125rem;
}

p,
ul,
ol,
dl,
blockquote,
figure,
table,
pre {
	margin: 0 0 1.25rem;
}

ul,
ol {
	padding-left: 1.3rem;
}

li + li {
	margin-top: 0.4rem;
}

blockquote {
	padding: 1.5rem 1.75rem;
	border-left: 4px solid var(--color-sage);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	background: rgba(76, 175, 122, 0.08);
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-size: 1.1rem;
}

code,
pre,
kbd,
samp {
	font-family: var(--font-mono);
	font-size: 0.95em;
}

pre {
	overflow-x: auto;
	padding: 1rem 1.25rem;
	border-radius: var(--radius-md);
	background: #eff5f1;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 0.85rem 1rem;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
}

hr {
	border: 0;
	border-top: 1px solid var(--color-border);
}

::selection {
	background: rgba(76, 175, 122, 0.2);
	color: var(--color-ink);
}

:focus-visible {
	outline: 3px solid rgba(76, 175, 122, 0.4);
	outline-offset: 3px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 1rem;
	left: 1rem;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 0.9rem 1.1rem;
	margin: 0;
	clip: auto;
	border-radius: var(--radius-sm);
	background: var(--color-ink);
	color: var(--color-white);
	font-weight: 700;
}

.container,
.alignwide {
	width: min(100% - (var(--container-padding) * 2), var(--content-max));
	margin-right: auto;
	margin-left: auto;
}

.container--narrow,
.alignnarrow {
	width: min(100% - (var(--container-padding) * 2), var(--content-narrow));
	margin-right: auto;
	margin-left: auto;
}

.grid-2,
.grid-3 {
	display: grid;
	gap: 1.5rem;
}

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

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

.site-main {
	padding-bottom: var(--section-space);
}

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

.section--alt {
	background: var(--color-snow);
}

/* ─── Header (Ševčík pattern) ────────────────────── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(18px);
	transition:
		box-shadow var(--transition-base),
		background-color var(--transition-base);
}

.site-header.is-scrolled {
	box-shadow: 0 4px 30px rgba(26, 43, 35, 0.08);
}

.site-header__bar {
	border-bottom: 1px solid rgba(212, 228, 218, 0.7);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 1rem 1.5rem;
}

.site-header__branding {
	flex: 1 1 auto;
}

.site-branding__name {
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	letter-spacing: -0.01em;
}

.site-branding__name:hover {
	color: var(--color-sage-deep);
}

/* Desktop navigation row */
.header-navigation {
	display: none;
	border-bottom: 1px solid rgba(212, 228, 218, 0.5);
}

.header-navigation__inner {
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0.65rem 1.5rem;
	text-align: center;
}

.menu,
.menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0 1.5rem;
}

.header-menu__list li a {
	display: inline-block;
	padding: 0.4rem 0;
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color var(--transition-base);
}

.header-menu__list li a:hover,
.header-menu__list li a:focus-visible {
	color: var(--color-sage-deep);
}

/* Mobile action buttons */
.site-header__utilities {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.site-header__search-toggle,
.site-header__menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	background: var(--color-white);
	color: var(--color-ink);
	cursor: pointer;
	transition: all var(--transition-base);
}

.site-header__search-toggle:hover,
.site-header__menu-toggle:hover {
	border-color: var(--color-sage);
	background: var(--color-mint);
}

/* Mobile fullscreen menu overlay — OUTSIDE header to avoid backdrop-filter */
.site-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	display: none;
	overflow-y: auto;
	background: #fff;
}

.site-menu-overlay[data-menu-open="true"] {
	display: block;
}

.site-menu-overlay__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100dvh;
	min-height: 100vh;
	padding: 4rem 1.5rem 2rem;
}

.site-menu-overlay__topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 1rem 1.5rem;
}

.site-menu-overlay__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: none;
	color: var(--color-ink);
	cursor: pointer;
}

.site-menu-overlay__nav .menu {
	flex-direction: column;
	gap: 0.5rem;
}

.site-menu-overlay__nav .menu li a {
	display: block;
	padding: 0.85rem 1.5rem;
	border-radius: 0;
	background: transparent;
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0;
	text-align: center;
	text-transform: none;
}

.site-menu-overlay__nav .menu li a:hover {
	color: var(--color-sage-deep);
}

/* Hide old panel */
.site-header__panel {
	display: none !important;
}

/* Search panel */
.site-header__search {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid var(--color-border);
	background: var(--color-snow);
}

.site-header__search-inner {
	max-width: var(--content-max);
	margin: 0 auto;
}

/* ─── Hero sections ────────────────────── */
.hero,
.home-hero,
.archive-hero,
.single-hero,
.page-hero {
	padding: clamp(3rem, 7vw, 6rem) 0;
}

.home-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 20% 0%, rgba(76, 175, 122, 0.1), transparent 50%),
		linear-gradient(180deg, #f0f8f3 0%, #f7faf8 60%, #ffffff 100%);
}

.page-hero {
	background: linear-gradient(180deg, var(--color-snow), #fff);
}

.archive-hero,
.single-hero {
	background: var(--color-snow);
}

.hero__inner,
.home-hero__inner,
.archive-hero__inner,
.single-hero__inner,
.page-hero__inner {
	display: grid;
	gap: 1.5rem;
	align-items: center;
}

.hero__eyebrow,
.entry-meta,
.post-card__meta,
.archive-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.9rem;
	align-items: center;
	color: var(--color-warm-gray);
	font-size: var(--text-small);
}

.entry-badge,
.post-card__badge,
.category-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.8rem;
	border-radius: var(--radius-full);
	background: var(--color-mint);
	color: var(--color-sage-deep);
	font-size: var(--text-xs);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero__title,
.home-hero__title,
.archive-hero__title,
.single-hero__title,
.page-hero__title {
	font-size: clamp(var(--text-h1), 5vw, var(--text-hero));
	margin-bottom: 0.75rem;
}

.hero__summary,
.archive-hero__summary,
.page-hero__summary {
	max-width: 62ch;
	color: var(--color-charcoal);
	font-size: 1.05rem;
}

.home-hero__content,
.home-hero__visual {
	display: grid;
	gap: 1.25rem;
}

.home-hero__meta-link {
	color: inherit;
	text-decoration: none;
}

.home-hero__actions,
.section-heading {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
}

.home-hero__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.home-hero__stats li {
	padding: 1.5rem;
	border: 1px solid rgba(212, 228, 218, 0.92);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 24px 60px rgba(26, 43, 35, 0.06);
	backdrop-filter: blur(8px);
}

.newsletter-cta__panel,
.category-links__item,
.empty-state {
	padding: 1.25rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.86);
	box-shadow: var(--shadow-sm);
}

.home-hero__stats strong {
	display: block;
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	line-height: 1;
}

.home-hero__stats span {
	display: block;
	margin-top: 0.45rem;
	color: var(--color-warm-gray);
	font-size: var(--text-small);
}

.home-hero__media,
.home-hero__fallback {
	display: block;
	min-height: 100%;
	overflow: hidden;
	border-radius: calc(var(--radius-lg) + 0.25rem);
	background: linear-gradient(135deg, rgba(232, 245, 236, 0.95), rgba(76, 175, 122, 0.18));
	box-shadow: var(--shadow-lg);
}

.home-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__fallback {
	display: grid;
	align-content: end;
	gap: 1rem;
	min-height: 22rem;
	padding: clamp(1.5rem, 4vw, 2.5rem);
}

.home-hero__fallback-label,
.section-heading__eyebrow {
	margin: 0;
	color: var(--color-sage-deep);
	font-size: var(--text-xs);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-heading {
	margin-bottom: 1.5rem;
}

.section-heading__title {
	margin: 0.25rem 0 0;
}

.section-heading__link {
	font-weight: 600;
	text-decoration: none;
}

.post-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(212, 228, 218, 0.92);
	border-radius: var(--radius-lg);
	background: var(--color-white);
	box-shadow: 0 12px 40px rgba(26, 43, 35, 0.06);
	transition:
		transform 240ms ease,
		box-shadow 240ms ease,
		border-color 240ms ease;
}

.post-card:hover,
.post-card:focus-within {
	transform: translateY(-4px);
	border-color: rgba(76, 175, 122, 0.4);
	box-shadow: 0 28px 70px rgba(26, 43, 35, 0.12);
}

.post-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(232, 245, 236, 0.8), rgba(247, 250, 248, 1));
}

.post-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(232, 245, 236, 0.95), rgba(76, 175, 122, 0.2));
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.25rem;
}

.post-card__title {
	margin-bottom: 0.75rem;
	font-size: 1.5rem;
}

.post-card__title a {
	color: inherit;
	text-decoration: none;
}

.post-card__excerpt {
	color: var(--color-charcoal);
	font-size: 0.98rem;
}

.post-card__link {
	margin-top: auto;
	font-weight: 600;
	text-decoration: none;
}

.category-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.category-links__item {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.4rem;
	border: 1px solid rgba(212, 228, 218, 0.92);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 12px 40px rgba(26, 43, 35, 0.05);
	color: inherit;
	text-decoration: none;
	transition:
		transform 240ms ease,
		box-shadow 240ms ease,
		border-color 240ms ease,
		background-color 240ms ease;
}

.category-links__item:hover,
.category-links__item:focus-visible {
	transform: translateY(-3px);
	border-color: rgba(76, 175, 122, 0.45);
	background: rgba(232, 245, 236, 0.5);
	box-shadow: 0 24px 60px rgba(26, 43, 35, 0.1);
}

.category-links__name {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--color-ink);
}

.category-links__count,
.newsletter-cta__note,
.empty-state p {
	color: var(--color-warm-gray);
}

.newsletter-cta {
	display: grid;
	gap: 1.5rem;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(135deg, rgba(76, 175, 122, 0.12), rgba(232, 245, 236, 0.8)),
		var(--color-white);
	border: 1px solid rgba(76, 175, 122, 0.18);
}

.newsletter-cta__content {
	display: grid;
	gap: 1rem;
}

.newsletter-cta__content p:last-child,
.newsletter-cta__note,
.empty-state h3 {
	margin: 0;
}

.newsletter-cta__panel {
	display: grid;
	gap: 1rem;
	align-content: start;
}

.page-layout {
	display: grid;
	gap: 2rem;
}

.page-layout--has-sidebar {
	align-items: start;
}

.page-main {
	min-width: 0;
}

.page-sidebar,
.page-hero__aside {
	min-width: 0;
}

.contact-cta,
.contact-sidebar-card {
	display: grid;
	gap: 1rem;
	padding: clamp(1.35rem, 3vw, 2rem);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(135deg, rgba(232, 245, 236, 0.86), rgba(255, 255, 255, 0.96)),
		var(--color-white);
	box-shadow: var(--shadow-sm);
}

.contact-cta__title,
.contact-sidebar-card__email {
	margin: 0;
}

.contact-cta__text,
.contact-sidebar-card__list {
	color: var(--color-charcoal);
}

.contact-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.contact-sidebar-card {
	position: sticky;
	top: calc(var(--header-height) + 2rem);
}

.contact-sidebar-card__list {
	padding-left: 1.2rem;
	margin: 0;
}

.contact-sidebar-card__list li + li {
	margin-top: 0.65rem;
}

.contact-sidebar-card__email a {
	font-weight: 600;
	word-break: break-word;
}

.newsletter-cta__field {
	padding: 0.95rem 1rem;
	border: 1px dashed var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-white);
	color: var(--color-warm-gray);
}

.empty-state {
	display: grid;
	gap: 0.75rem;
}

.breadcrumbs {
	margin: 0 0 1.5rem;
	font-size: var(--text-small);
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	padding: 0;
	margin: 0;
	list-style: none;
	color: var(--color-warm-gray);
}

.breadcrumbs__item {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

.breadcrumbs__item:not(:last-child)::after {
	content: "/";
	color: var(--color-border);
}

.breadcrumbs__link {
	text-decoration: none;
}

.breadcrumbs__current {
	color: var(--color-ink);
	font-weight: 600;
}

.pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	justify-content: center;
	margin-top: 2.5rem;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	height: 2.75rem;
	padding: 0 0.85rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-full);
	background: var(--color-white);
	color: var(--color-ink);
	font-weight: 600;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover,
.page-numbers:focus-visible {
	border-color: var(--color-sage);
	background: var(--color-mint);
	color: var(--color-sage-deep);
}

.search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.75rem;
	align-items: center;
}

.search-form label {
	margin: 0;
}

.search-form .search-field {
	min-width: 0;
}

.search-form .search-submit,
.button,
button.button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.4rem;
	border: 1px solid transparent;
	border-radius: var(--radius-full);
	background: var(--color-sage);
	color: var(--color-white);
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	box-shadow: var(--shadow-sm);
	transition:
		transform var(--transition-base),
		background-color var(--transition-base),
		box-shadow var(--transition-base);
}

.search-form .search-submit:hover,
.search-form .search-submit:focus-visible,
.button:hover,
.button:focus-visible,
button.button:hover,
button.button:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible {
	transform: translateY(-1px);
	background: var(--color-sage-deep);
	box-shadow: var(--shadow-md);
	color: var(--color-white);
}

.button--secondary {
	border-color: var(--color-border);
	background: var(--color-white);
	color: var(--color-sage-deep);
}

/* ─── Minimal footer ────────────────────── */
.site-footer {
	padding: 2.5rem 0 1.5rem;
	background: var(--color-ink);
	color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
	color: var(--color-white);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--color-sage);
}

.site-footer__main {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 2rem;
	justify-content: space-between;
}

.site-footer__brand {
	flex: 1 1 auto;
	min-width: 200px;
}

.site-footer__logo {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-white);
	text-decoration: none;
}

.site-footer__tagline {
	margin: 0.4rem 0 0;
	font-size: var(--text-small);
	color: rgba(255, 255, 255, 0.6);
}

.site-footer__nav {
	flex: 0 1 auto;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.4rem 1.25rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer__links li {
	line-height: 1.4;
}

.site-footer__links a {
	font-size: var(--text-small);
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.2s;
}

.site-footer__links a:hover {
	color: var(--color-white);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	justify-content: space-between;
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.5);
	font-size: var(--text-small);
}

.entry-content,
.page-content {
	color: var(--color-charcoal);
}

.entry-content > * + *,
.page-content > * + * {
	margin-top: 1.25rem;
}

.entry-content h2,
.page-content h2 {
	margin-top: 2.5rem;
	font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.entry-content h3,
.page-content h3 {
	margin-top: 2rem;
	font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.entry-content img,
.page-content img {
	border-radius: var(--radius-md);
}

.entry-content blockquote,
.page-content blockquote {
	margin: 2rem 0;
}

.entry-content ul,
.entry-content ol,
.page-content ul,
.page-content ol {
	padding-left: 1.4rem;
}

.entry-content table,
.page-content table {
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-white);
}

.wp-block-image,
.wp-block-gallery,
.wp-block-embed,
.wp-block-table {
	margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
	.grid-2,
	.grid-3,
	.search-form {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 992px) {
	.site-header__inner {
		min-height: var(--header-height);
	}

	.site-header__nav {
		display: block;
	}

	.site-header__toggle {
		display: none;
	}

	/* Footer uses flexbox, no grid override needed */
}
