:root {
	--accent: #f6c900;
	--accent-soft: #fff7cc;
	--ink: #101114;
	--ink-2: #24262c;
	--muted: #6f737c;
	--line: #e5e6e9;
	--surface: #f5f5f2;
	--white: #fff;
	--radius: 18px;
	--shadow: 0 18px 55px rgba(16, 17, 20, .09);
	--container: 1180px;
	--article: 780px;
	--font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.is-locked {
	overflow: hidden;
}

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

svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

a {
	color: inherit;
	text-decoration: none;
}

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

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

button {
	color: inherit;
}

:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 3px;
}

::selection {
	background: var(--accent);
	color: var(--ink);
}

.container {
	width: min(calc(100% - 48px), var(--container));
	margin-right: auto;
	margin-left: auto;
}

.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 {
	top: 10px;
	left: 10px;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--ink);
	color: var(--white);
}

.reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 3px;
	pointer-events: none;
}

.reading-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: var(--accent);
	box-shadow: 0 0 12px rgba(246, 201, 0, .6);
	transition: width .08s linear;
}

/* Header */
.site-header {
	position: relative;
	z-index: 100;
	background: var(--white);
	box-shadow: 0 1px 0 var(--line);
}

.site-notice {
	background: var(--ink);
	color: #d4d5d8;
	font-size: 12px;
	letter-spacing: .04em;
}

.site-notice__inner {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 34px;
}

.site-notice__mark {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 4px rgba(246, 201, 0, .15);
}

.site-notice a {
	margin-left: auto;
	color: var(--white);
	font-weight: 700;
}

.site-notice a:hover {
	color: var(--accent);
}

.site-header__main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 91px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
}

.site-brand__logo {
	width: 224px;
	height: auto;
	max-height: 58px;
	object-fit: contain;
	object-position: left center;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.icon-button {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--white);
	cursor: pointer;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.icon-button:hover {
	border-color: var(--ink);
	background: var(--ink);
	color: var(--white);
	transform: translateY(-1px);
}

.icon-button svg {
	width: 21px;
	height: 21px;
}

.menu-toggle {
	display: none;
	gap: 4px;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.site-nav-wrap {
	border-top: 1px solid var(--line);
}

.primary-navigation .menu {
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 42px);
	padding: 0;
	margin: 0;
	list-style: none;
}

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

.primary-navigation .menu > li > a {
	position: relative;
	display: flex;
	align-items: center;
	height: 55px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .04em;
	white-space: nowrap;
}

.primary-navigation .menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	background: var(--accent);
	content: "";
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform .25s ease;
}

.primary-navigation .menu > li > a:hover::after,
.primary-navigation .current-menu-item > a::after,
.primary-navigation .current-category-ancestor > a::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.primary-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: -18px;
	width: 210px;
	padding: 10px;
	margin: 0;
	list-style: none;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: .2s ease;
}

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

.primary-navigation .sub-menu a {
	display: block;
	padding: 10px 12px;
	font-size: 13px;
	font-weight: 700;
}

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

.header-search {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 22px 0;
	background: rgba(255, 255, 255, .98);
	border-top: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.header-search__inner {
	display: flex;
	align-items: center;
	gap: 14px;
}

.header-search .search-form {
	flex: 1;
}

.header-search__close {
	padding: 8px 4px;
	border: 0;
	background: transparent;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}

.mobile-panel {
	position: fixed;
	top: 0;
	right: 0;
	z-index: -1;
	width: min(88vw, 400px);
	height: 100dvh;
	padding: 120px 30px 40px;
	background: var(--ink);
	color: var(--white);
	box-shadow: -20px 0 60px rgba(0, 0, 0, .2);
	overflow-y: auto;
}

body.is-locked::before {
	position: fixed;
	inset: 0;
	z-index: 140;
	background: rgba(0, 0, 0, .48);
	content: "";
}

.mobile-panel__label {
	margin: 0 0 18px;
	color: var(--accent);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .2em;
}

.mobile-panel .menu {
	padding: 0;
	margin: 0 0 32px;
	list-style: none;
}

.mobile-panel .menu a {
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .13);
	font-size: 18px;
	font-weight: 800;
}

.mobile-panel .sub-menu {
	padding-left: 18px;
	list-style: none;
}

