/*
Theme Name: Tvůj Ajťák
Theme URI: https://tvujajtak.cz
Author: Ludvík Stemmer
Description: Moderní znalostní a servisní WordPress šablona pro projekt Tvůj Ajťák. Obsahuje dynamické rubriky, návody, živé hledání, kontaktní stránku a volitelný AI blok.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: tvuj-ajtak
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
	--taj-blue: #0866e8;
	--taj-blue-dark: #0756c5;
	--taj-cyan: #0fa6e8;
	--taj-navy: #0c1830;
	--taj-text: #1e293b;
	--taj-muted: #5f6b7e;
	--taj-line: #e5ebf4;
	--taj-soft: #f5f8fd;
	--taj-white: #fff;
	--taj-green: #20b66b;
	--taj-purple: #7847dc;
	--taj-yellow: #f4b927;
	--taj-shadow: 0 12px 35px rgba(28, 55, 90, .09);
	--taj-shadow-hover: 0 18px 44px rgba(8, 102, 232, .14);
	--taj-radius: 16px;
	--taj-radius-sm: 11px;
	--taj-container: 1180px;
	--taj-transition: 180ms ease;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	margin: 0;
	color: var(--taj-text);
	background: var(--taj-white);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.nav-open {
	overflow: hidden;
}

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

a {
	color: var(--taj-blue);
	text-decoration: none;
	transition: color var(--taj-transition);
}

a:hover {
	color: var(--taj-blue-dark);
}

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 .55em;
	color: var(--taj-navy);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -.025em;
}

p {
	margin: 0 0 1em;
}

svg {
	max-width: 100%;
}

.taj-icon {
	display: inline-block;
	flex: 0 0 auto;
	width: 1.35em;
	height: 1.35em;
	vertical-align: -.23em;
}

.container {
	width: min(calc(100% - 40px), var(--taj-container));
	margin-inline: auto;
}

.container--content {
	max-width: 840px;
}

.container--article {
	max-width: 960px;
}

.screen-reader-text {
	position: absolute !important;
	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,
.skip-link:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto !important;
	color: var(--taj-navy);
	background: var(--taj-white);
	border-radius: 8px;
	box-shadow: var(--taj-shadow);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 11px 21px;
	border: 1px solid transparent;
	border-radius: 9px;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.2;
	cursor: pointer;
	transition: transform var(--taj-transition), background var(--taj-transition), color var(--taj-transition), box-shadow var(--taj-transition), border-color var(--taj-transition);
}

.button:hover {
	transform: translateY(-2px);
}

.button--primary {
	color: var(--taj-white);
	background: linear-gradient(135deg, var(--taj-blue), #0478ed);
	box-shadow: 0 8px 18px rgba(8, 102, 232, .2);
}

.button--primary:hover {
	color: var(--taj-white);
	background: linear-gradient(135deg, var(--taj-blue-dark), var(--taj-blue));
	box-shadow: 0 12px 25px rgba(8, 102, 232, .28);
}

.button--outline {
	color: var(--taj-blue);
	background: rgba(255, 255, 255, .8);
	border-color: rgba(8, 102, 232, .6);
}

.button--outline:hover {
	color: var(--taj-white);
	background: var(--taj-blue);
	border-color: var(--taj-blue);
}

.section {
	padding: 76px 0;
}

.section--compact {
	padding-top: 18px;
	padding-bottom: 36px;
}

.section-heading {
	margin-bottom: 32px;
}

.section-heading--center {
	text-align: center;
}

.section-heading--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.section-heading h2 {
	margin: 0;
	font-size: clamp(27px, 3vw, 38px);
}

.kicker {
	margin: 0 0 8px;
	color: var(--taj-blue);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: 14px;
	font-weight: 750;
	white-space: nowrap;
}

.text-link .taj-icon {
	width: 17px;
	transition: transform var(--taj-transition);
}

.text-link:hover .taj-icon {
	transform: translateX(4px);
}

/* Header */
.site-header {
	position: relative;
	z-index: 100;
	height: 78px;
	background: rgba(255, 255, 255, .95);
	border-bottom: 1px solid rgba(225, 232, 241, .8);
}

.site-header.is-sticky {
	position: sticky;
	top: 0;
	box-shadow: 0 8px 30px rgba(20, 43, 75, .07);
	backdrop-filter: blur(15px);
}

.admin-bar .site-header.is-sticky {
	top: 32px;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 25px;
}

.site-brand {
	flex: 0 0 auto;
}

.custom-logo-link {
	display: block;
}

.custom-logo {
	width: auto;
	max-width: 220px;
	max-height: 58px;
}

.wordmark {
	display: flex;
	flex-direction: column;
	color: var(--taj-navy);
	line-height: 1;
}

.wordmark:hover {
	color: var(--taj-navy);
}

.wordmark__main {
	font-size: 25px;
	font-weight: 900;
	letter-spacing: -.045em;
}

.wordmark__main > span {
	color: var(--taj-cyan);
}

.wordmark__tagline {
	margin-top: 6px;
	color: #556273;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .005em;
}

.primary-navigation {
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 43px);
}

