/*
 * Ochava - front-end stylesheet.
 *
 * Order: tokens, base, layout, brand, header, controls, homepage,
 * listings, article, footer, utilities, responsive.
 * There is no border-radius and no box-shadow anywhere in this file:
 * every corner is a chamfer (clip-path) and every edge is a rule.
 */

/* ---------------------------------------------------------------- tokens */

:root {
	--verde: #1F4F3D;
	--rojo: #B3261E;
	--oro: #C9982E;
	--azul: #1E3A8A;
	--crema: #F3E8CF;
	--crema-clara: #FBF6EA;
	--crema-oscura: #EADBB8;
	--tinta: #1A1815;
	--tinta-suave: #5E5A54;
	--crema-suave: rgba(243, 232, 207, .7);

	--display: "Yeseva One", Georgia, "Times New Roman", serif;
	--text: "Crimson Pro", Georgia, "Times New Roman", serif;

	--container: 1280px;
	--gutter: 40px;

	--chamfer-10: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
	--chamfer-9: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px), 0 9px);
	--chamfer-8: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
	--octagon: polygon(16% 0, 84% 0, 100% 16%, 100% 84%, 84% 100%, 16% 100%, 0 84%, 0 16%);

	--speed: 150ms;
}

/* ------------------------------------------------------------------ base */

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

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--crema-oscura);
	color: var(--tinta);
	font-family: var(--text);
	font-size: 19px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
}

p {
	text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--display);
	font-weight: 400;
	color: var(--verde);
	text-wrap: balance;
	margin: 0;
}

button {
	font: inherit;
}

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

::selection {
	background: var(--oro);
	color: var(--tinta);
}

/* ---------------------------------------------------------------- layout */

.ochava-page {
	max-width: var(--container);
	margin: 0 auto;
	min-height: 100vh;
	background: var(--crema);
	display: flex;
	flex-direction: column;
}

.ochava-main {
	flex: 1 0 auto;
}

.ochava-skip {
	position: absolute;
	left: -9999px;
	top: 8px;
	z-index: 100;
}

.ochava-skip:focus-visible {
	left: 12px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}

/* ----------------------------------------------------------------- brand */

.ochava-mono {
	display: grid;
	place-items: center;
	width: var(--ochava-mono-size, 58px);
	height: var(--ochava-mono-size, 58px);
	flex: 0 0 auto;
	background: var(--verde);
	clip-path: var(--octagon);
}

.ochava-mono__inner {
	display: grid;
	place-items: center;
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	background: var(--crema);
	clip-path: var(--octagon);
	font-family: var(--display);
	font-size: calc(var(--ochava-mono-size, 58px) * .34);
	line-height: 1;
	color: var(--verde);
	padding-top: .04em;
}

.ochava-mono--reversed {
	background: var(--oro);
}

.ochava-mono--reversed .ochava-mono__inner {
	background: var(--verde);
	color: var(--crema);
	width: calc(100% - 8px);
	height: calc(100% - 8px);
}

.ochava-lockup {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: inherit;
}

.ochava-lockup__text {
	display: block;
}

.ochava-lockup__name {
	display: block;
	font-family: var(--display);
	font-size: 24px;
	line-height: 1;
	color: var(--verde);
}

.ochava-lockup__label {
	display: block;
	margin-top: 5px;
	font-weight: 600;
	font-size: 10.5px;
	line-height: 1;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--rojo);
}

.ochava-lockup--reversed .ochava-lockup__name {
	color: var(--crema);
}

.ochava-lockup--reversed .ochava-lockup__label {
	color: var(--oro);
}

.ochava-lockup__logo img {
	display: block;
	width: auto;
	max-height: 58px;
}

/* The full seal (404, wide brand moments). */
.ochava-seal {
	display: grid;
	place-items: center;
	width: var(--ochava-seal-size, 150px);
	height: var(--ochava-seal-size, 150px);
	background: var(--verde);
	clip-path: var(--octagon);
}

.ochava-seal__gold {
	display: grid;
	place-items: center;
	width: calc(100% - (var(--ochava-seal-size, 150px) * .0534));
	height: calc(100% - (var(--ochava-seal-size, 150px) * .0534));
	background: var(--oro);
	clip-path: var(--octagon);
}

.ochava-seal__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: calc(var(--ochava-seal-size, 150px) * .025);
	width: calc(100% - (var(--ochava-seal-size, 150px) * .0534));
	height: calc(100% - (var(--ochava-seal-size, 150px) * .0534));
	background: var(--crema);
	clip-path: var(--octagon);
	text-align: center;
}

.ochava-seal__fleuron,
.ochava-seal__stars {
	color: var(--oro);
	line-height: 1;
	font-size: calc(var(--ochava-seal-size, 150px) * .06);
}

.ochava-seal__stars {
	letter-spacing: .3em;
	text-indent: .3em;
}