.mobile-panel .sub-menu a {
	font-size: 14px;
}

/* Shared headings and controls */
.section-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 12px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .2em;
	line-height: 1.4;
}

.section-kicker > span {
	width: 26px;
	height: 3px;
	background: var(--accent);
}

.section-kicker--light {
	color: #b9bbc0;
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 36px;
}

.section-heading h2 {
	margin: 0;
	font-size: clamp(27px, 4vw, 42px);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: 1.25;
}

.section-heading > p {
	max-width: 390px;
	margin: 0 0 5px;
	color: var(--muted);
	font-size: 14px;
}

.section-heading--compact {
	margin-bottom: 26px;
}

.section-heading--compact h2 {
	font-size: clamp(25px, 3vw, 34px);
}

.section-heading--dark .section-kicker {
	color: var(--muted);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(16, 17, 20, .18);
}

.button--dark {
	background: var(--ink);
	color: var(--white);
}

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

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	height: 52px;
	padding: 0 58px 0 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white);
	color: var(--ink);
	font-size: 14px;
}

.search-field:focus {
	border-color: var(--ink);
	outline: 0;
	box-shadow: 0 0 0 3px rgba(246, 201, 0, .35);
}

.search-submit {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.search-submit svg {
	width: 20px;
	height: 20px;
}

/* Home */
.home-intro {
	padding: clamp(50px, 7vw, 94px) 0 clamp(42px, 6vw, 70px);
	background:
		linear-gradient(90deg, transparent 49.9%, rgba(16, 17, 20, .055) 50%, transparent 50.1%),
		linear-gradient(var(--white), var(--white));
}

.home-intro__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.75fr) minmax(250px, .65fr);
	align-items: end;
	gap: clamp(38px, 7vw, 94px);
}

.home-intro h1 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(38px, 6.3vw, 78px);
	font-weight: 900;
	letter-spacing: -.065em;
	line-height: 1.16;
}

.home-intro h1::after {
	display: inline-block;
	width: .24em;
	height: .24em;
	margin-left: .07em;
	border-radius: 50%;
	background: var(--accent);
	content: "";
}

.home-intro__copy {
	padding-left: 24px;
	margin: 0 0 6px;
	border-left: 3px solid var(--accent);
	color: var(--muted);
	font-size: 14px;
}

.featured-section {
	padding-bottom: clamp(70px, 9vw, 120px);
}

.featured-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.58fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: 22px;
}

.featured-grid .post-card--hero {
	grid-row: span 2;
}

.category-hub {
	position: relative;
	padding: clamp(70px, 9vw, 112px) 0;
	background: var(--ink);
	color: var(--white);
	overflow: hidden;
}

.category-hub::before {
	position: absolute;
	top: -210px;
	right: -80px;
	width: 480px;
	height: 480px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 50%;
	box-shadow: 0 0 0 70px rgba(255, 255, 255, .018), 0 0 0 140px rgba(255, 255, 255, .012);
	content: "";
}

.category-hub .section-heading {
	position: relative;
}

.category-hub .section-heading > p {
	color: #b9bbc0;
}

.category-hub__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(255, 255, 255, .14);
	border-left: 1px solid rgba(255, 255, 255, .14);
}

.category-tile {
	position: relative;
	display: grid;
	grid-template-columns: 52px 1fr auto;
	grid-template-rows: auto auto;
	align-items: center;
	gap: 3px 18px;
	min-height: 164px;
	padding: 30px;
	border-right: 1px solid rgba(255, 255, 255, .14);
	border-bottom: 1px solid rgba(255, 255, 255, .14);
	overflow: hidden;
	transition: color .25s ease;
}

.category-tile::before {
	position: absolute;
	inset: 0;
	background: var(--accent);
	content: "";
	transform: translateY(102%);
	transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}

.category-tile:hover {
	color: var(--ink);
}

.category-tile:hover::before {
	transform: translateY(0);
}

.category-tile > * {
	position: relative;
}

.category-tile__icon {
	grid-row: 1 / span 2;
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 50%;
}

.category-tile:hover .category-tile__icon {
	border-color: rgba(16, 17, 20, .2);
}

.category-tile__icon svg {
	width: 24px;
	height: 24px;
}