.primary-navigation .menu,
.footer-navigation .menu {
	display: flex;
	align-items: center;
	gap: clamp(15px, 2.1vw, 32px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation .menu > li {
	position: relative;
	margin: 0;
}

.primary-navigation .menu a {
	display: flex;
	align-items: center;
	min-height: 42px;
	color: #121a28;
	font-size: 14px;
	font-weight: 720;
	white-space: nowrap;
}

.primary-navigation .menu a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current-menu-ancestor > a {
	color: var(--taj-blue);
}

.primary-navigation .menu-item-has-children > a::after {
	width: 7px;
	height: 7px;
	margin: -4px 0 0 8px;
	border-right: 1.5px solid;
	border-bottom: 1.5px solid;
	content: "";
	transform: rotate(45deg);
}

.primary-navigation .sub-menu {
	position: absolute;
	top: calc(100% + 3px);
	left: -18px;
	min-width: 220px;
	margin: 0;
	padding: 10px;
	visibility: hidden;
	opacity: 0;
	background: var(--taj-white);
	border: 1px solid var(--taj-line);
	border-radius: 12px;
	box-shadow: var(--taj-shadow);
	list-style: none;
	transform: translateY(7px);
	transition: opacity var(--taj-transition), transform var(--taj-transition), visibility var(--taj-transition);
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.primary-navigation .sub-menu a {
	min-height: 38px;
	padding: 4px 10px;
	border-radius: 7px;
}

.primary-navigation .sub-menu a:hover {
	background: var(--taj-soft);
}

.header-help {
	min-height: 45px;
	padding-inline: 20px;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	color: var(--taj-navy);
	background: var(--taj-soft);
	border: 0;
	border-radius: 9px;
	cursor: pointer;
}

.nav-toggle .taj-icon {
	width: 24px;
	height: 24px;
}

.nav-toggle__close {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
	display: block;
}

/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	padding: 56px 0 52px;
	background:
		linear-gradient(180deg, rgba(244, 248, 255, .86) 0%, rgba(255, 255, 255, .72) 48%, #f8faff 100%);
}

.hero::before {
	position: absolute;
	inset: 0;
	opacity: .42;
	background-image: radial-gradient(circle at 1px 1px, rgba(8, 102, 232, .15) 1px, transparent 0);
	background-size: 32px 32px;
	mask-image: linear-gradient(to bottom, #000, transparent 55%);
	content: "";
	pointer-events: none;
}

.hero__glow {
	position: absolute;
	border-radius: 999px;
	filter: blur(10px);
	pointer-events: none;
}

.hero__glow--one {
	top: -230px;
	right: -80px;
	width: 620px;
	height: 620px;
	background: radial-gradient(circle, rgba(8, 102, 232, .11), transparent 68%);
}

.hero__glow--two {
	top: 250px;
	left: -250px;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(46, 201, 255, .08), transparent 68%);
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero__grid {
	display: grid;
	grid-template-columns: .96fr 1.04fr;
	align-items: center;
	min-height: 390px;
}

.hero__content {
	position: relative;
	z-index: 2;
	padding: 15px 0 30px 14px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 20px;
	padding: 7px 10px;
	color: #075abf;
	background: #e6f2ff;
	border: 1px solid #d7eaff;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .03em;
	line-height: 1;
	text-transform: uppercase;
}

.eyebrow .taj-icon {
	width: 14px;
	height: 14px;
}

.hero h1 {
	max-width: 590px;
	margin-bottom: 13px;
	font-size: clamp(44px, 5.4vw, 70px);
	letter-spacing: -.055em;
	line-height: .99;
}

.hero h1 span {
	color: var(--taj-blue);
}

.hero__lead {
	max-width: 565px;
	margin-bottom: 28px;
	color: #46536a;
	font-size: clamp(16px, 1.7vw, 19px);
	line-height: 1.6;
}

.hero__visual {
	position: relative;
	align-self: stretch;
	min-height: 390px;
	margin-right: -46px;
}

.hero__visual img {
	position: absolute;
	top: 50%;
	right: 0;
	width: min(650px, 115%);
	max-width: none;
	transform: translateY(-50%);
	mix-blend-mode: multiply;
}

.hero-search {
	position: relative;
	max-width: 560px;
}

.search-form {
	position: relative;
	display: flex;
	width: 100%;
}

.search-field {
	width: 100%;
	height: 56px;
	padding: 0 72px 0 20px;
	color: var(--taj-navy);
	background: var(--taj-white);
	border: 1px solid #e0e7f1;
	border-radius: 10px;
	outline: none;
	box-shadow: 0 8px 25px rgba(30, 58, 95, .08);
	transition: border-color var(--taj-transition), box-shadow var(--taj-transition);
}

.search-field::placeholder {
	color: #8b96a8;
}

.search-field:focus {
	border-color: rgba(8, 102, 232, .6);
	box-shadow: 0 0 0 4px rgba(8, 102, 232, .1), 0 12px 30px rgba(30, 58, 95, .1);
}

.search-submit {
	position: absolute;
	top: 5px;
	right: 5px;
	display: grid;
	width: 47px;
	height: 46px;
	padding: 0;
	color: var(--taj-white);
	background: linear-gradient(135deg, #0878ef, #075edc);
	border: 0;
	border-radius: 8px;
	box-shadow: 0 6px 14px rgba(8, 102, 232, .25);
	cursor: pointer;
	place-items: center;
}

.search-submit .taj-icon {
	width: 22px;
	height: 22px;
}

.search-submit:hover {
	background: var(--taj-blue-dark);
}

.search-suggestions {
	position: absolute;
	z-index: 30;
	top: calc(100% + 8px);
	right: 0;
	left: 0;
	overflow: hidden;
	padding: 7px;
	background: var(--taj-white);
	border: 1px solid var(--taj-line);
	border-radius: 12px;
	box-shadow: 0 20px 45px rgba(21, 42, 72, .16);
}

.search-suggestions[hidden] {
	display: none;
}

.search-suggestion {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 4px 15px;
	padding: 11px 12px;
	color: var(--taj-text);
	border-radius: 8px;
}

.search-suggestion:hover,
.search-suggestion:focus {
	color: var(--taj-text);
	background: var(--taj-soft);
}

.search-suggestion strong {
	font-size: 14px;
	line-height: 1.35;
}

.search-suggestion small {
	grid-column: 1;
	color: var(--taj-muted);
	font-size: 12px;
}

.search-suggestion span {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
	color: var(--taj-blue);
	font-size: 11px;
	font-weight: 750;
}

.search-suggestions__state {
	padding: 15px;
	color: var(--taj-muted);
	font-size: 13px;
	text-align: center;
}

.search-suggestions__all {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 5px;
	padding: 10px 12px;
	color: var(--taj-blue);
	background: #f0f6ff;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 750;
}

.popular-searches {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 15px;
	font-size: 11px;
}

.popular-searches__label {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 4px;
	padding-top: 4px;
	color: #273346;
	font-weight: 800;
}

.popular-searches__label .taj-icon {
	width: 14px;
	color: #f97316;
	fill: rgba(249, 115, 22, .1);
}

.popular-searches__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.popular-searches__chips a {
	padding: 3px 8px;
	color: #0864c8;
	background: rgba(226, 240, 255, .85);
	border-radius: 999px;
	font-weight: 650;
	line-height: 1.4;
}

.popular-searches__chips a:hover {
	background: #d7eaff;
}

/* Topic cards */
.topic-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 13px;
	margin-top: 9px;
}

.topic-card {
	position: relative;
	display: grid;
	grid-template-columns: 42px 1fr 20px;
	align-items: start;
	gap: 12px;
	min-height: 125px;
	padding: 22px 17px;
	color: var(--taj-text);
	background: rgba(255, 255, 255, .94);
	border: 1px solid #e8edf5;
	border-radius: var(--taj-radius-sm);
	box-shadow: 0 4px 16px rgba(33, 55, 85, .055);
	transition: transform var(--taj-transition), border-color var(--taj-transition), box-shadow var(--taj-transition);
}

.topic-card::before {
	position: absolute;
	top: 0;
	right: 20px;
	left: 20px;
	height: 2px;
	opacity: 0;
	background: var(--topic-color);
	border-radius: 0 0 999px 999px;
	content: "";
	transform: scaleX(.6);
	transition: opacity var(--taj-transition), transform var(--taj-transition);
}

.topic-card:hover {
	color: var(--taj-text);
	border-color: color-mix(in srgb, var(--topic-color) 28%, var(--taj-line));
	box-shadow: var(--taj-shadow-hover);
	transform: translateY(-4px);
}

.topic-card:hover::before {
	opacity: 1;
	transform: scaleX(1);
}

.topic-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--topic-color);
	background: color-mix(in srgb, var(--topic-color) 10%, white);
	border-radius: 9px;
}

.topic-card__icon .taj-icon {
	width: 28px;
	height: 28px;
}

.topic-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.topic-card__body strong {
	color: #111827;
	font-size: 16px;
	font-weight: 790;
	line-height: 1.2;
}

.topic-card__body small {
	color: var(--taj-muted);
	font-size: 11.5px;
	line-height: 1.55;
}

.topic-card__arrow {
	align-self: end;
	color: #8d98a9;
}

.topic-card__arrow .taj-icon {
	width: 18px;
	height: 18px;
}

.topics-more {
	display: flex;
	justify-content: center;
	margin-top: 17px;
}

.topics-more .button {
	min-height: 43px;
	padding-inline: 42px;
}

/* Steps */
.how-it-works {
	background: #fff;
}

.how-it-works .section-heading {
	margin-bottom: 36px;
}

.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.step {
	position: relative;
	padding: 0 27px;
	text-align: center;
}

.step:not(:last-child)::after {
	position: absolute;
	top: 31px;
	right: -8px;
	width: 16px;
	height: 16px;
	color: #afbac9;
	content: "→";
}

.step__icon {
	position: relative;
	display: grid;
	width: 64px;
	height: 64px;
	margin: 0 auto 19px;
	border-radius: 50%;
	place-items: center;
}

.step__icon .taj-icon {
	width: 30px;
	height: 30px;
}

.step__icon--blue {
	color: #0873e7;
	background: #eaf3ff;
}

.step__icon--cyan {
	color: #148bd2;
	background: #e8f7fd;
}

.step__icon--green {
	color: #18aa64;
	background: #e9f9ef;
}

.step__icon--purple {
	color: #7943dc;
	background: #f1eafe;
}

.step__number {
	display: none;
}

.step h3 {
	margin-bottom: 8px;
	font-size: 16px;
}

.step p {
	max-width: 230px;
	margin: 0 auto;
	color: var(--taj-muted);
	font-size: 13px;
	line-height: 1.55;
}

/* Assistance */
.assistance-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	background: linear-gradient(90deg, #f1f7ff, #eaf4ff 49.8%, #e8f3ff 50.2%, #eef6ff);
	border: 1px solid #d8e7fa;
	border-radius: 14px;
	box-shadow: 0 7px 24px rgba(35, 66, 105, .07);
}

.assistance-grid--single {
	grid-template-columns: 1fr;
}

.assistance-grid--single .assistance-card {
	max-width: none;
}

.assistance-card {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 215px;
	overflow: hidden;
	padding: 31px 34px;
}

.assistance-card:first-child:not(:last-child) {
	border-right: 1px solid #d8e7fa;
}

.assistance-card__content {
	position: relative;
	z-index: 2;
	max-width: 67%;
}

.assistance-card__content h2 {
	margin-bottom: 9px;
	font-size: clamp(21px, 2.1vw, 27px);
}

.assistance-card__content p:not(.kicker) {
	margin-bottom: 18px;
	color: #42526a;
	font-size: 13px;
	line-height: 1.55;
}

.assistance-card .button {
	min-height: 43px;
}

.assistance-card--human .assistance-card__content {
	max-width: 64%;
}

.assistance-card__person {
	position: absolute;
	right: -24px;
	bottom: -49px;
	width: 49%;
	height: 260px;
	overflow: hidden;
	border-radius: 50% 0 0 0;
}

.assistance-card__person::before {
	position: absolute;
	inset: 12px 0 0 25px;
	z-index: -1;
	background: rgba(101, 173, 247, .15);
	border-radius: 50%;
	content: "";
}

.assistance-card__person img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 63% center;
	mix-blend-mode: multiply;
	transform: scale(1.5);
}

.assistant-bot {
	position: absolute;
	right: 35px;
	bottom: 13px;
	width: 125px;
	height: 145px;
}

.assistant-bot__antenna {
	position: absolute;
	top: 0;
	left: 50%;
	width: 3px;
	height: 22px;
	background: #5c87ba;
	transform: translateX(-50%);
}

.assistant-bot__antenna::after {
	position: absolute;
	top: -5px;
	left: -5px;
	width: 13px;
	height: 13px;
	background: #38b7f3;
	border: 3px solid #d9f3ff;
	border-radius: 50%;
	content: "";
}

.assistant-bot__head {
	position: absolute;
	top: 18px;
	left: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 19px;
	width: 113px;
	height: 77px;
	background: linear-gradient(145deg, #fff, #d7e9f9);
	border: 5px solid #fff;
	border-radius: 35px;
	box-shadow: 0 10px 25px rgba(30, 70, 115, .16);
}

.assistant-bot__head::before {
	position: absolute;
	inset: 10px;
	background: #0b315c;
	border-radius: 24px;
	content: "";
}

.assistant-bot__head span {
	position: relative;
	z-index: 1;
	width: 10px;
	height: 17px;
	background: #35d4ff;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(53, 212, 255, .8);
}

.assistant-bot__body {
	position: absolute;
	right: 18px;
	bottom: 0;
	display: grid;
	width: 90px;
	height: 58px;
	color: #2f96dc;
	background: linear-gradient(145deg, #fff, #d7eaf9);
	border-radius: 13px 13px 25px 25px;
	box-shadow: 0 12px 24px rgba(30, 70, 115, .12);
	place-items: center;
}

.assistant-bot__body .taj-icon {
	width: 27px;
	height: 27px;
}

/* Latest guides */
.latest-guides {
	padding-top: 38px;
}

.guide-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	background: var(--taj-white);
	border: 1px solid var(--taj-line);
	border-radius: 12px;
	box-shadow: 0 7px 25px rgba(27, 52, 84, .06);
}

.guide-row {
	position: relative;
	display: grid;
	grid-template-columns: 29px minmax(0, 1fr) auto 18px;
	align-items: center;
	gap: 10px;
	min-height: 61px;
	padding: 11px 16px;
	color: var(--taj-text);
	border-bottom: 1px solid var(--taj-line);
	transition: background var(--taj-transition);
}

.guide-row:nth-child(odd) {
	border-right: 1px solid var(--taj-line);
}

.guide-row:nth-last-child(-n+2) {
	border-bottom: 0;
}

.guide-row:hover {
	color: var(--taj-blue);
	background: #f7faff;
}

.guide-row__icon {
	display: grid;
	width: 28px;
	height: 28px;
	color: var(--guide-color);
	background: color-mix(in srgb, var(--guide-color) 10%, white);
	border-radius: 7px;
	place-items: center;
}

.guide-row__icon .taj-icon {
	width: 18px;
	height: 18px;
}

.guide-row__title {
	overflow: hidden;
	font-size: 13px;
	font-weight: 680;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.guide-row time {
	color: #8792a3;
	font-size: 11px;
	white-space: nowrap;
}

.guide-row__arrow {
	color: #a0a9b8;
}

.guide-row__arrow .taj-icon {
	width: 15px;
	height: 15px;
}

/* Trust */
.trust-strip {
	padding: 48px 0;
	background: linear-gradient(180deg, #f7faff, #fff);
	border-top: 1px solid #edf2f8;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 35px;
}

.trust-item {
	display: grid;
	grid-template-columns: 45px 1fr;
	gap: 13px;
	align-items: start;
}

.trust-item__icon {
	display: grid;
	width: 43px;
	height: 43px;
	border-radius: 9px;
	place-items: center;
}

.trust-item__icon .taj-icon {
	width: 29px;
	height: 29px;
}

.trust-item__icon--blue {
	color: #0d9bea;
	background: #e9f7ff;
}

.trust-item__icon--green {
	color: #23ac62;
	background: #ecfaef;
}

.trust-item__icon--purple {
	color: #7a3ed5;
	background: #f3ecff;
}

.trust-item__icon--yellow {
	color: #f5b71b;
	background: #fff8df;
}

.trust-item h3 {
	margin: 2px 0 5px;
	font-size: 14px;
}

.trust-item p {
	margin: 0;
	color: var(--taj-muted);
	font-size: 12px;
	line-height: 1.5;
}

/* Footer */
.site-footer {
	padding: 55px 0 20px;
	color: #aebbd0;
	background: #0b172b;
}

.site-footer__top {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	align-items: start;
	gap: 40px;
	padding-bottom: 38px;
}

.wordmark--footer {
	display: inline-flex;
	color: var(--taj-white);
}

.wordmark--footer:hover {
	color: var(--taj-white);
}

.site-footer__brand p {
	max-width: 310px;
	margin: 13px 0 0;
	font-size: 13px;
}

.footer-navigation .menu {
	justify-content: flex-end;
	flex-wrap: wrap;
}

.footer-navigation a {
	color: #d8e1ef;
	font-size: 13px;
	font-weight: 650;
}

.footer-navigation a:hover {
	color: var(--taj-white);
}

.site-footer__widgets {
	grid-column: 1 / -1;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 25px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	font-size: 11px;
}

.site-footer__bottom p {
	margin: 0;
}

/* Archive & search */
.archive-hero,
.page-hero,
.article-hero {
	position: relative;
	overflow: hidden;
	padding: 64px 0;
	background:
		radial-gradient(circle at 85% 0%, rgba(44, 146, 255, .14), transparent 35%),
		linear-gradient(180deg, #f5f9ff, #fff);
	border-bottom: 1px solid var(--taj-line);
}

.archive-hero__inner {
	display: grid;
	grid-template-columns: 1fr 420px;
	align-items: end;
	gap: 60px;
}

.archive-hero h1,
.page-hero h1 {
	margin-bottom: 12px;
	font-size: clamp(37px, 5vw, 58px);
}

.archive-hero p,
.archive-description,
.page-hero p {
	max-width: 690px;
	margin-bottom: 0;
	color: var(--taj-muted);
	font-size: 17px;
}

.archive-description p {
	margin: 0;
}

.archive-search .search-field {
	height: 53px;
}

.archive-content {
	min-height: 420px;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 23px;
}

.post-card {
	overflow: hidden;
	background: var(--taj-white);
	border: 1px solid var(--taj-line);
	border-radius: var(--taj-radius);
	box-shadow: 0 8px 25px rgba(29, 53, 84, .06);
	transition: transform var(--taj-transition), box-shadow var(--taj-transition), border-color var(--taj-transition);
}

.post-card:hover {
	border-color: color-mix(in srgb, var(--post-color) 25%, var(--taj-line));
	box-shadow: var(--taj-shadow-hover);
	transform: translateY(-5px);
}

.post-card__media {
	display: block;
	overflow: hidden;
	height: 185px;
	color: var(--post-color);
	background:
		radial-gradient(circle at 70% 30%, color-mix(in srgb, var(--post-color) 18%, transparent), transparent 34%),
		linear-gradient(135deg, color-mix(in srgb, var(--post-color) 6%, white), #eef5ff);
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.post-card:hover .post-card__media img {
	transform: scale(1.04);
}

.post-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
}

.post-card__placeholder .taj-icon {
	width: 70px;
	height: 70px;
	opacity: .75;
}

.post-card__content {
	padding: 22px;
}

.post-card__category,
.article-category {
	display: inline-flex;
	margin-bottom: 10px;
	padding: 4px 8px;
	color: var(--post-color, var(--taj-blue));
	background: color-mix(in srgb, var(--post-color, var(--taj-blue)) 9%, white);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
}

.post-card__title {
	margin-bottom: 10px;
	font-size: 19px;
	line-height: 1.35;
}

.post-card__title a {
	color: var(--taj-navy);
}

.post-card__title a:hover {
	color: var(--taj-blue);
}

.post-card__excerpt {
	margin-bottom: 17px;
	color: var(--taj-muted);
	font-size: 13px;
	line-height: 1.6;
}

.post-card__meta {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #8a96a8;
	font-size: 11px;
}

.post-card__arrow {
	margin-left: auto;
	color: var(--post-color);
}

.post-card__arrow .taj-icon {
	width: 17px;
	height: 17px;
}

.pagination {
	margin-top: 40px;
}

.nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 7px;
}

.nav-links .page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	color: var(--taj-text);
	background: var(--taj-white);
	border: 1px solid var(--taj-line);
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	place-items: center;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
	color: var(--taj-white);
	background: var(--taj-blue);
	border-color: var(--taj-blue);
}

.search-hero {
	text-align: center;
}

.search-hero h1 {
	font-size: clamp(36px, 5vw, 56px);
}

.search-hero .eyebrow {
	margin-inline: auto;
}

.search-hero p {
	margin-inline: auto;
}

.search-hero__form {
	max-width: 610px;
	margin: 25px auto 0;
}

.empty-state {
	max-width: 620px;
	margin: 20px auto;
	padding: 50px 30px;
	text-align: center;
	background: #f8faff;
	border: 1px dashed #ccd9e8;
	border-radius: var(--taj-radius);
}

.empty-state > span {
	display: grid;
	width: 66px;
	height: 66px;
	margin: 0 auto 19px;
	color: var(--taj-blue);
	background: #e8f2ff;
	border-radius: 50%;
	place-items: center;
}

.empty-state > span .taj-icon {
	width: 30px;
	height: 30px;
}

.empty-state h2,
.empty-state h3 {
	margin-bottom: 8px;
}

.empty-state p {
	color: var(--taj-muted);
}

.empty-state .search-form {
	max-width: 480px;
	margin: 25px auto 0;
}

/* Pages and block content */
.breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 22px;
	color: #7c899c;
	font-size: 12px;
}

.breadcrumbs a {
	color: #5a6a80;
}

.breadcrumbs > .taj-icon {
	width: 12px;
	height: 12px;
}

.breadcrumbs span {
	overflow: hidden;
	max-width: 400px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.entry-content-wrap {
	padding: 65px 0 80px;
}

.entry-content {
	color: #27364b;
	font-size: 17px;
	line-height: 1.8;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.35em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 1.7em;
	margin-bottom: .65em;
	scroll-margin-top: 105px;
}

.entry-content h2 {
	font-size: clamp(26px, 3vw, 34px);
}

.entry-content h3 {
	font-size: clamp(21px, 2.5vw, 26px);
}

.entry-content a:not(.button):not(.wp-block-button__link) {
	color: var(--taj-blue);
	text-decoration: underline;
	text-decoration-color: rgba(8, 102, 232, .3);
	text-underline-offset: 3px;
}

.entry-content img {
	border-radius: 10px;
}

.entry-content figure {
	max-width: 100%;
}

.entry-content figcaption {
	margin-top: 8px;
	color: var(--taj-muted);
	font-size: 12px;
	text-align: center;
}

.entry-content blockquote,
.wp-block-quote {
	margin-inline: 0;
	padding: 20px 25px;
	background: #f1f7ff;
	border: 0;
	border-left: 4px solid var(--taj-blue);
	border-radius: 0 10px 10px 0;
}

.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.entry-content pre {
	overflow: auto;
	padding: 20px;
	color: #d8e7fb;
	background: #0b172b;
	border-radius: 10px;
	font-size: 14px;
}

.entry-content code {
	padding: .12em .3em;
	color: #9c2b54;
	background: #f8edf2;
	border-radius: 4px;
	font-size: .88em;
}

.entry-content pre code {
	padding: 0;
	color: inherit;
	background: transparent;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.entry-content th,
.entry-content td {
	padding: 11px 13px;
	border: 1px solid var(--taj-line);
	text-align: left;
}

.entry-content th {
	background: var(--taj-soft);
}

.entry-content .wp-block-button__link {
	color: var(--taj-white);
	background: var(--taj-blue);
	border-radius: 8px;
}

.page-featured-image {
	margin: 0 0 40px;
}

.page-featured-image img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	border-radius: var(--taj-radius);
}

/* Article */
.article-hero {
	padding-bottom: 51px;
}

.article-hero .breadcrumbs {
	margin-bottom: 25px;
}

.article-category {
	--post-color: var(--taj-blue);
	margin-bottom: 14px;
}

.article-hero h1 {
	max-width: 920px;
	margin-bottom: 18px;
	font-size: clamp(38px, 5.5vw, 64px);
	line-height: 1.08;
}

.article-lead {
	max-width: 800px;
	margin-bottom: 25px;
	color: #526176;
	font-size: 19px;
	line-height: 1.65;
}

.article-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 19px;
	color: #728096;
	font-size: 12px;
}

.article-meta > span,
.article-meta > time {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.article-meta .avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
}

.article-meta .taj-icon {
	width: 15px;
	height: 15px;
}

.article-featured-image {
	margin: -1px 0 0;
	transform: translateY(35px);
}

.article-featured-image img {
	width: 100%;
	max-height: 560px;
	object-fit: cover;
	border-radius: var(--taj-radius);
	box-shadow: var(--taj-shadow);
}

.article-layout {
	display: grid;
	grid-template-columns: 235px minmax(0, 760px);
	justify-content: center;
	gap: 55px;
	padding-top: 72px;
	padding-bottom: 80px;
}

.article-sidebar {
	min-width: 0;
}

.toc-card {
	position: sticky;
	top: 105px;
	padding: 20px;
	background: #f7faff;
	border: 1px solid var(--taj-line);
	border-radius: 11px;
}

.toc-card.is-empty {
	display: none;
}

.toc-card h2 {
	margin-bottom: 12px;
	font-size: 14px;
}

.toc-card ol {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.toc-card a {
	display: block;
	color: #536176;
	font-size: 12px;
	line-height: 1.45;
}

.toc-card a:hover,
.toc-card a.is-active {
	color: var(--taj-blue);
}

.toc-card li.toc-h3 {
	padding-left: 12px;
}

.sidebar-help {
	margin-top: 18px;
	padding: 20px;
	background: linear-gradient(145deg, #eaf4ff, #f8fbff);
	border: 1px solid #d9e8f9;
	border-radius: 11px;
}

.sidebar-help > span {
	display: grid;
	width: 39px;
	height: 39px;
	margin-bottom: 12px;
	color: var(--taj-blue);
	background: #dcecff;
	border-radius: 9px;
	place-items: center;
}

.sidebar-help h3 {
	margin-bottom: 6px;
	font-size: 15px;
}

.sidebar-help p {
	margin-bottom: 10px;
	color: var(--taj-muted);
	font-size: 12px;
	line-height: 1.55;
}

.sidebar-help a {
	font-size: 12px;
	font-weight: 800;
}

.article-content {
	min-width: 0;
}

.article-content > :first-child {
	margin-top: 0;
}

.article-help-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	margin-top: 60px;
	padding: 28px;
	background:
		radial-gradient(circle at 95% 10%, rgba(44, 151, 255, .17), transparent 45%),
		#eff6ff;
	border: 1px solid #d5e7fc;
	border-radius: 14px;
}

.article-help-cta h2 {
	margin: 0 0 7px;
	font-size: 24px;
}

.article-help-cta p {
	margin: 0;
	color: var(--taj-muted);
	font-size: 13px;
}

.article-help-cta .button {
	flex: 0 0 auto;
}

.article-footer {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 35px;
	padding-top: 22px;
	border-top: 1px solid var(--taj-line);
	font-size: 12px;
}

.tag-list a {
	display: inline-block;
	margin: 3px 2px;
	padding: 3px 8px;
	background: var(--taj-soft);
	border-radius: 999px;
	text-decoration: none !important;
}

.related-guides {
	background: #f8faff;
	border-top: 1px solid var(--taj-line);
}

/* Contact */
.page-hero--contact {
	text-align: center;
}

.page-hero--contact .eyebrow {
	margin-inline: auto;
}

.page-hero--contact p {
	margin-inline: auto;
}

.contact-grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 60px;
}

.contact-details h2 {
	margin-bottom: 22px;
	font-size: 27px;
}

.contact-method {
	display: grid;
	grid-template-columns: 48px 1fr;
	align-items: center;
	gap: 15px;
	margin-bottom: 12px;
	padding: 15px;
	color: var(--taj-text);
	background: var(--taj-white);
	border: 1px solid var(--taj-line);
	border-radius: 11px;
}

.contact-method:hover {
	color: var(--taj-text);
	border-color: #b8d6fb;
	box-shadow: 0 8px 20px rgba(8, 102, 232, .08);
}

.contact-method > span {
	display: grid;
	width: 48px;
	height: 48px;
	color: var(--taj-blue);
	background: #e9f3ff;
	border-radius: 9px;
	place-items: center;
}

.contact-method small,
.contact-method strong {
	display: block;
}

.contact-method small {
	color: var(--taj-muted);
	font-size: 11px;
}

.contact-method strong {
	font-size: 15px;
}

.contact-promise {
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 12px;
	margin-top: 28px;
	padding: 18px;
	color: #245235;
	background: #f0fbf4;
	border: 1px solid #d1efdc;
	border-radius: 11px;
}

.contact-promise .taj-icon {
	width: 28px;
	height: 28px;
	color: var(--taj-green);
}

.contact-promise p {
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
}

.contact-content {
	padding: 32px;
	background: var(--taj-white);
	border: 1px solid var(--taj-line);
	border-radius: var(--taj-radius);
	box-shadow: var(--taj-shadow);
}

.contact-content h2:first-child {
	margin-top: 0;
}

.contact-content input:not([type="submit"]),
.contact-content textarea,
.contact-content select {
	width: 100%;
	padding: 12px 14px;
	background: #fbfcfe;
	border: 1px solid #dce4ef;
	border-radius: 8px;
	outline: none;
}

.contact-content input:focus,
.contact-content textarea:focus,
.contact-content select:focus {
	border-color: var(--taj-blue);
	box-shadow: 0 0 0 3px rgba(8, 102, 232, .09);
}

/* 404 */
.error-page {
	padding: 95px 0;
	text-align: center;
	background: linear-gradient(180deg, #f4f9ff, #fff);
}

.error-page__code {
	color: #dceaff;
	font-size: clamp(100px, 17vw, 190px);
	font-weight: 950;
	letter-spacing: -.08em;
	line-height: .8;
}

.error-page .eyebrow {
	margin: 25px auto 18px;
}

.error-page h1 {
	font-size: clamp(34px, 5vw, 55px);
}

.error-page > .container > p {
	color: var(--taj-muted);
}

.error-page__search {
	max-width: 560px;
	margin: 30px auto 18px;
}

/* Responsive */
@media (max-width: 1120px) {
	:root {
		--taj-container: 1040px;
	}

	.primary-navigation {
		gap: 20px;
	}

	.primary-navigation .menu {
		gap: 17px;
	}

	.primary-navigation .menu a {
		font-size: 13px;
	}

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

	.hero__visual {
		margin-right: -100px;
	}

	.hero__visual img {
		width: 670px;
	}

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

@media (max-width: 940px) {
	.admin-bar .site-header.is-sticky {
		top: 46px;
	}

	.site-header {
		height: 70px;
	}

	.nav-toggle {
		display: grid;
		place-items: center;
	}

	.primary-navigation {
		position: fixed;
		z-index: 99;
		top: 70px;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		padding: 19px 20px 30px;
		visibility: hidden;
		opacity: 0;
		background: rgba(255, 255, 255, .985);
		overflow-y: auto;
		transform: translateY(-8px);
		transition: opacity var(--taj-transition), visibility var(--taj-transition), transform var(--taj-transition);
	}

	.admin-bar .primary-navigation {
		top: 116px;
	}

	.primary-navigation.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.primary-navigation .menu {
		display: block;
	}

	.primary-navigation .menu a {
		min-height: 51px;
		font-size: 16px;
		border-bottom: 1px solid var(--taj-line);
	}

	.primary-navigation .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		padding: 0 0 0 18px;
		visibility: visible;
		opacity: 1;
		background: transparent;
		border: 0;
		box-shadow: none;
		transform: none;
	}

	.primary-navigation .sub-menu a {
		font-size: 14px;
	}

	.header-help {
		width: 100%;
		margin-top: 20px;
	}

	.hero {
		padding-top: 35px;
	}

	.hero__grid {
		grid-template-columns: 1fr;
	}

	.hero__content {
		padding-left: 0;
	}

	.hero__visual {
		height: 430px;
		min-height: 0;
		margin: -50px -50px -25px 12%;
	}

	.hero__visual img {
		right: 50%;
		width: min(700px, 100%);
		transform: translate(50%, -50%);
	}

	.hero-search {
		max-width: 650px;
	}

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

	.steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 42px 0;
	}

	.step:nth-child(2)::after {
		display: none;
	}

	.assistance-grid {
		grid-template-columns: 1fr;
	}

	.assistance-card:first-child:not(:last-child) {
		border-right: 0;
		border-bottom: 1px solid #d8e7fa;
	}

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

	.archive-hero__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.archive-search {
		max-width: 600px;
	}

	.article-layout {
		grid-template-columns: 1fr;
		max-width: 800px;
		gap: 25px;
	}

	.article-sidebar {
		display: grid;
		grid-template-columns: 1fr .65fr;
		gap: 15px;
	}

	.toc-card {
		position: static;
	}

	.sidebar-help {
		margin: 0;
	}
}

@media (max-width: 700px) {
	.container {
		width: min(calc(100% - 28px), var(--taj-container));
	}

	.section {
		padding: 58px 0;
	}

	.section--compact {
		padding-top: 8px;
		padding-bottom: 28px;
	}

	.wordmark__main {
		font-size: 22px;
	}

	.wordmark__tagline {
		font-size: 8px;
	}

	.hero {
		padding-top: 29px;
	}

	.hero__content {
		padding-bottom: 5px;
	}

	.eyebrow {
		margin-bottom: 16px;
		font-size: 9.5px;
	}

	.hero h1 {
		font-size: clamp(41px, 13vw, 58px);
	}

	.hero__lead {
		font-size: 15px;
		line-height: 1.55;
	}

	.search-field {
		height: 54px;
		padding-left: 15px;
		font-size: 14px;
	}

	.popular-searches {
		display: block;
	}

	.popular-searches__label {
		margin-bottom: 7px;
	}

	.hero__visual {
		height: 330px;
		margin: -30px -65px -12px;
	}

	.hero__visual img {
		width: 560px;
	}

	.topic-grid {
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.topic-card {
		grid-template-columns: 38px 1fr 18px;
		min-height: 0;
		padding: 15px;
	}

	.topic-card__icon {
		width: 36px;
		height: 36px;
	}

	.topic-card__icon .taj-icon {
		width: 24px;
		height: 24px;
	}

	.topic-card__body {
		gap: 3px;
	}

	.topic-card__body strong {
		font-size: 15px;
	}

	.topic-card__body small {
		font-size: 11px;
	}

	.topics-more .button {
		width: 100%;
	}

	.steps {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.step {
		display: grid;
		grid-template-columns: 58px 1fr;
		gap: 0 15px;
		padding: 0;
		text-align: left;
	}

	.step:not(:last-child)::after {
		display: none;
	}

	.step__icon {
		grid-row: 1 / span 2;
		width: 58px;
		height: 58px;
		margin: 0;
	}

	.step h3,
	.step p {
		max-width: none;
		margin-inline: 0;
	}

	.assistance-card {
		min-height: 265px;
		padding: 25px 22px 120px;
	}

	.assistance-card__content,
	.assistance-card--human .assistance-card__content {
		max-width: none;
	}

	.assistance-card__person {
		right: -18px;
		bottom: -100px;
		width: 190px;
		height: 220px;
	}

	.assistant-bot {
		right: 24px;
		bottom: -4px;
		transform: scale(.8);
		transform-origin: bottom right;
	}

	.section-heading--row {
		align-items: flex-start;
	}

	.section-heading--row .kicker {
		display: none;
	}

	.guide-list {
		grid-template-columns: 1fr;
	}

	.guide-row,
	.guide-row:nth-child(odd),
	.guide-row:nth-last-child(-n+2) {
		border-right: 0;
		border-bottom: 1px solid var(--taj-line);
	}

	.guide-row:last-child {
		border-bottom: 0;
	}

	.guide-row {
		grid-template-columns: 28px minmax(0, 1fr) 15px;
	}

	.guide-row time {
		display: none;
	}

	.trust-grid {
		grid-template-columns: 1fr;
		gap: 23px;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
	}

	.footer-navigation .menu {
		justify-content: flex-start;
	}

	.site-footer__bottom {
		display: block;
	}

	.site-footer__note {
		margin-top: 8px !important;
	}

	.archive-hero,
	.page-hero,
	.article-hero {
		padding: 45px 0;
	}

	.archive-hero h1,
	.page-hero h1,
	.article-hero h1 {
		font-size: clamp(34px, 10vw, 48px);
	}

	.post-grid {
		grid-template-columns: 1fr;
	}

	.post-card__media {
		height: 200px;
	}

	.breadcrumbs span {
		max-width: 190px;
	}

	.article-lead {
		font-size: 16px;
	}

	.article-featured-image {
		transform: translateY(20px);
	}

	.article-layout {
		padding-top: 48px;
	}

	.article-sidebar {
		grid-template-columns: 1fr;
	}

	.sidebar-help {
		display: none;
	}

	.article-content {
		font-size: 16px;
	}

	.article-help-cta {
		display: block;
	}

	.article-help-cta .button {
		width: 100%;
		margin-top: 20px;
	}

	.article-footer {
		display: block;
	}

	.edit-link {
		margin-top: 12px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.contact-content {
		padding: 22px;
	}
}

@media (max-width: 380px) {
	.container {
		width: min(calc(100% - 22px), var(--taj-container));
	}

	.wordmark__tagline {
		display: none;
	}

	.hero__visual {
		height: 275px;
	}

	.assistance-card .button {
		width: 100%;
		padding-inline: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