.ochava-seal__name {
	font-family: var(--display);
	font-size: calc(var(--ochava-seal-size, 150px) * .133);
	line-height: 1;
	color: var(--verde);
}

.ochava-seal__label {
	font-weight: 600;
	font-size: calc(var(--ochava-seal-size, 150px) * .06);
	line-height: 1;
	letter-spacing: .22em;
	text-indent: .22em;
	text-transform: uppercase;
	color: var(--rojo);
}

/* ---------------------------------------------------------------- ribbon */

.ochava-ribbon {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 9px var(--gutter);
	background: var(--verde);
	color: var(--crema);
	font-weight: 500;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .14em;
	text-transform: uppercase;
	text-align: center;
}

.ochava-ribbon__mark {
	color: var(--oro);
}

.ochava-ribbon__text--short {
	display: none;
}

/* ---------------------------------------------------------------- header */

.ochava-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px var(--gutter);
	border-bottom: 3px double var(--verde);
}

.ochava-nav {
	flex: 0 1 auto;
}

.ochava-menu {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.ochava-menu li {
	position: relative;
}

.ochava-menu a {
	display: inline-block;
	padding: 6px 0;
	color: var(--tinta);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: color var(--speed) ease, border-color var(--speed) ease;
}

.ochava-menu a:hover,
.ochava-menu a:focus-visible,
.ochava-menu .current-menu-item > a,
.ochava-menu .current_page_item > a,
.ochava-menu .current-menu-ancestor > a,
.ochava-menu .current-post-ancestor > a {
	color: var(--rojo);
	border-bottom-color: var(--oro);
}

/* Sub-menus stay simple: a cream panel with hairlines. */
.ochava-menu .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 20;
	display: none;
	min-width: 220px;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: var(--crema-clara);
	border: 1px solid var(--verde);
}

.ochava-menu li:hover > .sub-menu,
.ochava-menu li:focus-within > .sub-menu {
	display: block;
}

.ochava-menu .sub-menu a {
	display: block;
	padding: 10px 14px;
	border-bottom: 1px solid rgba(201, 152, 46, .5);
}

.ochava-menu .sub-menu li:last-child a {
	border-bottom: 0;
}

.ochava-header__tools {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 0 0 auto;
}

.ochava-search-toggle {
	background: none;
	border: 0;
	padding: 14px 6px;
	cursor: pointer;
	color: var(--tinta);
	font-family: var(--text);
	font-style: italic;
	font-size: 16px;
	line-height: 1;
	text-decoration: underline;
	text-decoration-color: var(--oro);
	text-underline-offset: 4px;
	transition: color var(--speed) ease;
}

.ochava-search-toggle:hover {
	color: var(--rojo);
}

.ochava-search-toggle__icon {
	display: none;
	line-height: 0;
}

.ochava-btn.ochava-menu-toggle {
	display: none;
}

.ochava-search-panel {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px var(--gutter) 22px;
	background: var(--crema-clara);
	border-bottom: 3px double var(--verde);
}

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

.ochava-search-close {
	background: none;
	border: 0;
	cursor: pointer;
	color: var(--verde);
	font-size: 26px;
	line-height: 1;
	padding: 4px 8px;
}

.ochava-search-close:hover {
	color: var(--rojo);
}

.ochava-searchform {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1;
	flex-wrap: wrap;
}

.ochava-searchform__input {
	flex: 1;
	min-width: 200px;
	appearance: none;
	background: transparent;
	border: 0;
	border-bottom: 2px solid var(--verde);
	padding: 8px 2px;
	font-family: var(--text);
	font-size: 18px;
	color: var(--tinta);
}

.ochava-searchform__input::placeholder {
	font-style: italic;
	color: var(--tinta-suave);
	opacity: 1;
}

.ochava-searchform__input:focus-visible {
	outline: 2px solid var(--rojo);
	outline-offset: 2px;
}

/* Mobile panel */
.ochava-mobile {
	padding: 6px var(--gutter) 22px;
	background: var(--crema-clara);
	border-bottom: 3px double var(--verde);
}

.ochava-mobile[hidden] {
	display: none;
}

.ochava-mobile .ochava-menu {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	font-size: 16px;
}

.ochava-mobile .ochava-menu > li + li {
	border-top: 1px solid var(--oro);
}

.ochava-mobile .ochava-menu a {
	display: block;
	padding: 14px 0;
	border-bottom: 0;
}

.ochava-mobile .sub-menu {
	position: static;
	display: block;
	border: 0;
	background: none;
	padding: 0 0 8px 16px;
}

.ochava-mobile .sub-menu a {
	border-bottom: 0;
	padding: 10px 0;
}

.ochava-mobile__cta {
	margin-top: 18px;
}

/* -------------------------------------------------------------- controls */

.ochava-btn {
	display: inline-flex;
	padding: 0;
	border: 0;
	background: none;
	text-decoration: none;
	cursor: pointer;
	color: inherit;
}