.category-tile__name {
	align-self: end;
	font-size: 19px;
	font-weight: 900;
}

.category-tile__count {
	align-self: start;
	color: #9da0a7;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .12em;
}

.category-tile:hover .category-tile__count {
	color: rgba(16, 17, 20, .62);
}

.category-tile__arrow {
	grid-column: 3;
	grid-row: 1 / span 2;
	font-size: 20px;
}

.latest-section {
	padding-top: clamp(70px, 9vw, 116px);
	padding-bottom: clamp(80px, 10vw, 130px);
}

.home-commitment {
	padding: clamp(58px, 8vw, 90px) 0;
	background: var(--accent);
}

.home-commitment__inner {
	display: grid;
	grid-template-columns: 110px minmax(280px, 1fr) minmax(300px, .9fr);
	align-items: center;
	gap: clamp(28px, 5vw, 74px);
}

.home-commitment__number {
	margin: 0;
	font-size: 70px;
	font-weight: 900;
	letter-spacing: -.08em;
	line-height: 1;
	-webkit-text-stroke: 1px rgba(16, 17, 20, .34);
	color: transparent;
}

.home-commitment .section-kicker {
	color: rgba(16, 17, 20, .62);
}

.home-commitment .section-kicker > span {
	background: var(--ink);
}

.home-commitment h2 {
	margin: 0;
	font-size: clamp(29px, 4vw, 43px);
	font-weight: 900;
	letter-spacing: -.04em;
	line-height: 1.3;
}

.home-commitment__inner > p:last-child {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
}

/* Cards */
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 42px 26px;
}

.post-card {
	position: relative;
	min-width: 0;
}

.post-card__media {
	position: relative;
	display: block;
	background: #dedfdc;
	border-radius: 12px;
	overflow: hidden;
}

.post-card__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 60%, rgba(0, 0, 0, .2));
	content: "";
	opacity: 0;
	transition: opacity .3s ease;
}

.post-card__media img,
.post-card__placeholder {
	width: 100%;
	aspect-ratio: 1.57 / 1;
	object-fit: cover;
	transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

.post-card:hover .post-card__media img,
.post-card:hover .post-card__placeholder {
	transform: scale(1.035);
}

.post-card:hover .post-card__media::after {
	opacity: 1;
}

.post-card__placeholder {
	display: grid;
	place-items: center;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .08), transparent),
		var(--ink-2);
	color: rgba(255, 255, 255, .12);
}

.post-card__placeholder > span {
	font-size: clamp(28px, 5vw, 62px);
	font-weight: 900;
	letter-spacing: .12em;
}

.post-card__body {
	padding-top: 18px;
}

.post-card__eyebrow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 20px;
	margin-bottom: 11px;
}

.post-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.post-category {
	display: inline-flex;
	align-items: center;
	min-height: 23px;
	padding: 2px 8px;
	background: var(--accent);
	color: var(--ink);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .04em;
	line-height: 1.3;
}

.post-card__eyebrow time {
	color: var(--muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .05em;
}

.post-card__title {
	margin: 0;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: 1.52;
}

.post-card__title a {
	background-image: linear-gradient(var(--ink), var(--ink));
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 0 1px;
	transition: background-size .25s ease, background-position 0s .25s;
}

.post-card:hover .post-card__title a {
	background-position: 0 100%;
	background-size: 100% 1px;
}

.post-card__summary {
	display: -webkit-box;
	margin: 10px 0 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.75;
}

.post-card__more {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-top: 14px;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
}

.post-card__more span {
	transition: transform .2s ease;
}

.post-card:hover .post-card__more span {
	transform: translateX(4px);
}

.post-card--hero {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100%;
}

.post-card--hero .post-card__media img,
.post-card--hero .post-card__placeholder {
	aspect-ratio: 1.43 / 1;
}

.post-card--hero .post-card__body {
	padding-top: 22px;
}

.post-card--hero .post-card__title {
	font-size: clamp(23px, 2.6vw, 34px);
	line-height: 1.38;
}

.post-card--compact {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	align-items: start;
	gap: 16px;
}

.post-card--compact .post-card__media img,
.post-card--compact .post-card__placeholder {
	aspect-ratio: 1 / .86;
}

.post-card--compact .post-card__body {
	padding-top: 0;
}

.post-card--compact .post-card__eyebrow {
	align-items: flex-start;
	margin-bottom: 7px;
}

.post-card--compact .post-card__eyebrow time,
.post-card--compact .post-card__more {
	display: none;
}

.post-card--compact .post-card__title {
	font-size: 14px;
	line-height: 1.55;
}

.post-grid--related {
	gap: 22px;
}

.post-grid--related .post-card--compact {
	display: block;
}

.post-grid--related .post-card--compact .post-card__media img,
.post-grid--related .post-card--compact .post-card__placeholder {
	aspect-ratio: 1.55 / 1;
}

.post-grid--related .post-card--compact .post-card__body {
	padding-top: 14px;
}

/* Breadcrumbs and archives */
.breadcrumbs {
	padding-top: 16px;
	padding-bottom: 16px;
	overflow: hidden;
}

.breadcrumbs ol {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
	white-space: nowrap;
	overflow: hidden;
}

.breadcrumbs li {
	display: flex;
	align-items: center;
	min-width: 0;
	color: var(--muted);
	font-size: 11px;
}

.breadcrumbs li:not(:last-child)::after {
	margin-left: 8px;
	color: #babcc1;
	content: "/";
}

.breadcrumbs li:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
}

