:root {
	--color-ink: #26313a;
	--color-muted: #65727a;
	--color-soft: #f5f6f2;
	--color-line: rgba(38, 49, 58, .14);
	--color-accent: #e91e63;
	--color-forest: #1f2a24;
	--shadow-soft: 0 18px 38px rgba(20, 28, 24, .12);
	--content: 1080px;
	--narrow: 820px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: #ffffff;
	color: var(--color-ink);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
	overflow-x: hidden;
}

a {
	color: #0f4f7a;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

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

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

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.skip-link:focus {
	background: #ffffff;
	clip: auto;
	color: var(--color-ink);
	height: auto;
	left: 16px;
	padding: 10px 14px;
	top: 16px;
	width: auto;
	z-index: 1000;
}

.site-header {
	background: rgba(255, 255, 255, .98);
	border-bottom: 1px solid rgba(38, 49, 58, .08);
	position: sticky;
	top: 0;
	z-index: 20;
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 32px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1430px;
	min-height: 92px;
	padding: 0 32px;
}

.site-brand {
	color: #555555;
	font-size: 25px;
	font-weight: 400;
	line-height: 1.1;
	text-decoration: none;
}

.site-nav__list {
	align-items: center;
	display: flex;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__link {
	align-items: center;
	color: #555555;
	display: inline-flex;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	min-height: 44px;
	text-decoration: none;
	text-transform: uppercase;
}

.site-nav__link:hover,
.site-nav__link:focus {
	color: var(--color-accent);
}

.site-nav__item--social .site-nav__link {
	min-width: 22px;
}

.site-nav__icon svg {
	display: block;
	fill: none;
	height: 21px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 21px;
}

.site-main {
	min-height: 60vh;
}

.page-content--front > .wp-block-cover:first-child {
	margin-top: 0;
}

.page-content,
.entry-content-wrap {
	margin: 0 auto;
	max-width: var(--narrow);
	padding: 56px 24px 72px;
}

.page-content--front {
	max-width: none;
	padding: 0;
}

.page-content--front > *:not(.alignfull) {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--content);
	padding-left: 24px;
	padding-right: 24px;
}

.page-content--front > .alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
}

.page-hero,
.single-hero {
	align-items: center;
	background: linear-gradient(135deg, #26313a, #1f2a24);
	color: #ffffff;
	display: flex;
	min-height: 320px;
	padding: 72px 24px;
	text-align: center;
}

.page-hero--image,
.single-hero--image {
	background-position: center;
	background-size: cover;
	min-height: 448px;
}

.page-hero__inner,
.single-hero__inner {
	margin: 0 auto;
	max-width: 920px;
}

.page-hero h1,
.single-hero h1 {
	color: #ffffff;
	font-size: clamp(42px, 6vw, 72px);
	letter-spacing: 0;
	line-height: 1.06;
	margin: 0;
}

.single-hero__meta {
	color: rgba(255, 255, 255, .82);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.post-index {
	margin: 0 auto;
	max-width: 1180px;
	padding: 72px 24px;
}

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

.post-card {
	background: #ffffff;
	border: 1px solid var(--color-line);
	border-radius: 6px;
	box-shadow: var(--shadow-soft);
	display: grid;
	grid-template-columns: minmax(180px, 40%) 1fr;
	overflow: hidden;
}

.post-card__image {
	background: linear-gradient(135deg, #d9ded7, #f4f5f1);
	display: block;
	min-height: 260px;
}

.post-card__image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.post-card__body {
	padding: 28px;
}

.post-card__meta {
	color: var(--color-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.post-card h2 {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 28px;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 12px;
}

.post-card h2 a {
	color: var(--color-ink);
	text-decoration: none;
}

.post-card__excerpt {
	color: var(--color-muted);
}

.post-card__read,
.button-link {
	color: var(--color-accent);
	display: inline-flex;
	font-weight: 700;
	margin-top: 10px;
	text-decoration: none;
}

.entry-content-wrap {
	font-size: 18px;
}

.entry-content-wrap h2,
.page-content h2 {
	color: var(--color-forest);
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.15;
	margin-top: 0;
}

.entry-content-wrap h3,
.page-content h3 {
	color: var(--color-forest);
	font-size: 24px;
	line-height: 1.25;
}

.wp-block-cover.alignfull {
	width: 100vw;
}

.wp-block-button__link,
button,
input[type='submit'] {
	background: var(--color-accent);
	border: 1px solid var(--color-accent);
	border-radius: 4px;
	color: #ffffff;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	padding: 13px 22px;
	text-decoration: none;
}

.is-style-outline > .wp-block-button__link,
.wp-block-button__link.has-text-color:not(.has-background) {
	background: transparent;
	border-color: currentColor;
}

.wp-block-columns {
	gap: 28px;
}

.wp-block-image img {
	border-radius: 4px;
}

.post-nav {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin: 0 auto 72px;
	max-width: var(--narrow);
	padding: 0 24px;
}

.navigation.pagination {
	margin-top: 44px;
	text-align: center;
}

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

.page-numbers {
	border: 1px solid var(--color-line);
	border-radius: 4px;
	color: var(--color-ink);
	min-width: 38px;
	padding: 7px 11px;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--color-ink);
	color: #ffffff;
}

.not-found {
	margin: 0 auto;
	max-width: 720px;
	padding: 96px 24px;
}

.site-footer {
	background: var(--color-forest);
	color: rgba(255, 255, 255, .78);
	padding: 34px 24px;
}

.site-footer__inner {
	align-items: center;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: var(--content);
}

.site-footer p {
	margin: 0;
}

.site-footer__brand {
	color: #ffffff;
	font-weight: 700;
}

@media (max-width: 900px) {
	.site-header__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		padding-bottom: 18px;
		padding-top: 18px;
	}

	.site-nav__list {
		flex-wrap: wrap;
		gap: 8px 20px;
	}

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

@media (max-width: 680px) {
	.site-header {
		position: static;
	}

	.site-header__inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.site-brand {
		font-size: 22px;
	}

	.site-nav__link {
		font-size: 13px;
	}

	.page-hero,
	.single-hero {
		min-height: 260px;
		padding: 56px 20px;
	}

	.page-hero--image,
	.single-hero--image {
		min-height: 340px;
	}

	.post-index,
	.page-content,
	.entry-content-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}

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

	.post-card__image {
		min-height: 220px;
	}

	.post-card__body {
		padding: 24px;
	}

	.site-footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}