.ochava-btn__face {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--text);
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	transition: background-color var(--speed) ease, color var(--speed) ease, border-color var(--speed) ease;
}

.ochava-btn--primary .ochava-btn__face {
	background: var(--verde);
	color: var(--crema);
	font-size: 14px;
	letter-spacing: .12em;
	padding: 16px 24px;
	clip-path: var(--chamfer-10);
}

.ochava-btn--primary:hover .ochava-btn__face,
.ochava-btn--primary:focus-visible .ochava-btn__face {
	background: var(--rojo);
}

.ochava-btn--accent .ochava-btn__face {
	background: var(--rojo);
	color: var(--crema);
	font-size: 13px;
	letter-spacing: .14em;
	padding: 13px 20px;
	clip-path: var(--chamfer-10);
}

.ochava-btn--accent:hover .ochava-btn__face,
.ochava-btn--accent:focus-visible .ochava-btn__face {
	background: var(--verde);
}

.ochava-btn--outline .ochava-btn__face {
	background: transparent;
	color: var(--verde);
	font-size: 14px;
	letter-spacing: .12em;
	padding: 15px 22px;
	border: 2px solid var(--verde);
}

.ochava-btn--outline:hover .ochava-btn__face,
.ochava-btn--outline:focus-visible .ochava-btn__face {
	background: var(--crema-oscura);
}

/* Octagon chips: months and pagination. */
.ochava-chips {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 70px));
	gap: 8px;
	justify-content: start;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ochava-chip {
	display: block;
	text-decoration: none;
	color: inherit;
}

.ochava-chip__ring {
	display: grid;
	place-items: center;
	width: 100%;
	min-width: 52px;
	height: 44px;
	background: var(--verde);
	clip-path: var(--chamfer-10);
	transition: background-color var(--speed) ease;
}

.ochava-chip__face {
	display: grid;
	place-items: center;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	background: var(--crema);
	clip-path: var(--chamfer-9);
	font-weight: 600;
	font-size: 13px;
	line-height: 1;
	letter-spacing: .14em;
	text-indent: .14em;
	text-transform: uppercase;
	color: var(--verde);
	transition: background-color var(--speed) ease, color var(--speed) ease;
}

a.ochava-chip:hover .ochava-chip__ring,
a.ochava-chip:focus-visible .ochava-chip__ring {
	background: var(--oro);
}

.ochava-chip.is-current .ochava-chip__ring {
	background: var(--oro);
}

.ochava-chip.is-current .ochava-chip__face {
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	background: var(--rojo);
	clip-path: var(--chamfer-8);
	color: var(--crema);
	font-weight: 700;
}

/* Text link with an arrow. */
.ochava-more {
	font-weight: 600;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--rojo);
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--speed) ease;
}

.ochava-more:hover,
.ochava-more:focus-visible {
	text-decoration: underline;
	text-decoration-color: var(--oro);
	text-underline-offset: 4px;
}

/* Ornament. */
.ochava-orn,
.ochava-star {
	color: var(--oro);
	line-height: 1;
}

.ochava-rule,
.ochava-hairline {
	display: block;
	flex: 1;
	min-width: 20px;
}

.ochava-rule {
	height: 3px;
	border-top: 1px solid var(--oro);
	border-bottom: 1px solid var(--oro);
}

.ochava-hairline {
	height: 1px;
	background: var(--oro);
}

.ochava-divider {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 8px;
	color: var(--oro);
	font-size: 14px;
}

.ochava-eyebrow {
	display: block;
	font-weight: 600;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--verde);
}

.ochava-eyebrow--rojo {
	color: var(--rojo);
}

.ochava-eyebrow--verde {
	color: var(--verde);
	letter-spacing: .2em;
}

/* The framed panel: 2px green, 1px gold outline offset 5. */
.ochava-panel {
	border: 2px solid var(--verde);
	outline: 1px solid var(--oro);
	outline-offset: 5px;
	background: var(--crema-clara);
}

/* -------------------------------------------------------------- homepage */

.ochava-hero {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 48px;
	align-items: center;
	padding: 54px var(--gutter) 60px;
}

.ochava-hero__text {
	display: flex;
	flex-direction: column;
	gap: 22px;
	min-width: 0;
}

.ochava-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	font-weight: 600;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--verde);
}

.ochava-hero__title {
	font-size: 78px;
	line-height: .98;
	letter-spacing: -.01em;
	color: var(--verde);
}

.ochava-hero__title em {
	font-style: normal;
	color: var(--rojo);
}

.ochava-hero__lede {
	margin: 0;
	font-size: 21px;
	line-height: 1.45;
	max-width: 520px;
	color: var(--tinta);
}

.ochava-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-top: 6px;
}

.ochava-hero__panel {
	min-width: 0;
}

/* Featured guide panel. */
.ochava-featured {
	position: relative;
	display: block;
	padding: 14px;
	background: var(--crema-clara);
	border: 2px solid var(--verde);
	outline: 1px solid var(--oro);
	outline-offset: 5px;
	text-decoration: none;
	color: inherit;
}