.breadcrumbs a:hover {
	color: var(--ink);
	text-decoration: underline;
}

.archive-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: clamp(48px, 6vw, 78px);
	padding-top: 54px;
	padding-bottom: 100px;
}

.archive-header {
	padding-bottom: 34px;
	margin-bottom: 40px;
	border-bottom: 1px solid var(--line);
}

.archive-header h1,
.page-header h1 {
	margin: 0;
	font-size: clamp(32px, 5vw, 50px);
	font-weight: 900;
	letter-spacing: -.04em;
	line-height: 1.25;
}

.archive-header > p,
.archive-description {
	margin: 15px 0 0;
	color: var(--muted);
	font-size: 14px;
}

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

.pagination {
	margin-top: 64px;
}

.pagination ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.pagination a,
.pagination .current {
	display: grid;
	place-items: center;
	min-width: 43px;
	height: 43px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 50px;
	font-size: 12px;
	font-weight: 800;
}

.pagination a:hover,
.pagination .current {
	border-color: var(--ink);
	background: var(--ink);
	color: var(--white);
}

/* Sidebar */
.site-sidebar {
	min-width: 0;
}

.article-layout > .site-sidebar {
	position: sticky;
	top: 28px;
	align-self: start;
}

.site-sidebar > section,
.site-sidebar > .widget {
	padding-bottom: 34px;
	margin-bottom: 34px;
	border-bottom: 1px solid var(--line);
}

.sidebar-heading,
.widget-title {
	margin: 0 0 18px;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: -.02em;
	line-height: 1.4;
}

.sidebar-heading span {
	display: block;
	margin-bottom: 4px;
	color: var(--muted);
	font-size: 9px;
	letter-spacing: .18em;
}

.sidebar-categories ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.sidebar-categories a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 0;
	border-bottom: 1px dotted #d2d3d7;
	font-size: 13px;
	font-weight: 800;
}

.sidebar-categories a:hover {
	padding-left: 5px;
}

.sidebar-categories small {
	display: grid;
	place-items: center;
	min-width: 25px;
	height: 25px;
	border-radius: 50%;
	background: var(--surface);
	color: var(--muted);
	font-size: 9px;
}

.popular-list {
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: rank;
}

.popular-list li + li {
	margin-top: 16px;
}

.popular-list a {
	position: relative;
	display: grid;
	grid-template-columns: 84px 1fr;
	align-items: center;
	gap: 12px;
}

.popular-list__rank {
	position: absolute;
	top: -5px;
	left: -5px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: var(--accent);
	font-size: 10px;
	font-weight: 900;
}

.popular-list__thumb {
	display: block;
	border-radius: 6px;
	overflow: hidden;
}

.popular-list__thumb img,
.popular-list__thumb .post-card__placeholder {
	width: 100%;
	aspect-ratio: 1.15 / 1;
	object-fit: cover;
}

.popular-list__title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.55;
}

.popular-list a:hover .popular-list__title {
	text-decoration: underline;
}

