		:root {
			--cr-red: #c8102e;
			--cr-red-dark: #a40d24;
			--cr-ink: #14171a;
			--cr-muted: #5b6470;
			--cr-line: #e6e8eb;
			--cr-bg: #ffffff;
			--cr-soft: #f7f8f9;
			/* Bulma obarvuje <strong> vlastní proměnnou – přebarvíme ji na náš
			   inkoust, ať nemusíme strong přebíjet přes !important. */
			--bulma-text-strong: var(--cr-ink);
		}

		html, body {
			background: var(--cr-bg);
			color: var(--cr-ink);
			font-family: 'Inter', system-ui, -apple-system, sans-serif;
		}

		h1, h2, h3, h4, h5, .title, .article-title, .lead-title {
			font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
			color: var(--cr-ink);
			letter-spacing: -0.01em;
		}

		a { color: var(--cr-ink); }
		a:hover { color: var(--cr-red); }

		/* Top bar */
		.topbar {
			background: var(--cr-soft);
			border-bottom: 1px solid var(--cr-line);
			font-size: 0.8rem;
			color: var(--cr-muted);
		}
		.topbar .container {
			display: flex;
			justify-content: space-between;
			align-items: center;
			gap: 1rem;
			padding: 0.4rem 1.5rem;
		}
		.topbar a { color: var(--cr-muted); margin-left: 1rem; }
		.topbar a:hover { color: var(--cr-red); }
		.topbar .date { font-weight: 500; flex: 1 1 0; }
		.topbar-links { flex: 1 1 0; display: flex; justify-content: flex-end; align-items: center; }
		/* Centre slot: search box (+ hamburger, which only shows on mobile). */
		.topbar-searchrow { flex: 0 1 auto; display: flex; align-items: center; gap: 0.5rem; }
		.topbar-search { flex: 0 1 auto; }

		/* Masthead */
		.masthead {
			border-bottom: 1px solid var(--cr-line);
			padding: 1.75rem 0 1.25rem;
			text-align: center;
		}
		.masthead .logo {
			font-family: 'Source Serif 4', Georgia, serif;
			font-weight: 700;
			font-size: 2.6rem;
			letter-spacing: -0.02em;
			color: var(--cr-ink);
			line-height: 1;
		}
		.masthead .logo .accent { color: var(--cr-red); }
		.masthead .tagline {
			margin-top: 0.8rem;
			font-size: 0.78rem;
			text-transform: uppercase;
			letter-spacing: 0.18em;
			color: var(--cr-muted);
		}

		/* Nav */
		.mainnav {
			border-bottom: 1px solid var(--cr-line);
			background: var(--cr-bg);
			position: sticky;
			top: 0;
			z-index: 30;
		}
		/* Direct child only – must NOT leak into .mainnav-sub .container, otherwise
		   the sub-nav <ul> becomes a flex item and collapses to content width
		   (breaking its justify-content: center). */
		.mainnav > .container {
			display: flex;
			align-items: stretch;
		}
		.nav-toggle {
			display: none;
			background: transparent;
			border: 0;
			padding: 0.4rem;
			cursor: pointer;
			color: var(--cr-ink);
			align-items: center;
			justify-content: center;
		}
		.nav-toggle svg { display: block; }
		/* Swap hamburger ↔ close (X) instead of rotating. */
		.nav-toggle .nav-icon--close { display: none; }
		.nav-toggle[aria-expanded="true"] .nav-icon--open { display: none; }
		.nav-toggle[aria-expanded="true"] .nav-icon--close { display: block; }
		#primary-nav {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			flex: 1;
		}
		/* Sub-navigation accordion is mobile-only; on desktop the active
		   category's children show in the separate .mainnav-sub bar. */
		.subnav-toggle { display: none; }
		.subnav { display: none; }
		.topbar-search {
			position: relative;
			display: flex;
			align-items: center;
			gap: 0.45rem;
			background: #fff;
			border: 1px solid var(--cr-line);
			border-radius: 999px;
			padding: 0.2rem 0.8rem;
			color: var(--cr-muted);
		}
		.topbar-search svg {
			flex-shrink: 0;
			color: var(--cr-muted);
			transition: color 0.15s;
		}
		.topbar-search:focus-within svg { color: var(--cr-red); }
		.topbar-search:focus-within { border-color: var(--cr-red); }
		.topbar-search input {
			border: 0;
			background: transparent;
			outline: none;
			font-family: inherit;
			font-size: 0.8rem;
			color: var(--cr-ink);
			width: 230px;
			padding: 0.15rem 0;
		}
		.topbar-search input::placeholder {
			color: var(--cr-muted);
			text-transform: uppercase;
			letter-spacing: 0.08em;
			font-size: 0.72rem;
		}
		/* Center the suggestion dropdown under the centered search box */
		.topbar-search .search-suggest {
			left: 50%;
			right: auto;
			transform: translateX(-50%);
		}
		.search-suggest {
			position: absolute;
			top: 100%;
			right: 0;
			width: 340px;
			max-width: 80vw;
			background: #fff;
			border: 1px solid var(--cr-line);
			box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
			z-index: 60;
			max-height: 70vh;
			overflow-y: auto;
		}
		.search-suggest a {
			display: block;
			padding: 0.6rem 0.9rem;
			border-bottom: 1px solid var(--cr-line);
			font-size: 0.88rem;
			line-height: 1.3;
			font-weight: 600;
		}
		.search-suggest a:last-child { border-bottom: 0; }
		.search-suggest a:hover,
		.search-suggest a.is-active { background: var(--cr-soft); }
		.search-suggest .s-cat {
			display: block;
			font-size: 0.66rem;
			text-transform: uppercase;
			letter-spacing: 0.08em;
			color: var(--cr-red);
			font-weight: 700;
			margin-bottom: 2px;
		}
		.search-suggest .s-empty {
			padding: 0.7rem 0.9rem;
			font-size: 0.85rem;
			color: var(--cr-muted);
		}
		@media (max-width: 768px) {
			.search-suggest { width: 100%; max-width: none; }
		}
		.mainnav li a {
			display: block;
			padding: 0.85rem 1.1rem;
			font-size: 0.86rem;
			font-weight: 600;
			text-transform: uppercase;
			letter-spacing: 0.06em;
			color: var(--cr-ink);
			/* transparent top border balances the bottom one so the label stays
			   vertically centred whether or not the active/hover underline shows */
			border-top: 2px solid transparent;
			border-bottom: 2px solid transparent;
		}

		.mainnav-sub {
			border-top: 1px solid var(--cr-line);
			background: #fafafa;
		}
		.mainnav-sub .container ul {
			padding: 0.05rem 0;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 1rem;
			font-size: 0.76rem;
		}
		.mainnav-sub li a {
			padding: 0.35rem 1.1rem;
			font-weight: 600;
		}
		.mainnav-sub li a.is-active {
			font-weight: 700;
			color: var(--cr-red);
		}
		.mainnav li a:hover {
			color: var(--cr-red);
			border-bottom-color: var(--cr-red);
		}
		.mainnav li.active a {
			color: var(--cr-red);
			border-bottom-color: var(--cr-red);
		}
		/* Sub-navigation: no underline indicator, just colour */
		.mainnav-sub li a,
		.mainnav-sub li a:hover {
			border-top: 0;
			border-bottom: 0;
		}

		/* PR badge */
		.pr-tag {
			display: inline-block;
			background: #fff4d6;
			color: #8a6100;
			border: 1px solid #f0d57a;
			font-size: 0.66rem;
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 0.08em;
			padding: 2px 8px;
			border-radius: 3px;
			line-height: 1.4;
		}
		.cat-tag {
			display: inline-block;
			color: var(--cr-red);
			font-size: 0.72rem;
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 0.12em;
			margin-bottom: 0.4rem;
		}

		/* Lead article */
		.lead {
			padding: 2.5rem 0 2rem;
			border-bottom: 1px solid var(--cr-line);
		}
		.lead-figure {
			width: 100%;
			aspect-ratio: 16/9;
			background: #2c3e50 center/cover no-repeat;
			border-radius: 4px;
			overflow: hidden;
			position: relative;
		}
		.lead-title {
			font-size: 2.4rem;
			font-weight: 700;
			line-height: 1.15;
			margin-top: 1rem;
		}
		.lead-perex {
			font-size: 1.05rem;
			color: var(--cr-muted);
			line-height: 1.6;
			margin-top: 0.9rem;
			max-width: 60ch;
		}
		.byline {
			font-size: 0.8rem;
			color: var(--cr-muted);
			margin-top: 1rem;
		}
		.byline strong { color: var(--cr-ink); font-weight: 600; }

		/* Article cards */
		.section-heading {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 2rem 0 1.25rem;
			border-bottom: 2px solid var(--cr-ink);
			margin-bottom: 1.5rem;
		}
		.section-heading h2 {
			font-size: 1.4rem;
			font-weight: 700;
		}
		.section-heading .more {
			font-size: 0.8rem;
			font-weight: 600;
			text-transform: uppercase;
			letter-spacing: 0.08em;
			color: var(--cr-red);
		}

		.article-card {
			display: flex;
			flex-direction: column;
			height: 100%;
			padding-bottom: 1.25rem;
			border-bottom: 1px solid var(--cr-line);
		}
		.article-card .thumb {
			width: 100%;
			aspect-ratio: 16/10;
			border-radius: 3px;
			margin-bottom: 0.85rem;
			background: var(--cr-soft) center/cover no-repeat;
		}

		.article-title {
			font-size: 1.18rem;
			font-weight: 700;
			line-height: 1.25;
			margin: 0.35rem 0 0.5rem;
		}
		.article-perex {
			font-size: 0.92rem;
			color: var(--cr-muted);
			line-height: 1.5;
		}
		.article-meta {
			display: flex;
			justify-content: space-between;
			font-size: 0.75rem;
			color: var(--cr-muted);
			margin-top: 0.75rem;
		}

		/* Sidebar */
		.sidebar-box {
			background: var(--cr-soft);
			padding: 1.25rem;
			border-radius: 3px;
			margin-bottom: 1.5rem;
		}
		.sidebar-title {
			font-size: 0.78rem;
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 0.12em;
			color: var(--cr-ink);
			margin: 0 0 0.9rem;
			padding-bottom: 0.6rem;
			border-bottom: 1px solid var(--cr-line);
		}
		/* Sidebar category tree (recursive) */
		.cat-tree {
			font-size: 0.92rem;
		}
		.cat-tree li {
			padding: 0.45rem 0;
			border-bottom: 1px solid var(--cr-line);
		}
		/* No trailing separator on the last item of any level – prevents a
		   double line between the last sub-category and the next main one. */
		.cat-tree li:last-child {
			border-bottom: 0;
		}
		.cat-tree__sub {
			padding-left: 0.85rem;
			margin-top: 0.4rem;
		}
		/* Currently viewed category in the sidebar (mirrors the main nav):
		   active main category gets a red left border; an active sub-category is
		   just red, while its parent main category stays active (border) too. */
		.cat-tree a.is-current-root {
			display: block;
			border-left: 3px solid var(--cr-red);
			padding-left: 0.5rem;
			color: var(--cr-red);
			font-weight: 700;
		}
		.cat-tree a.is-current-sub {
			color: var(--cr-red);
			font-weight: 700;
		}
		.most-read li {
			display: flex;
			gap: 0.85rem;
			padding: 0.65rem 0;
			border-bottom: 1px solid var(--cr-line);
		}
		.most-read li:last-child { border-bottom: 0; }
		.most-read .num {
			font-family: 'Source Serif 4', serif;
			font-size: 1.7rem;
			font-weight: 700;
			line-height: 1;
			color: var(--cr-red);
			min-width: 1.5rem;
		}
		.most-read .t {
			font-size: 0.9rem;
			font-weight: 600;
			line-height: 1.35;
		}

		/* Newsletter */
		.newsletter {
			background: var(--cr-ink);
			color: #fff;
			padding: 1.4rem;
			border-radius: 3px;
		}
		.newsletter h3 {
			color: #fff;
			font-size: 1.15rem;
			font-weight: 700;
			margin-bottom: 0.4rem;
		}
		.newsletter p {
			font-size: 0.85rem;
			color: #c5cbd2;
			margin-bottom: 0.85rem;
		}
		.newsletter input {
			width: 100%;
			padding: 0.55rem 0.7rem;
			border: 0;
			border-radius: 3px;
			margin-bottom: 0.5rem;
			font-family: inherit;
			font-size: 0.9rem;
		}
		.newsletter button {
			width: 100%;
			background: var(--cr-red);
			color: #fff;
			border: 0;
			padding: 0.6rem;
			border-radius: 3px;
			font-weight: 600;
			font-size: 0.85rem;
			text-transform: uppercase;
			letter-spacing: 0.06em;
			cursor: pointer;
		}
		.newsletter button:hover { background: var(--cr-red-dark); }

		/* PR strip */
		.pr-strip {
			background: var(--cr-soft);
			border-top: 1px solid var(--cr-line);
			border-bottom: 1px solid var(--cr-line);
			padding: 2rem 0;
			margin-top: 2.5rem;
		}

		/* When the sponsored strip sits directly above the footer, glue them
		   together – drop the footer's top gap and the doubled divider line. */
		.pr-strip + footer.site {
			margin-top: 0;
			border-top: 0;
		}

		/* Footer */
		footer.site {
			border-top: 1px solid var(--cr-line);
			padding: 2.5rem 0 1.5rem;
			margin-top: 3rem;
			font-size: 0.88rem;
			color: var(--cr-muted);
		}
		footer.site h4 {
			font-family: 'Inter', sans-serif;
			font-size: 0.78rem;
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 0.1em;
			color: var(--cr-ink);
			margin-bottom: 0.8rem;
		}
		footer.site li { margin-bottom: 0.4rem; }
		footer.site a { color: var(--cr-muted); }
		footer.site a:hover { color: var(--cr-red); }
		.footer-bottom {
			border-top: 1px solid var(--cr-line);
			margin-top: 2rem;
			padding-top: 1.2rem;
			font-size: 0.78rem;
			display: flex;
			justify-content: space-between;
			flex-wrap: wrap;
			gap: 0.5rem;
		}

		@media (max-width: 768px) {
			.container { padding-left: 1rem; padding-right: 1rem; }
			.mainnav > .container { padding-left: 0; padding-right: 0; }

			/* Keep the topbar (which holds the hamburger/close button) above the
			   fixed menu overlay so the button stays tappable while open. */
			.topbar { font-size: 0.72rem; position: relative; z-index: 50; }
			/* Lock background scrolling while the overlay menu is open. */
			body.nav-open { overflow: hidden; }
			/* Row 1: date (left) + links (right) on a single line.
			   Row 2: full-width search. */
			.topbar .container {
				padding: 0.45rem 1rem;
				flex-wrap: wrap;
				align-items: center;
				gap: 0.2rem 0.5rem;
			}
			.topbar .date { flex: 1 1 auto; white-space: nowrap; }
			.topbar-links { flex: 0 0 auto; }
			.topbar-links a { white-space: nowrap; }
			.topbar a { margin-left: 0.6rem; }

			.masthead { padding: 1.4rem 0 1rem; }
			.masthead .logo { font-size: 1.9rem; }
			.masthead .tagline { font-size: 0.7rem; letter-spacing: 0.14em; }

			/* Hamburger sits first on the search row, then the search box. */
			.nav-toggle {
				display: flex;
				flex: 0 0 auto;
				order: -1;
				padding: 0.3rem;
			}
			.nav-toggle svg { width: 32px; height: 32px; }

			/* No empty nav bar under the masthead when the menu is closed –
			   the dropdown carries its own top border when opened. */
			.mainnav {
				border-bottom: 0;
				background: transparent;
			}
			.mainnav > .container {
				flex-wrap: wrap;
				padding: 0;
			}

			/* The whole category tree lives inside the one hamburger menu.
			   It is a fixed overlay that drops down from just below the topbar
			   separator (the line under the hamburger) and covers the masthead
			   and page content instead of pushing it down. --nav-top is set by
			   layout.js to the current bottom edge of the topbar. */
			#primary-nav {
				display: none;
				position: fixed;
				left: 0;
				right: 0;
				top: var(--nav-top, 0);
				bottom: 0;
				z-index: 40;
				flex-direction: column;
				flex-wrap: nowrap;
				justify-content: flex-start;
				border-top: 1px solid var(--cr-line);
				background: var(--cr-bg);
				overflow-y: auto;
				-webkit-overflow-scrolling: touch;
				box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
			}
			#primary-nav.is-open { display: flex; }

			#primary-nav > li {
				width: 100%;
				display: flex;
				flex-wrap: wrap;
				align-items: stretch;
				border-bottom: 1px solid var(--cr-line);
			}
			#primary-nav > li:last-child { border-bottom: 0; }
			#primary-nav > li > a {
				flex: 1;
				min-width: 0;
				padding: 0.95rem 1.1rem;
				font-size: 0.82rem;
				border: 0;
				display: block;
			}
			#primary-nav > li.active > a,
			#primary-nav > li > a:hover {
				background: var(--cr-soft);
				box-shadow: inset 3px 0 0 var(--cr-red);
			}

			/* Chevron that expands a category's sub-navigation in place. */
			.subnav-toggle {
				display: flex;
				align-items: center;
				justify-content: center;
				flex: 0 0 3rem;
				background: transparent;
				border: 0;
				border-left: 1px solid var(--cr-line);
				color: var(--cr-muted);
				cursor: pointer;
			}
			.subnav-toggle svg { transition: transform 0.2s; }
			.subnav-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

			.subnav {
				display: none;
				flex-basis: 100%;
				background: var(--cr-soft);
				border-top: 1px solid var(--cr-line);
			}
			.subnav.is-open { display: block; }
			.subnav li { width: 100%; border-bottom: 1px solid var(--cr-line); }
			.subnav li:last-child { border-bottom: 0; }
			#primary-nav .subnav a {
				display: block;
				padding: 0.7rem 1.1rem 0.7rem 2rem;
				font-size: 0.8rem;
				font-weight: 600;
				text-transform: none;
				letter-spacing: 0;
				border: 0;
				color: var(--cr-ink);
			}
			#primary-nav .subnav a:hover { background: #fff; color: var(--cr-red); }

			/* Desktop sub-bar is replaced by the in-menu accordion on mobile. */
			.mainnav-sub { display: none; }

			/* Row 2: search (grows) + hamburger side by side, full width. */
			.topbar-searchrow {
				order: 3;
				flex: 1 1 100%;
			}
			.topbar-search {
				flex: 1 1 auto;
				min-width: 0;
			}
			.topbar-search input {
				width: 100%;
				font-size: 0.85rem;
			}
			.topbar-search .search-suggest {
				left: 0;
				transform: none;
			}

			.lead { padding: 1.5rem 0 1.25rem; }
			.lead-title { font-size: 1.55rem; }
			.lead-perex { font-size: 0.98rem; }

			.section-heading { padding: 1.5rem 0 1rem; margin-bottom: 1.2rem; }
			.section-heading h2 { font-size: 1.15rem; }

			.article-card { padding-bottom: 0.5rem; }
			.article-title { font-size: 1.08rem; }

			.pr-strip { padding: 1.5rem 0; margin-top: 1.5rem; }

			footer.site { padding: 2rem 0 1rem; margin-top: 2rem; }
			.footer-bottom { font-size: 0.74rem; }
		}

		@media (max-width: 480px) {
			/* Keep date + links on one row (search stays on its own full-width
			   row below); only shrink to fit instead of stacking into a column. */
			.topbar { font-size: 0.68rem; }
			.topbar a { margin-left: 0.5rem; }
			.masthead .logo { font-size: 1.65rem; }
			.lead-title { font-size: 1.35rem; }
		}

		/* Honeypot – pole skryté lidem (mimo viewport, ne display:none, aby ho
		   spam boti považovali za běžné pole a vyplnili ho) */
		.hp-field {
			position: absolute !important;
			left: -9999px;
			width: 1px;
			height: 1px;
			overflow: hidden;
		}

		/* Cookie consent – floating card (bottom-right) */
		.cookie-bar {
			position: fixed;
			right: 1.5rem;
			bottom: 1.5rem;
			left: auto;
			width: 360px;
			max-width: calc(100vw - 2rem);
			z-index: 80;
			background: #ffffff;
			border: 1px solid var(--cr-line);
			border-top: 3px solid var(--cr-red);
			border-radius: 6px;
			box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
		}
		.cookie-bar__inner {
			display: flex;
			flex-direction: column;
			gap: 1rem;
			padding: 1.25rem;
		}
		.cookie-bar__body {
			display: flex;
			gap: 0.85rem;
			align-items: flex-start;
		}
		.cookie-bar__icon {
			flex-shrink: 0;
			display: inline-flex;
			line-height: 0;
		}
		.cookie-bar__icon svg { display: block; }
		.cookie-bar__text {
			font-size: 0.85rem;
			color: var(--cr-muted);
			line-height: 1.5;
		}
		.cookie-bar__text strong { color: var(--cr-ink); }
		.cookie-bar__text a { color: var(--cr-red); font-weight: 600; }
		.cookie-bar__actions {
			display: flex;
			gap: 0.5rem;
		}
		.cookie-btn {
			flex: 1;
			text-align: center;
			border: 1px solid var(--cr-line);
			background: #fff;
			color: var(--cr-ink);
			font-family: inherit;
			font-size: 0.78rem;
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 0.05em;
			padding: 0.6rem 1.1rem;
			border-radius: 3px;
			cursor: pointer;
			white-space: nowrap;
		}
		.cookie-btn:hover { border-color: var(--cr-muted); }
		.cookie-btn--primary {
			background: var(--cr-red);
			border-color: var(--cr-red);
			color: #fff;
		}
		.cookie-btn--primary:hover { background: var(--cr-red-dark); border-color: var(--cr-red-dark); }
		@media (max-width: 480px) {
			.cookie-bar { right: 1rem; left: 1rem; bottom: 1rem; width: auto; }
		}

		/* Footer brand (moved out of inline styles) */
		.footer-logo { font-family: 'Source Serif 4', serif; font-size: 1.5rem; font-weight: 700; color: var(--cr-ink); }
		.footer-logo .accent { color: var(--cr-red); }
		.footer-perex { margin-top: 0.6rem; max-width: 32ch; }

		article .lead-perex{
			color: var(--cr-ink);
			font-weight: bold;
			font-size: 1.05rem;
		}

		article h3, article h4 {
			font-weight: bold;
		}

		article h3 {
			font-size:32px;
		}

		article h4 {
			font-size:26px;
		}

		/* Static pages – shared visual (StaticContent:aboutPortal, StaticContent:contact) */

		/* Hero */
		.about-hero {
			background: linear-gradient(135deg, #1a1d21 0%, #14171a 55%, var(--cr-red-dark) 130%);
			color: #fff;
			padding: 4.5rem 0 4rem;
			position: relative;
			overflow: hidden;
		}
		.about-hero::before {
			content: "";
			position: absolute;
			top: -40%; right: -10%;
			width: 480px; height: 480px;
			background: radial-gradient(circle, rgba(200,16,46,0.35) 0%, rgba(200,16,46,0) 70%);
		}
		.about-hero .wrap { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; position: relative; }
		.about-eyebrow {
			display: inline-flex; align-items: center; gap: .5rem;
			font-family: 'Inter', sans-serif;
			font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
			color: #fff; background: var(--cr-red);
			padding: .4rem .8rem; border-radius: 2px; margin-bottom: 1.5rem;
		}
		.about-hero h1 {
			font-family: 'Source Serif 4', Georgia, serif;
			font-weight: 700; color: #fff;
			font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.08;
			letter-spacing: -.02em; margin: 0 0 1.2rem;
		}
		.about-hero .lead { font-size: 1.12rem; line-height: 1.65; color: rgba(255,255,255,.82); max-width: 680px; }
		.about-hero .lead strong { color: #fff; }
		.about-hero .lead a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
		.about-hero .lead a:hover { color: var(--cr-red); text-decoration-color: var(--cr-red); }
		.about-hero .lead a:hover strong { color: var(--cr-red); }

		/* Stats */
		.about-stats {
			max-width: 980px; margin: -2.5rem auto 0; padding: 0 1.5rem; position: relative; z-index: 2;
			display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
		}
		.about-stat {
			background: #fff; border: 1px solid var(--cr-line); border-top: 3px solid var(--cr-red);
			border-radius: 4px; padding: 1.4rem 1.2rem; box-shadow: 0 12px 30px -18px rgba(20,23,26,.4);
		}
		/* Dvě dlaždice na řádek (ceník) */
		.about-stats--2col { grid-template-columns: repeat(2, 1fr); }
		.about-stat .num { font-family: 'Source Serif 4', serif; font-weight: 700; font-size: 1.9rem; color: var(--cr-ink); line-height: 1; }
		.about-stat .lbl { font-size: .82rem; color: var(--cr-muted); margin-top: .45rem; line-height: 1.35; }

		/* Generic blocks */
		.about-body { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
		.about-block { padding: 3.5rem 0 0; }
		.about-h2 { font-family: 'Source Serif 4', serif; font-weight: 700; font-size: clamp(1.6rem, 3.5vw, 2.1rem); color: var(--cr-ink); letter-spacing: -.01em; margin: 0 0 1rem; }
		.about-subhead { font-family: 'Source Serif 4', serif; font-weight: 700; font-size: 1.3rem; color: var(--cr-ink); margin: 2.2rem 0 0; }
		.about-body p { color: #2c3138; font-size: 1.04rem; line-height: 1.7; margin: 0 0 1rem; }
		.about-body strong { color: var(--cr-ink); }

		/* Service cards */
		.about-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin-top: 1.8rem; }
		.about-card {
			border: 1px solid var(--cr-line); border-radius: 6px; padding: 1.5rem; background: #fff;
			transition: box-shadow .2s, transform .2s; position: relative;
		}
		.about-card:hover { box-shadow: 0 18px 40px -24px rgba(20,23,26,.5); transform: translateY(-3px); }
		.about-card .badge {
			display: inline-flex; align-items: center; justify-content: center;
			width: 2.4rem; height: 2.4rem; border-radius: 50%;
			background: var(--cr-red); color: #fff; font-family: 'Source Serif 4', serif; font-weight: 700; font-size: 1.15rem;
			margin-bottom: 1rem;
		}
		.about-card h3 { font-family: 'Source Serif 4', serif; font-weight: 700; font-size: 1.18rem; color: var(--cr-ink); margin: 0 0 .6rem; }
		.about-card p { font-size: .95rem; line-height: 1.55; color: #3a4048; margin: 0 0 .9rem; }
		.about-card .arg {
			font-size: .88rem; line-height: 1.5; color: var(--cr-muted);
			border-left: 3px solid var(--cr-red); padding: .15rem 0 .15rem .8rem; background: var(--cr-soft); border-radius: 0 4px 4px 0;
		}
		.about-card .arg strong { color: var(--cr-red); }

		/* Comparison */
		.about-compare { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 1.8rem; }
		.about-col { border-radius: 8px; padding: 1.8rem; }
		.about-col--bad { background: var(--cr-soft); border: 1px solid var(--cr-line); }
		.about-col--good { background: linear-gradient(160deg, #14171a 0%, #20242a 100%); color: #fff; }
		.about-col h3 { font-family: 'Source Serif 4', serif; font-weight: 700; font-size: 1.2rem; margin: 0 0 1.1rem; }
		.about-col--bad h3 { color: var(--cr-ink); }
		.about-col--good h3 { color: #fff; }
		.about-list li { position: relative; padding: 0 0 .85rem 1.7rem; font-size: .96rem; line-height: 1.5; }
		.about-col--bad .about-list li { color: #3a4048; }
		.about-col--good .about-list li { color: rgba(255,255,255,.85); }
		.about-list li::before { position: absolute; left: 0; top: -.05rem; font-size: 1.05rem; font-weight: 700; }
		.about-col--bad .about-list li::before { content: "✕"; color: var(--cr-muted); }
		.about-col--good .about-list li::before { content: "✓"; color: var(--cr-red); }

		.about-summary {
			margin-top: 1.6rem; padding: 1.4rem 1.6rem; border-radius: 8px;
			background: var(--cr-red); color: #fff; font-size: 1.05rem; line-height: 1.6;
		}
		.about-summary strong { color: #fff; }
		.about-summary a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
		.about-summary a:hover { color: var(--cr-ink); }

		/* Pricing */
		.about-pricing {
			margin-top: 1.8rem; border: 2px solid var(--cr-red); border-radius: 10px; overflow: hidden; background: #fff;
		}
		.about-pricing .head { background: var(--cr-red); color: #fff; padding: 1.5rem 1.8rem; }
		.about-pricing .head .price { font-family: 'Source Serif 4', serif; font-weight: 700; font-size: 2.4rem; line-height: 1.1; }
		.about-pricing .head .price small { font-size: 1rem; font-weight: 600; opacity: .9; }
		.about-pricing .body { padding: 1.6rem 1.8rem; }
		.about-pricing .body p { margin: 0 0 1rem; font-size: 1rem; line-height: 1.65; color: #2c3138; }
		.about-pricing .body p:last-child { margin: 0; }

		.about-sign { max-width: 820px; margin: 0 auto; padding: 3rem 1.5rem 0; }
		.about-sign .rule { border-top: 1px solid var(--cr-line); padding-top: 1.4rem; color: var(--cr-muted); font-size: .95rem; }
		.about-spacer { height: 4rem; }

		@media (max-width: 720px) {
			.about-stats { grid-template-columns: repeat(2, 1fr); }
			.about-services, .about-compare { grid-template-columns: 1fr; }
		}