.ochava-featured__tag {
	position: absolute;
	top: -1px;
	left: 32px;
	background: var(--rojo);
	color: var(--crema);
	font-weight: 600;
	font-size: 11px;
	line-height: 1;
	letter-spacing: .22em;
	text-indent: .22em;
	text-transform: uppercase;
	padding: 9px 14px 10px;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7px), 50% 100%, 0 calc(100% - 7px));
}

.ochava-featured__text {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 8px 6px;
}

.ochava-featured__title {
	font-family: var(--display);
	font-size: 30px;
	line-height: 1.15;
	color: var(--tinta);
	text-wrap: balance;
	transition: color var(--speed) ease;
}

.ochava-featured:hover .ochava-featured__title,
.ochava-featured:focus-visible .ochava-featured__title {
	color: var(--verde);
}

.ochava-featured__excerpt {
	font-size: 16.5px;
	line-height: 1.5;
	color: var(--tinta);
}

.ochava-featured__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	margin-top: 4px;
	font-style: italic;
	font-size: 14px;
	line-height: 1;
	color: var(--tinta-suave);
}

.ochava-featured__read {
	font-style: normal;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--rojo);
	white-space: nowrap;
}

/* Media wells. */
.ochava-media {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--crema-oscura);
}

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

.ochava-media--placeholder {
	display: grid;
	place-items: center;
	background: repeating-linear-gradient(135deg, #e7d9b7 0 10px, #efe4c8 10px 20px);
}

.ochava-media__glyph {
	font-size: 26px;
	line-height: 1;
	color: var(--oro);
}

/* Month band. */
.ochava-months {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 32px;
	align-items: center;
	padding: 34px var(--gutter) 36px;
	background: var(--crema-oscura);
	border-top: 3px double var(--verde);
	border-bottom: 3px double var(--verde);
}

.ochava-months__heading {
	margin-top: 8px;
	font-size: 30px;
	line-height: 1.1;
	color: var(--verde);
}

.ochava-months__body {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}

.ochava-months__line {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	align-items: baseline;
	margin: 0;
	font-size: 17px;
	line-height: 1.4;
	color: var(--tinta);
}

.ochava-months__name {
	font-family: var(--display);
	font-size: 22px;
	line-height: 1;
	color: var(--rojo);
}

.ochava-months__best {
	font-style: italic;
	color: var(--tinta-suave);
}

.ochava-months__link {
	margin-left: auto;
	font-weight: 600;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--verde);
	text-decoration: none;
	border-bottom: 2px solid var(--oro);
	padding-bottom: 3px;
	white-space: nowrap;
	transition: color var(--speed) ease;
}

.ochava-months__link:hover,
.ochava-months__link:focus-visible {
	color: var(--rojo);
}

/* Section heading row. */
.ochava-section-head {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 30px;
}

.ochava-section-head__title {
	margin: 0;
	font-size: 34px;
	line-height: 1;
	color: var(--verde);
}

.ochava-section-head__title .wp-block-heading,
.ochava-section-head__title span {
	font: inherit;
	color: inherit;
}

/* Card grids. */
.ochava-latest,
.ochava-listing,
.ochava-related {
	padding: 52px var(--gutter) 60px;
}

.ochava-related {
	padding-top: 12px;
}

.ochava-grid {
	display: grid;
	gap: 28px;
}

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

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

.ochava-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 10px 10px 18px;
	background: var(--crema-clara);
	border: 1px solid var(--verde);
	text-decoration: none;
	color: inherit;
	transition: outline-color var(--speed) ease;
	outline: 1px solid transparent;
	outline-offset: 4px;
}

.ochava-card:hover,
.ochava-card:focus-visible {
	outline-color: var(--oro);
}

.ochava-card:focus-visible {
	outline: 2px solid var(--rojo);
	outline-offset: 3px;
}

.ochava-card__text {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0 6px;
}

.ochava-card__eyebrow,
.ochava-card .ochava-eyebrow {
	font-size: 11px;
	letter-spacing: .22em;
}

.ochava-card__title {
	font-family: var(--display);
	font-size: 21px;
	line-height: 1.2;
	color: var(--tinta);
	text-wrap: pretty;
	transition: color var(--speed) ease;
}

.ochava-card:hover .ochava-card__title {
	color: var(--verde);
}

.ochava-card__meta {
	font-style: italic;
	font-size: 14px;
	line-height: 1;
	color: var(--tinta-suave);
}

/* -------------------------------------------------------------- listings */

.ochava-listing__lede,
.ochava-listing__count {
	max-width: 640px;
	margin: -14px 0 30px;
	font-size: 21px;
	line-height: 1.45;
	color: var(--tinta);
}

.ochava-listing__count {
	font-style: italic;
	font-size: 14px;
	color: var(--tinta-suave);
}

.ochava-listing__lede p:first-child {
	margin-top: 0;
}