/* Article */
.article-page {
	padding: 35px 0 100px;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, var(--article)) 300px;
	justify-content: space-between;
	gap: clamp(50px, 7vw, 90px);
}

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

.article-header {
	margin-bottom: 30px;
}

.article-header > .post-categories {
	margin-bottom: 16px;
}

.article-header h1 {
	margin: 0;
	font-size: clamp(30px, 4.8vw, 49px);
	font-weight: 900;
	letter-spacing: -.045em;
	line-height: 1.34;
	overflow-wrap: anywhere;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
	margin-top: 20px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
}

.post-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.post-meta svg {
	width: 15px;
	height: 15px;
}

.post-meta a:hover {
	color: var(--ink);
	text-decoration: underline;
}

.article-hero {
	margin: 0 0 36px;
	border-radius: 14px;
	overflow: hidden;
}

.article-hero img {
	width: 100%;
	max-height: 620px;
	object-fit: cover;
}

.article-toc {
	margin: 0 0 42px;
	border: 1px solid var(--line);
	border-top: 4px solid var(--ink);
	background: var(--surface);
}

.article-toc__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 24px;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: left;
}

.article-toc__toggle > span:first-child {
	display: flex;
	align-items: center;
	gap: 15px;
}

.article-toc__number {
	color: var(--muted);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .18em;
}

.article-toc__toggle strong {
	font-size: 16px;
}

.article-toc__chevron {
	width: 9px;
	height: 9px;
	border-right: 2px solid;
	border-bottom: 2px solid;
	transform: rotate(45deg) translateY(-2px);
	transition: transform .2s ease;
}

.article-toc__toggle[aria-expanded="false"] .article-toc__chevron {
	transform: rotate(-135deg) translate(-2px, -2px);
}

.article-toc__list {
	padding: 0 28px 22px 48px;
	margin: 0;
	font-size: 13px;
}

.article-toc__list li + li {
	margin-top: 7px;
}

.article-toc__list li.toc-level-3 {
	margin-left: 18px;
	color: var(--muted);
	font-size: 12px;
}

.article-toc__list a:hover {
	text-decoration: underline;
}

.article-toc__list[hidden] {
	display: none;
}

.entry-content {
	color: #24262b;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	overflow-wrap: anywhere;
}

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

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content table,
.entry-content blockquote,
.entry-content figure,
.entry-content pre {
	margin-top: 0;
	margin-bottom: 1.75em;
}

.entry-content h2 {
	position: relative;
	padding: 21px 24px 21px 28px;
	margin: 3.1em 0 1.35em;
	background: var(--ink);
	color: var(--white);
	font-size: clamp(23px, 3.4vw, 30px);
	font-weight: 900;
	letter-spacing: -.03em;
	line-height: 1.5;
}

.entry-content h2::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 6px;
	background: var(--accent);
	content: "";
}

.entry-content h3 {
	padding: 0 0 12px 18px;
	margin: 2.7em 0 1.2em;
	border-bottom: 2px solid var(--ink);
	font-size: clamp(20px, 3vw, 25px);
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: 1.55;
}

.entry-content h3::before {
	display: inline-block;
	width: 6px;
	height: 1em;
	margin-right: 11px;
	margin-left: -17px;
	background: var(--accent);
	content: "";
	vertical-align: -.1em;
}

.entry-content h4 {
	margin: 2.2em 0 1em;
	font-size: 19px;
	font-weight: 900;
	line-height: 1.6;
}

.entry-content a:not(.wp-block-button__link) {
	color: #006eaa;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.entry-content a:hover {
	color: #004f7b;
}

.entry-content strong {
	font-weight: 900;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.5em;
}

.entry-content li + li {
	margin-top: .45em;
}

.entry-content blockquote {
	position: relative;
	padding: 25px 28px 25px 55px;
	border: 0;
	background: var(--surface);
	color: #555962;
	font-size: 14px;
}

.entry-content blockquote::before {
	position: absolute;
	top: 8px;
	left: 17px;
	color: #cacbd0;
	font-family: Georgia, serif;
	font-size: 55px;
	line-height: 1;
	content: "“";
}

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

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

.entry-content figcaption,
.entry-content .wp-caption-text {
	margin-top: 8px;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.6;
	text-align: center;
}

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

.entry-content iframe,
.entry-content video {
	max-width: 100%;
}

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

.entry-content th,
.entry-content td {
	padding: 12px 14px;
	border: 1px solid #dfe0e3;
	text-align: left;
}

.entry-content th {
	background: var(--surface);
	font-weight: 900;
}

.entry-content pre {
	padding: 22px;
	background: #1c1e23;
	color: #f4f4f4;
	font-size: 13px;
	line-height: 1.7;
	overflow-x: auto;
}

.entry-content code {
	padding: 2px 5px;
	background: var(--surface);
	font-size: .9em;
}

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

.entry-content .alignwide {
	width: min(100vw - 48px, 980px);
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry-content .alignfull {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

.page-links {
	padding: 16px;
	margin: 38px 0;
	background: var(--surface);
	font-weight: 800;
	text-align: center;
}

.article-footer {
	margin-top: 60px;
}

.article-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}

.article-tags__label {
	margin-right: 7px;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .18em;
}

.article-tags a {
	padding: 5px 10px;
	border: 1px solid var(--line);
	border-radius: 50px;
	color: var(--muted);
	font-size: 11px;
}

.article-tags a:hover {
	border-color: var(--ink);
	color: var(--ink);
}

.share-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 25px 28px;
	margin-top: 38px;
	background: var(--ink);
	color: var(--white);
}

.share-box p {
	margin: 0;
	color: #bbbcc1;
	font-size: 12px;
}

.share-box .share-box__label {
	margin-bottom: 3px;
	color: var(--accent);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .15em;
}

.share-box__links {
	display: flex;
	gap: 8px;
}

.share-link {
	display: grid;
	place-items: center;
	width: 43px;
	height: 43px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 50%;
	background: transparent;
	color: var(--white);
	font-size: 15px;
	font-weight: 900;
	cursor: pointer;
	transition: .2s ease;
}

.share-link:hover,
.share-link.is-copied {
	border-color: var(--accent);
	background: var(--accent);
	color: var(--ink);
}

.share-link svg {
	width: 19px;
	height: 19px;
}

.author-box {
	display: grid;
	grid-template-columns: 94px 1fr;
	gap: 23px;
	padding: 30px;
	margin-top: 38px;
	border: 1px solid var(--line);
	background: var(--surface);
}

.author-box__avatar img {
	width: 94px;
	height: 94px;
	border-radius: 50%;
	object-fit: cover;
}

.author-box__label {
	margin: 0 0 4px;
	color: var(--muted);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .18em;
}

.author-box h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 900;
}

.author-box p:not(.author-box__label) {
	margin: 8px 0;
	color: var(--muted);
	font-size: 12px;
}

.author-box a {
	font-size: 11px;
	font-weight: 900;
}

.related-posts {
	padding-top: 64px;
	margin-top: 68px;
	border-top: 1px solid var(--line);
}

/* Pages, empty and 404 */
.page-main {
	padding: 42px 0 100px;
}

.page-article {
	max-width: 900px;
}

.page-header {
	padding-bottom: 30px;
	margin-bottom: 38px;
	border-bottom: 1px solid var(--line);
}

.empty-state {
	padding: 60px 30px;
	background: var(--surface);
	text-align: center;
}

.empty-state__mark {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--accent);
	font-size: 25px;
	font-weight: 900;
}

.empty-state h2 {
	margin: 0 0 8px;
	font-size: 25px;
}

.empty-state > p {
	margin: 0 0 24px;
	color: var(--muted);
	font-size: 13px;
}

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

.error-page {
	padding: 60px 0 110px;
}

.error-page__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 80px;
}

.error-page__code {
	font-size: clamp(130px, 21vw, 280px);
	font-weight: 900;
	letter-spacing: -.1em;
	line-height: .8;
	-webkit-text-stroke: 2px #cfd0d4;
	color: transparent;
}

.error-page__content h1 {
	margin: 0;
	font-size: clamp(30px, 4vw, 45px);
	font-weight: 900;
	letter-spacing: -.04em;
	line-height: 1.42;
}

.error-page__content > p:not(.section-kicker) {
	margin: 20px 0;
	color: var(--muted);
	font-size: 14px;
}

.error-page .search-form {
	margin-bottom: 18px;
}