.ochava-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 48px;
}

.ochava-pagination .ochava-chip {
	width: 56px;
}

.ochava-pagination__arrow a,
.ochava-pagination__arrow span {
	display: inline-block;
	padding: 12px 10px;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--verde);
	text-decoration: none;
}

.ochava-pagination__arrow a:hover {
	color: var(--rojo);
	text-decoration: underline;
	text-decoration-color: var(--oro);
	text-underline-offset: 4px;
}

.ochava-pagination__arrow:first-child {
	margin-right: auto;
}

.ochava-pagination__arrow:last-child {
	margin-left: auto;
}

.ochava-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 18px;
	padding: 40px 0 60px;
}

.ochava-empty__mark {
	font-size: 30px;
	line-height: 1;
	color: var(--oro);
}

.ochava-empty__title {
	font-size: 30px;
	line-height: 1.15;
	color: var(--verde);
}

.ochava-empty__lede {
	max-width: 560px;
	margin: 0;
	font-size: 21px;
	line-height: 1.45;
}

.ochava-empty__search {
	width: min(520px, 100%);
	margin-top: 10px;
}

/* --------------------------------------------------------------- article */

.ochava-article {
	padding: 28px var(--gutter) 20px;
}

.ochava-breadcrumbs {
	font-weight: 600;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--verde);
	margin-bottom: 22px;
}

.ochava-breadcrumbs a {
	color: var(--verde);
	text-decoration: none;
}

.ochava-breadcrumbs a:hover {
	color: var(--rojo);
	text-decoration: underline;
	text-decoration-color: var(--oro);
	text-underline-offset: 4px;
}

.ochava-breadcrumbs .separator {
	color: var(--oro);
	margin: 0 6px;
}

.ochava-article__head {
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 900px;
}

.ochava-article__title {
	font-size: 56px;
	line-height: 1.05;
	letter-spacing: -.01em;
	max-width: 20ch;
	color: var(--verde);
}

.ochava-article--page .ochava-article__title {
	max-width: 24ch;
}

.ochava-article__standfirst {
	margin: 0;
	max-width: 640px;
	font-size: 21px;
	line-height: 1.45;
	color: var(--tinta);
}

.ochava-article__meta {
	margin: 0;
	font-style: italic;
	font-size: 14px;
	line-height: 1.4;
	color: var(--tinta-suave);
}

.ochava-article__figure {
	margin: 44px 0 0;
}

.ochava-article__figure .ochava-panel {
	padding: 0;
	line-height: 0;
}

.ochava-article__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.ochava-article__caption {
	margin-top: 16px;
	text-align: center;
	font-style: italic;
	font-size: 14px;
	line-height: 1.5;
	color: var(--tinta-suave);
}

/* Body copy. */
.ochava-article__body {
	max-width: 68ch;
	margin: 44px auto 0;
	font-size: 19px;
	line-height: 1.6;
}

.ochava-article__body > p,
.ochava-article__body > ul,
.ochava-article__body > ol,
.ochava-article__body > figure,
.ochava-article__body > .ochava-table-scroll,
.ochava-article__body > blockquote {
	margin: 0 0 1.2em;
}

.ochava-article__body h2 {
	margin: 2em 0 .8em;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--oro);
	font-size: 34px;
	line-height: 1.1;
	color: var(--verde);
}

.ochava-article__body h3 {
	margin: 1.6em 0 .5em;
	font-size: 26px;
	line-height: 1.2;
	color: var(--tinta);
}

.ochava-article__body h4 {
	margin: 1.4em 0 .5em;
	font-size: 21px;
	line-height: 1.2;
	color: var(--tinta);
}

.ochava-article__body a {
	color: var(--azul);
	text-decoration: underline;
	text-decoration-color: var(--oro);
	text-underline-offset: 3px;
	transition: color var(--speed) ease;
}

.ochava-article__body a:hover,
.ochava-article__body a:focus-visible {
	color: var(--rojo);
}

.ochava-article__body ul {
	list-style: none;
	padding-left: 1.5em;
}

.ochava-article__body ul > li {
	position: relative;
	margin-bottom: .5em;
}

.ochava-article__body ul > li::before {
	content: "\2726";
	position: absolute;
	left: -1.5em;
	color: var(--oro);
	font-size: .8em;
	top: .25em;
}

.ochava-article__body ol {
	padding-left: 1.4em;
}

.ochava-article__body ol > li {
	margin-bottom: .5em;
}

.ochava-article__body ol > li::marker {
	color: var(--verde);
	font-weight: 600;
}

.ochava-article__body blockquote {
	margin: 2em 0;
	padding: 26px 0 28px;
	border-top: 3px double var(--verde);
	border-bottom: 3px double var(--verde);
	font-family: var(--display);
	font-size: 26px;
	line-height: 1.3;
	color: var(--verde);
	text-align: center;
}

.ochava-article__body blockquote::before {
	content: "\2766";
	display: block;
	margin-bottom: 14px;
	font-family: var(--text);
	font-size: 18px;
	color: var(--oro);
}

.ochava-article__body blockquote p {
	margin: 0 0 .4em;
}

.ochava-article__body blockquote cite,
.ochava-article__body blockquote .wp-block-quote__citation {
	display: block;
	margin-top: 12px;
	font-family: var(--text);
	font-style: italic;
	font-size: 14px;
	color: var(--tinta-suave);
}

.ochava-article__body figure {
	margin: 2em 0;
}

.ochava-article__body figure img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid var(--verde);
}

.ochava-article__body figcaption {
	margin-top: 10px;
	font-style: italic;
	font-size: 14px;
	line-height: 1.5;
	color: var(--tinta-suave);
}

.ochava-article__body img {
	height: auto;
}

.ochava-table-scroll {
	overflow-x: auto;
	margin: 2em 0;
}

.ochava-article__body table {
	width: 100%;
	border-collapse: collapse;
	font-size: 16.5px;
	line-height: 1.4;
}

.ochava-article__body th,
.ochava-article__body td {
	border: 1px solid var(--verde);
	padding: 10px 12px;
	text-align: left;
	vertical-align: top;
}

.ochava-article__body thead th,
.ochava-article__body tr:first-child th {
	background: var(--crema-oscura);
	font-family: var(--text);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--verde);
}

.ochava-article__body code,
.ochava-article__body kbd {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: .85em;
	background: var(--crema-oscura);
	padding: 2px 5px;
}

.ochava-article__body pre {
	background: var(--crema-oscura);
	border: 1px solid var(--verde);
	padding: 18px;
	overflow-x: auto;
	font-size: 15px;
	line-height: 1.5;
}

.ochava-article__body hr {
	border: 0;
	height: 3px;
	border-top: 1px solid var(--oro);
	border-bottom: 1px solid var(--oro);
	margin: 2.4em 0;
}

/* Optional drop cap. */
.ochava-drop-cap .ochava-article__body > p:first-of-type::first-letter {
	float: left;
	font-family: var(--display);
	font-size: 66px;
	line-height: .82;
	color: var(--oro);
	padding: 6px 10px 0 0;
}

/* Derived FAQ panel. */
.ochava-faq {
	margin: 2.4em 6px;
	padding: 30px 28px 10px;
	background: var(--crema-clara);
	border: 2px solid var(--verde);
	outline: 1px solid var(--oro);
	outline-offset: 5px;
}

.ochava-article__body .ochava-faq__heading {
	margin: 0 0 6px;
	padding-bottom: 0;
	border-bottom: 0;
	font-size: 30px;
}

.ochava-faq__item {
	padding: 18px 0;
	border-top: 1px solid var(--oro);
}

.ochava-faq__item:first-of-type {
	border-top: 0;
	padding-top: 10px;
}

.ochava-article__body .ochava-faq__q {
	position: relative;
	margin: 0 0 .4em;
	padding-left: 26px;
	font-size: 22px;
	line-height: 1.25;
	color: var(--verde);
}

.ochava-article__body .ochava-faq__q::before {
	content: "\2726";
	position: absolute;
	left: 0;
	top: .18em;
	font-family: var(--text);
	font-size: 15px;
	color: var(--oro);
}

.ochava-faq__item > p:last-child {
	margin-bottom: 0;
}

/* Derived credits block. */
.ochava-credits {
	margin: 2.4em 0 1em;
	padding: 14px 18px;
	background: var(--crema-clara);
	border: 1px solid var(--verde);
	font-size: 16.5px;
}

.ochava-credits__summary {
	cursor: pointer;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--verde);
}

.ochava-credits__summary::marker,
.ochava-credits__summary::-webkit-details-marker {
	color: var(--oro);
}

.ochava-credits__body {
	margin-top: 12px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--tinta-suave);
}

.ochava-credits__body ul {
	padding-left: 1.4em;
}

.ochava-credits__body li {
	margin-bottom: .4em;
}

/* Ad slots. */
.ochava-ad {
	max-width: 68ch;
	margin: 40px auto;
	text-align: center;
}

.ochava-ad__label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--tinta-suave);
}

.ochava-ad__body {
	background: var(--crema-oscura);
	border-top: 1px solid var(--oro);
	border-bottom: 1px solid var(--oro);
	padding: 18px 12px;
}

/* Author box. */
.ochava-author {
	display: flex;
	align-items: flex-start;
	gap: 22px;
	max-width: 68ch;
	margin: 40px auto 0;
	padding: 22px;
	background: var(--crema-clara);
	border: 1px solid var(--verde);
}

.ochava-author__avatar {
	flex: 0 0 auto;
	display: block;
	width: 72px;
	height: 72px;
	clip-path: var(--octagon);
	overflow: hidden;
	background: var(--crema-oscura);
}