/* Comments and widgets */
.comments-area {
	padding-top: 60px;
	margin-top: 68px;
	border-top: 1px solid var(--line);
}

.comments-title,
.comment-reply-title {
	font-size: 23px;
	font-weight: 900;
}

.comment-list {
	padding: 0;
	list-style: none;
}

.comment-list .children {
	padding-left: 35px;
	list-style: none;
}

.comment-body {
	padding: 22px;
	margin-bottom: 16px;
	border: 1px solid var(--line);
}

.comment-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.comment-author img {
	border-radius: 50%;
}

.comment-metadata,
.reply {
	font-size: 11px;
}

.comment-form label {
	display: block;
	margin-bottom: 4px;
	font-size: 12px;
	font-weight: 800;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--line);
}

.comment-form .submit {
	padding: 13px 24px;
	border: 0;
	background: var(--ink);
	color: var(--white);
	font-weight: 800;
	cursor: pointer;
}

.widget ul {
	padding-left: 0;
	list-style: none;
}

.widget li + li {
	margin-top: 7px;
}

/* Footer */
.site-footer {
	padding-top: 76px;
	background: #0d0e11;
	color: var(--white);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr .75fr .75fr;
	gap: clamp(45px, 7vw, 90px);
	padding-bottom: 65px;
}

.site-footer .site-brand {
	padding: 13px 16px;
	background: var(--white);
}

.site-footer .site-brand__logo {
	width: 190px;
}

.site-footer__brand > p {
	max-width: 410px;
	margin: 23px 0 15px;
	color: #a9abb1;
	font-size: 13px;
}

.footer-about-link {
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .04em;
}

.footer-about-link:hover {
	color: var(--accent);
}

.footer-heading {
	padding-bottom: 12px;
	margin: 0 0 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
	color: var(--accent);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .18em;
}

.footer-category-list,
.footer-info-list {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 13px;
	font-weight: 700;
}

.footer-category-list li + li,
.footer-info-list li + li {
	margin-top: 9px;
}

.footer-category-list a,
.footer-info-list a {
	color: #c9cad0;
}

.footer-category-list a:hover,
.footer-info-list a:hover {
	color: var(--white);
	text-decoration: underline;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 19px;
	padding-bottom: 19px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	color: #73767d;
	font-size: 10px;
	letter-spacing: .06em;
}

.site-footer__bottom p {
	margin: 0;
}

.scroll-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 80;
	display: grid;
	place-items: center;
	width: 47px;
	height: 47px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--ink);
	box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
	color: var(--white);
	cursor: pointer;
}

.scroll-top:hover {
	background: var(--accent);
	color: var(--ink);
}

.scroll-top svg {
	width: 20px;
	height: 20px;
}

/* WordPress core alignments */
.alignleft {
	float: left;
	margin: .4em 1.5em 1em 0;
}