.ochava-author__avatar img {
	display: block;
	width: 72px;
	height: 72px;
	object-fit: cover;
}

.ochava-author__name {
	font-size: 22px;
	line-height: 1.2;
	color: var(--verde);
}

.ochava-author__bio {
	margin: 8px 0 0;
	font-size: 16.5px;
	line-height: 1.5;
}

.ochava-page-links {
	max-width: 68ch;
	margin: 24px auto 0;
	display: flex;
	gap: 10px;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--verde);
}

/* Comments. */
.ochava-comments {
	padding: 20px var(--gutter) 60px;
}

.ochava-comments__inner {
	max-width: 68ch;
	margin: 0 auto;
}

.ochava-commentlist {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
}

.ochava-commentlist .children {
	list-style: none;
	padding-left: 24px;
}

.ochava-commentlist .comment-body {
	padding: 18px 0;
	border-top: 1px solid var(--oro);
}

.ochava-comments__title {
	font-size: 30px;
	margin-bottom: 14px;
}

.ochava-comments input[type="text"],
.ochava-comments input[type="email"],
.ochava-comments input[type="url"],
.ochava-comments textarea {
	width: 100%;
	background: var(--crema-clara);
	border: 1px solid var(--verde);
	padding: 10px 12px;
	font-family: var(--text);
	font-size: 17px;
	color: var(--tinta);
}

/* 404. */
.ochava-404 {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 22px;
	padding: 70px var(--gutter) 90px;
}

.ochava-404__title {
	font-size: 56px;
	line-height: 1.05;
	letter-spacing: -.01em;
	color: var(--verde);
}

.ochava-404__lede {
	max-width: 560px;
	margin: 0;
	font-size: 21px;
	line-height: 1.45;
}

.ochava-404__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.ochava-404__search {
	width: min(520px, 100%);
	margin-top: 8px;
}

/* ---------------------------------------------------------------- footer */

.ochava-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 36px var(--gutter);
	background: var(--verde);
	color: var(--crema);
	border-top: 6px double var(--oro);
}

.ochava-footer__brand {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ochava-footer__name {
	display: block;
	font-family: var(--display);
	font-size: 18px;
	line-height: 1;
	color: var(--crema);
	text-decoration: none;
}

.ochava-footer__tagline {
	display: block;
	margin-top: 5px;
	font-style: italic;
	font-size: 13px;
	line-height: 1.3;
	color: var(--crema-suave);
}

.ochava-footer__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 34px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 600;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.ochava-footer__menu a {
	color: var(--crema);
	text-decoration: none;
}

.ochava-footer__menu a:hover,
.ochava-footer__menu a:focus-visible {
	text-decoration: underline;
	text-decoration-color: var(--oro);
	text-underline-offset: 4px;
}

.ochava-footer__copy {
	margin: 0;
	font-style: italic;
	font-size: 13px;
	line-height: 1.3;
	color: var(--crema-suave);
}

.ochava-footer :focus-visible {
	outline-color: var(--oro);
}

/* ------------------------------------------------------------- utilities */

.ochava-article__body .alignwide,
.ochava-article__body .alignfull {
	width: min(1200px, 100%);
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.ochava-article__body .alignfull {
	width: min(1200px, calc(100vw - (var(--gutter) * 2)));
}

.ochava-article__body .alignleft {
	float: left;
	margin: .4em 1.6em 1.2em 0;
	max-width: 45%;
}

.ochava-article__body .alignright {
	float: right;
	margin: .4em 0 1.2em 1.6em;
	max-width: 45%;
}

.ochava-article__body .aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.ochava-article__body .wp-block-group.is-style-ochava-panel,
.ochava-article__body .wp-block-image.is-style-ochava-panel {
	padding: 14px;
	background: var(--crema-clara);
	border: 2px solid var(--verde);
	outline: 1px solid var(--oro);
	outline-offset: 5px;
	margin-block: 2.4em;
}

.ochava-article__body .wp-block-separator.is-style-ochava-ornament {
	border: 0;
	height: 3px;
	border-top: 1px solid var(--oro);
	border-bottom: 1px solid var(--oro);
	max-width: none;
}

.ochava-article__body .wp-block-separator.is-style-ochava-double {
	border: 0;
	border-top: 3px double var(--verde);
	max-width: none;
}

.ochava-article__body .is-style-ochava-lede {
	font-size: 21px;
	line-height: 1.45;
}

.ochava-article__body .is-style-ochava-eyebrow {
	font-weight: 600;
	font-size: 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--rojo);
}

.ochava-article__body .wp-caption-text {
	font-style: italic;
	font-size: 14px;
	color: var(--tinta-suave);
}

.ochava-article__body .wp-block-embed__wrapper iframe {
	max-width: 100%;
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 1199px) {
	.ochava-hero__title {
		font-size: 64px;
	}

	.ochava-hero {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}

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

	.ochava-chip__face {
		font-size: 12px;
	}

	.ochava-menu {
		gap: 22px;
	}
}

@media (max-width: 1023px) {
	.ochava-hero {
		grid-template-columns: 1fr;
		gap: 40px;
		align-items: start;
	}

	.ochava-hero__lede {
		max-width: none;
	}

	.ochava-months {
		grid-template-columns: 1fr;
		gap: 22px;
	}

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

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

	.ochava-menu {
		gap: 20px;
		font-size: 13px;
	}

	.ochava-article__title {
		font-size: 46px;
	}
}

@media (max-width: 899px) {
	.ochava-ribbon__text--long {
		display: none;
	}

	.ochava-ribbon__text--short {
		display: inline;
	}

	.ochava-header {
		padding: 14px 20px;
		gap: 14px;
	}

	.ochava-nav {
		display: none;
	}

	.ochava-btn.ochava-menu-toggle {
		display: inline-flex;
	}

	.ochava-menu-toggle .ochava-btn__face {
		font-size: 13px;
		padding: 12px 16px;
	}

	.ochava-header__cta {
		display: none;
	}

	.ochava-search-toggle__text {
		display: none;
	}

	.ochava-search-toggle__icon {
		display: inline-flex;
		padding: 10px 8px;
		color: var(--verde);
	}

	.ochava-search-panel,
	.ochava-mobile {
		padding-left: 20px;
		padding-right: 20px;
	}

	/* Touch targets: 44px minimum, without moving any of the rules or
	   underlines the design places tight against the text. */
	.ochava-search-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 44px;
		min-height: 44px;
	}

	.ochava-btn.ochava-menu-toggle .ochava-btn__face {
		min-height: 44px;
		padding: 14px 16px;
	}

	.ochava-more,
	.ochava-months__link {
		position: relative;
	}

	.ochava-more::after,
	.ochava-months__link::after {
		content: "";
		position: absolute;
		inset: -16px 0;
	}

	.ochava-footer__menu a {
		display: block;
		padding: 16px 0;
	}

	.ochava-footer__menu {
		gap: 8px 28px;
	}

	.ochava-footer__name {
		display: inline-block;
		padding: 13px 0;
	}

	:root {
		--gutter: 24px;
	}
}

@media (max-width: 639px) {
	:root {
		--gutter: 20px;
	}

	.ochava-hero {
		padding-top: 34px;
		padding-bottom: 40px;
	}

	.ochava-hero__title {
		font-size: 44px;
		line-height: 1.02;
	}

	.ochava-hero__lede {
		font-size: 18px;
	}

	.ochava-hero__actions,
	.ochava-404__actions,
	.ochava-empty__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.ochava-hero__actions .ochava-btn,
	.ochava-404__actions .ochava-btn,
	.ochava-empty__actions .ochava-btn {
		width: 100%;
	}

	.ochava-hero__actions .ochava-btn__face,
	.ochava-404__actions .ochava-btn__face,
	.ochava-empty__actions .ochava-btn__face {
		width: 100%;
	}

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

	.ochava-months__line {
		flex-direction: column;
		gap: 10px;
	}

	.ochava-months__link {
		margin-left: 0;
	}

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

	.ochava-latest,
	.ochava-listing,
	.ochava-related {
		padding-top: 40px;
		padding-bottom: 44px;
	}

	.ochava-section-head {
		flex-wrap: wrap;
		gap: 12px;
	}

	.ochava-section-head__title {
		font-size: 28px;
	}

	.ochava-section-head .ochava-rule {
		display: none;
	}

	.ochava-article__title {
		font-size: 36px;
	}

	.ochava-article__standfirst {
		font-size: 19px;
	}

	.ochava-article__body {
		font-size: 18px;
	}

	.ochava-article__body h2 {
		font-size: 28px;
	}

	.ochava-article__body h3 {
		font-size: 22px;
	}

	.ochava-faq {
		margin-inline: 0;
		padding: 22px 18px 6px;
	}

	.ochava-author {
		flex-direction: column;
		gap: 14px;
	}

	.ochava-404__title {
		font-size: 38px;
	}

	.ochava-footer {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 18px;
	}

	.ochava-footer__menu {
		justify-content: center;
		gap: 22px;
	}

	.ochava-featured__meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	/* Keep the wordmark on one line beside the mark. */
	.ochava-header .ochava-mono {
		--ochava-mono-size: 46px;
	}

	.ochava-lockup {
		gap: 10px;
	}

	.ochava-lockup__name {
		font-size: 19px;
	}

	.ochava-lockup__label {
		font-size: 9px;
		letter-spacing: .2em;
		margin-top: 4px;
	}

	.ochava-header {
		gap: 10px;
	}
}

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

@media print {
	.ochava-ribbon,
	.ochava-header__tools,
	.ochava-nav,
	.ochava-footer__menu,
	.ochava-ad,
	.ochava-related {
		display: none !important;
	}

	body {
		background: #fff;
	}

	.ochava-page {
		background: #fff;
	}
}