.alignright {
	float: right;
	margin: .4em 0 1em 1.5em;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.gallery {
	display: grid;
	gap: 12px;
}

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

@media (max-width: 1050px) {
	.featured-grid {
		grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	}

	.featured-grid .post-card--hero {
		grid-row: span 4;
	}

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

	.article-layout,
	.archive-layout {
		grid-template-columns: minmax(0, 1fr) 270px;
		gap: 48px;
	}
}

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

	.site-notice a {
		display: none;
	}

	.site-header__main {
		min-height: 76px;
	}

	.site-brand__logo {
		width: 192px;
	}

	.site-nav-wrap {
		display: none;
	}

	.menu-toggle {
		display: grid;
	}

	.menu-toggle[aria-expanded="true"] {
		position: fixed;
		top: 52px;
		right: 18px;
		z-index: 200;
		border-color: rgba(255, 255, 255, .2);
		background: var(--ink);
		color: var(--white);
	}

	.mobile-panel:not([hidden]) {
		display: block;
		z-index: 150;
	}

	.home-intro__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.home-intro__copy {
		max-width: 600px;
	}

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

	.home-commitment__inner {
		grid-template-columns: 80px 1fr;
	}

	.home-commitment__inner > p:last-child {
		grid-column: 2;
	}

	.article-layout,
	.archive-layout {
		grid-template-columns: 1fr;
	}

	.article-layout > .site-sidebar,
	.archive-layout > .site-sidebar {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px;
		padding-top: 45px;
		border-top: 1px solid var(--line);
	}

	.site-sidebar > section,
	.site-sidebar > .widget {
		margin: 0;
	}

	.error-page__inner {
		gap: 45px;
	}

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

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

@media (max-width: 620px) {
	body {
		font-size: 15px;
	}

	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.site-notice__inner {
		min-height: 31px;
		font-size: 10px;
	}

	.site-header__main {
		min-height: 68px;
	}

	.site-brand__logo {
		width: 165px;
	}

	.icon-button {
		width: 40px;
		height: 40px;
	}

	.search-toggle {
		display: none;
	}

	.menu-toggle[aria-expanded="true"] {
		top: 44px;
	}

	.mobile-panel {
		padding: 100px 24px 30px;
	}

	.home-intro {
		padding-top: 47px;
	}

	.home-intro h1 {
		font-size: clamp(36px, 12vw, 53px);
	}

	.section-heading {
		display: block;
		margin-bottom: 27px;
	}

	.section-heading > p {
		margin-top: 11px;
	}

	.featured-grid {
		display: block;
	}

	.featured-grid .post-card + .post-card {
		margin-top: 25px;
	}

	.featured-grid .post-card--compact {
		display: grid;
	}

	.post-card--hero .post-card__media img,
	.post-card--hero .post-card__placeholder {
		aspect-ratio: 1.4 / 1;
	}

	.category-hub__grid {
		grid-template-columns: 1fr;
	}

	.category-tile {
		min-height: 125px;
		padding: 22px;
	}

	.post-grid,
	.post-grid--archive {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.post-card__title {
		font-size: 17px;
	}

	.home-commitment__inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.home-commitment__number {
		font-size: 56px;
	}

	.home-commitment__inner > p:last-child {
		grid-column: auto;
	}

	.breadcrumbs {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.archive-layout,
	.article-page {
		padding-top: 30px;
		padding-bottom: 75px;
	}

	.archive-header {
		margin-bottom: 30px;
	}

	.article-header h1 {
		font-size: 30px;
	}

	.article-hero {
		margin-right: -14px;
		margin-left: -14px;
		border-radius: 0;
	}

	.article-toc__toggle {
		padding: 17px 18px;
	}

	.article-toc__list {
		padding: 0 22px 19px 40px;
	}

	.entry-content {
		font-size: 15px;
		line-height: 1.95;
	}

	.entry-content h2 {
		padding: 17px 17px 17px 20px;
		margin-top: 2.6em;
		font-size: 22px;
	}

	.entry-content h3 {
		font-size: 20px;
	}

	.entry-content table {
		display: block;
		max-width: 100%;
		overflow-x: auto;
		white-space: nowrap;
	}

	.entry-content .alignwide {
		width: calc(100vw - 28px);
	}

	.share-box {
		align-items: flex-start;
		padding: 22px;
	}

	.share-box p:not(.share-box__label) {
		display: none;
	}

	.author-box {
		grid-template-columns: 67px 1fr;
		gap: 17px;
		padding: 22px;
	}

	.author-box__avatar img {
		width: 67px;
		height: 67px;
	}

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

	.post-grid--related .post-card--compact {
		display: grid;
	}

	.article-layout > .site-sidebar,
	.archive-layout > .site-sidebar {
		display: block;
	}

	.site-sidebar > section,
	.site-sidebar > .widget {
		margin-bottom: 32px;
	}

	.error-page {
		padding-top: 25px;
	}

	.error-page__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.error-page__code {
		font-size: 42vw;
	}

	.site-footer {
		padding-top: 58px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.site-footer__brand {
		grid-column: auto;
	}

	.site-footer__bottom {
		display: block;
		text-align: center;
	}

	.site-footer__bottom p + p {
		margin-top: 4px;
	}

	.scroll-top {
		right: 14px;
		bottom: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.site-header,
	.site-footer,
	.site-sidebar,
	.breadcrumbs,
	.reading-progress,
	.share-box,
	.scroll-top,
	.related-posts,
	.comments-area {
		display: none !important;
	}

	body {
		color: #000;
	}

	.article-layout {
		display: block;
	}

	.entry-content a {
		color: #000;
	}
}
