/*
Theme Name: Vell Journal Corrected
Theme URI: https://velljournal.com/
Author: Vell Journal
Description: A controlled custom WordPress theme matching the Vell Journal Figma export.
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Version: 1.0.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vell-journal-corrected
*/

:root {
	--vell-blue-900: #1e3a8a;
	--vell-blue-800: #1e40af;
	--vell-blue-200: #bfdbfe;
	--vell-blue-100: #dbeafe;
	--vell-neutral-950: #0a0a0a;
	--vell-neutral-900: #171717;
	--vell-neutral-800: #262626;
	--vell-neutral-700: #404040;
	--vell-neutral-600: #525252;
	--vell-neutral-500: #737373;
	--vell-neutral-400: #a3a3a3;
	--vell-neutral-300: #d4d4d4;
	--vell-neutral-200: #e5e5e5;
	--vell-neutral-100: #f5f5f5;
	--vell-neutral-50: #fafafa;
	--vell-white: #ffffff;
	--vell-radius: 4px;
	--vell-container: 1280px;
	--vell-side: 24px;
	--vell-section: 64px;
	--vell-gap: 64px;
}

* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--vell-white);
	color: var(--vell-neutral-900);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.5;
}

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

a {
	color: var(--vell-blue-900);
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, transform 220ms ease;
}

a:hover {
	color: var(--vell-blue-800);
	text-decoration: underline;
}

h1,
h2,
h3 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	line-height: 1.15;
	color: var(--vell-neutral-900);
}

p {
	margin: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.vell-container {
	width: min(100%, var(--vell-container));
	margin-right: auto;
	margin-left: auto;
	padding-right: var(--vell-side);
	padding-left: var(--vell-side);
}

.vell-section {
	padding-top: var(--vell-section);
	padding-bottom: var(--vell-section);
}

.vell-header {
	background: var(--vell-white);
	border-bottom: 1px solid var(--vell-neutral-200);
}

.vell-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 24px;
	padding-bottom: 24px;
}

.vell-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--vell-neutral-900);
	text-decoration: none;
}

.vell-brand:hover {
	color: var(--vell-neutral-900);
	text-decoration: none;
}

.vell-logo-mark {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	flex: 0 0 auto;
	background: var(--vell-blue-900);
	border-radius: 2px;
}

.vell-logo-mark--light {
	background: var(--vell-white);
}

.vell-brand__name {
	color: inherit;
	font-size: 24px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	white-space: nowrap;
}

.vell-header__nav {
	display: flex;
	align-items: center;
	gap: 32px;
}

.vell-header__nav ul {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.vell-header__nav a {
	color: var(--vell-neutral-600);
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.04em;
	text-decoration: none;
}

.vell-header__nav a:hover,
.vell-header__nav .current-menu-item > a {
	color: var(--vell-blue-900);
}

.vell-hero {
	background: var(--vell-neutral-50);
}

.vell-featured {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 32px;
	align-items: center;
}

.vell-media {
	position: relative;
	overflow: hidden;
	background: var(--vell-neutral-200);
	border-radius: var(--vell-radius);
}

.vell-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.vell-media:hover img {
	transform: scale(1.04);
}

.vell-media--featured {
	aspect-ratio: 16 / 10;
}

.vell-media--card {
	aspect-ratio: 16 / 10;
	margin-bottom: 16px;
}

.vell-media--wide {
	aspect-ratio: 21 / 9;
}

.vell-media--thumb {
	width: 192px;
	aspect-ratio: 4 / 3;
	flex: 0 0 192px;
}

.vell-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	padding: 2px 8px;
	border-radius: 6px;
	background: var(--vell-neutral-100);
	color: var(--vell-neutral-900);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: none;
}

.vell-badge:hover {
	color: var(--vell-neutral-900);
	text-decoration: none;
	background: var(--vell-neutral-200);
}

.vell-featured__title {
	margin-top: 16px;
	margin-bottom: 16px;
	font-size: 36px;
}

.vell-featured__title a,
.vell-card__title a {
	color: var(--vell-neutral-900);
	text-decoration: none;
}

.vell-featured__title a:hover,
.vell-card__title a:hover {
	color: var(--vell-blue-900);
}

.vell-featured__excerpt {
	margin-bottom: 24px;
	color: var(--vell-neutral-600);
	font-size: 18px;
	line-height: 1.65;
}

.vell-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	color: var(--vell-neutral-500);
	font-size: 14px;
	line-height: 1.5;
}

.vell-meta a {
	color: inherit;
}

.vell-meta__author {
	color: var(--vell-neutral-900);
}

.vell-main-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: var(--vell-gap);
	align-items: start;
}

.vell-stack-64 {
	display: grid;
	gap: 64px;
}

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

.vell-section-heading h2 {
	font-size: 24px;
	letter-spacing: 0.04em;
}

.vell-section-heading a {
	font-size: 14px;
	letter-spacing: 0.04em;
}

.vell-article-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 32px;
	row-gap: 48px;
}

.vell-card {
	display: block;
}

.vell-card__title {
	margin-top: 12px;
	margin-bottom: 8px;
	font-size: 20px;
	line-height: 1.3;
}

.vell-card__excerpt {
	margin-bottom: 12px;
	color: var(--vell-neutral-600);
	font-size: 14px;
	line-height: 1.65;
}

.vell-card .vell-meta {
	font-size: 12px;
	gap: 10px;
}

.vell-book-panel {
	padding: 48px;
	background: var(--vell-neutral-50);
	border-radius: var(--vell-radius);
}

.vell-book-panel__intro {
	color: var(--vell-neutral-600);
	font-size: 14px;
}

.vell-book-list {
	display: grid;
	gap: 32px;
}

.vell-book-item {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 24px;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--vell-neutral-200);
}

.vell-book-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.vell-book-cover {
	aspect-ratio: 2 / 3;
	border-radius: var(--vell-radius);
	background: var(--vell-neutral-200);
	object-fit: cover;
}

.vell-rating {
	margin-bottom: 8px;
	color: #ca8a04;
	font-size: 14px;
	letter-spacing: 0.04em;
}

.vell-topic-band {
	background: var(--vell-blue-900);
	color: var(--vell-white);
}

.vell-topic-band h2,
.vell-topic-card h3 {
	color: var(--vell-white);
}

.vell-topic-band h2 {
	margin-bottom: 48px;
	font-size: 24px;
	text-align: center;
	letter-spacing: 0.04em;
}

.vell-topic-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
}

.vell-topic-card {
	display: block;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--vell-radius);
	color: var(--vell-white);
	text-decoration: none;
}

.vell-topic-card:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--vell-white);
	text-decoration: none;
}

.vell-topic-card h3 {
	margin-bottom: 8px;
	font-size: 18px;
}

.vell-topic-card p {
	color: var(--vell-blue-100);
	font-size: 14px;
	line-height: 1.65;
}

.vell-sidebar {
	display: grid;
	gap: 40px;
}

.vell-sidebar__title {
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--vell-neutral-200);
	font-family: inherit;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.vell-trending {
	counter-reset: trend;
	display: grid;
	gap: 24px;
}

.vell-trending__item {
	counter-increment: trend;
	display: flex;
	gap: 16px;
	color: var(--vell-neutral-900);
	text-decoration: none;
}

.vell-trending__item::before {
	content: counter(trend, decimal-leading-zero);
	color: var(--vell-neutral-300);
	font-size: 32px;
	font-weight: 300;
	line-height: 1;
	transition: color 180ms ease;
}

.vell-trending__item:hover {
	color: var(--vell-blue-900);
	text-decoration: none;
}

.vell-trending__item:hover::before {
	color: var(--vell-blue-900);
}

.vell-trending__title {
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
	line-height: 1.35;
}

.vell-trending__time {
	display: block;
	color: var(--vell-neutral-500);
	font-size: 12px;
}

.vell-topic-list {
	display: grid;
	gap: 4px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.vell-topic-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-right: -16px;
	margin-left: -16px;
	padding: 8px 16px;
	border-radius: var(--vell-radius);
	color: var(--vell-neutral-700);
	font-size: 14px;
	text-decoration: none;
}

.vell-topic-list a:hover {
	background: var(--vell-neutral-50);
	color: var(--vell-blue-900);
}

.vell-topic-list span {
	color: var(--vell-neutral-400);
	font-size: 12px;
}

.vell-newsletter {
	padding: 24px;
	background: var(--vell-neutral-50);
	border-radius: var(--vell-radius);
}

.vell-newsletter h3 {
	margin-bottom: 12px;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.vell-newsletter p {
	margin-bottom: 16px;
	color: var(--vell-neutral-600);
	font-size: 14px;
	line-height: 1.65;
}

.vell-input {
	width: 100%;
	padding: 10px 14px;
	margin-bottom: 12px;
	border: 1px solid var(--vell-neutral-300);
	border-radius: var(--vell-radius);
	background: var(--vell-white);
	color: var(--vell-neutral-900);
	font: inherit;
	font-size: 14px;
}

.vell-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 40px;
	padding: 8px 16px;
	border: 0;
	border-radius: var(--vell-radius);
	background: var(--vell-blue-900);
	color: var(--vell-white);
	font: inherit;
	font-size: 14px;
	cursor: pointer;
}

.vell-button:hover {
	background: var(--vell-blue-800);
}

.vell-page-hero {
	background: var(--vell-blue-900);
	color: var(--vell-white);
}

.vell-page-hero h1 {
	margin-bottom: 16px;
	color: var(--vell-white);
	font-size: 48px;
	line-height: 1.05;
}

.vell-page-hero p {
	max-width: 768px;
	color: var(--vell-blue-100);
	font-size: 20px;
	line-height: 1.6;
}

.vell-horizontal-list {
	display: grid;
	gap: 48px;
}

.vell-horizontal-card {
	display: flex;
	gap: 24px;
	color: var(--vell-neutral-900);
	text-decoration: none;
}

.vell-horizontal-card:hover {
	color: var(--vell-neutral-900);
	text-decoration: none;
}

.vell-horizontal-card__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
}

.vell-horizontal-card h2,
.vell-horizontal-card h3 {
	margin-top: 8px;
	margin-bottom: 8px;
	font-size: 24px;
	line-height: 1.25;
}

.vell-horizontal-card h2 a,
.vell-horizontal-card h3 a {
	color: var(--vell-neutral-900);
	text-decoration: none;
}

.vell-horizontal-card h2 a:hover,
.vell-horizontal-card h3 a:hover {
	color: var(--vell-blue-900);
}

.vell-single-header {
	max-width: 896px;
	padding-top: 64px;
	padding-bottom: 32px;
}

.vell-single-header h1 {
	margin-top: 24px;
	margin-bottom: 24px;
	font-size: 48px;
	line-height: 1.08;
}

.vell-single-body {
	padding-bottom: 64px;
}

.vell-prose {
	max-width: 768px;
	color: #374151;
}

.vell-prose > * + * {
	margin-top: 1.25em;
}

.vell-prose p {
	line-height: 1.75;
}

.vell-prose h2 {
	margin-top: 2em;
	margin-bottom: 1em;
	font-size: 28px;
	line-height: 1.3;
	color: #111827;
}

.vell-prose h3 {
	margin-top: 1.6em;
	margin-bottom: 0.6em;
	font-size: 20px;
	line-height: 1.4;
	color: #111827;
}

.vell-prose blockquote {
	margin: 1.6em 0;
	padding-left: 24px;
	border-left: 4px solid var(--vell-blue-900);
	color: #4b5563;
	font-style: italic;
}

.vell-tags,
.vell-author-box {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--vell-neutral-200);
}

.vell-tags a {
	display: inline-flex;
	align-items: center;
	margin-right: 8px;
	margin-bottom: 8px;
	padding: 2px 8px;
	border: 1px solid var(--vell-neutral-200);
	border-radius: 6px;
	color: var(--vell-neutral-900);
	font-size: 12px;
	text-decoration: none;
}

.vell-tags a:hover {
	background: var(--vell-neutral-50);
}

.vell-author-box__inner {
	display: flex;
	gap: 24px;
	padding: 32px;
	background: var(--vell-neutral-50);
	border-radius: var(--vell-radius);
}

.vell-author-box img {
	width: 80px;
	height: 80px;
	border-radius: 999px;
}

.vell-author-box h3 {
	margin-bottom: 8px;
	font-size: 18px;
}

.vell-author-box p {
	color: var(--vell-neutral-600);
	font-size: 14px;
	line-height: 1.65;
}

.vell-footer {
	background: var(--vell-neutral-900);
	color: var(--vell-neutral-300);
}

.vell-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr repeat(3, 1fr);
	gap: 48px;
	margin-bottom: 48px;
}

.vell-footer .vell-brand {
	color: var(--vell-white);
	margin-bottom: 16px;
}

.vell-footer .vell-brand__name {
	font-size: 18px;
}

.vell-footer__description {
	max-width: 280px;
	color: var(--vell-neutral-400);
	font-size: 14px;
	line-height: 1.65;
}

.vell-footer h3 {
	margin-bottom: 16px;
	color: var(--vell-white);
	font-family: inherit;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

.vell-footer ul {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.vell-footer a {
	color: var(--vell-neutral-400);
	font-size: 14px;
	text-decoration: none;
}

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

.vell-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 32px;
	border-top: 1px solid var(--vell-neutral-800);
	color: var(--vell-neutral-500);
	font-size: 14px;
}

.vell-socials {
	display: flex;
	align-items: center;
	gap: 24px;
}

.vell-socials a {
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	color: var(--vell-neutral-400);
}

.vell-empty {
	padding: 32px;
	background: var(--vell-neutral-50);
	border-radius: var(--vell-radius);
	color: var(--vell-neutral-600);
	font-size: 14px;
}

.vhbr-home {
	background: #ffffff;
	color: #111111;
}

.vhbr-section-rule {
	height: 1px;
	margin-top: 56px;
	margin-bottom: 28px;
	background: var(--vell-neutral-200);
}

.vhbr-top {
	padding-bottom: 30px;
	border-bottom: 1px solid var(--vell-neutral-200);
}

.vhbr-top-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.7fr) minmax(260px, 0.75fr);
	gap: 20px;
	align-items: start;
}

.vhbr-lead,
.vhbr-secondary,
.vhbr-latest {
	min-height: 100%;
}

.vhbr-lead {
	padding-right: 20px;
	text-align: center;
}

.vhbr-secondary,
.vhbr-latest {
	padding-left: 20px;
	border-left: 1px solid var(--vell-neutral-200);
}

.vhbr-lead-image,
.vhbr-secondary-image,
.vhbr-topic-image {
	display: block;
	overflow: hidden;
	background: var(--vell-neutral-100);
}

.vhbr-lead-image {
	aspect-ratio: 16 / 10;
	margin-bottom: 14px;
}

.vhbr-secondary-image,
.vhbr-topic-image {
	aspect-ratio: 16 / 9;
	margin-bottom: 18px;
}

.vhbr-lead-image img,
.vhbr-secondary-image img,
.vhbr-topic-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.85);
}

.vhbr-lead h1 {
	max-width: 620px;
	margin: 10px auto 10px;
	font-size: 38px;
	line-height: 1.05;
}

.vhbr-lead h1 a,
.vhbr-secondary-card h2 a,
.vhbr-latest-item,
.vhbr-topic-column a {
	color: inherit;
	text-decoration: none;
}

.vhbr-lead h1 a:hover,
.vhbr-secondary-card h2 a:hover,
.vhbr-latest-item:hover,
.vhbr-topic-column a:hover {
	color: var(--vell-blue-900);
	text-decoration: underline;
}

.vhbr-lead p {
	max-width: 500px;
	margin: 0 auto 10px;
	color: var(--vell-neutral-700);
	font-size: 16px;
	line-height: 1.45;
}

.vhbr-card-kicker {
	display: flex;
	justify-content: center;
	margin-bottom: 8px;
	color: #006070;
	font-size: 14px;
	font-weight: 700;
}

.vhbr-card-kicker .vell-badge {
	padding: 0;
	background: transparent;
	color: #006070;
	font-size: 14px;
	font-weight: 700;
}

.vhbr-byline {
	color: var(--vell-neutral-600);
	font-size: 13px;
}

.vhbr-secondary {
	display: grid;
	gap: 20px;
}

.vhbr-secondary-card {
	padding-bottom: 20px;
	border-bottom: 1px solid var(--vell-neutral-200);
}

.vhbr-secondary-card:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.vhbr-secondary-card .vhbr-card-kicker {
	justify-content: flex-start;
}

.vhbr-secondary-card h2 {
	margin-bottom: 8px;
	font-size: 26px;
	line-height: 1.08;
}

.vhbr-secondary-card p {
	margin-bottom: 8px;
	color: var(--vell-neutral-700);
	font-size: 15px;
	line-height: 1.4;
}

.vhbr-latest h2 {
	margin-bottom: 14px;
	font-family: inherit;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
}

.vhbr-latest-item {
	display: block;
	padding: 18px 0;
	border-bottom: 1px solid var(--vell-neutral-200);
}

.vhbr-latest-item span {
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	line-height: 1.08;
}

.vhbr-latest-item small {
	display: block;
	margin-top: 10px;
	color: var(--vell-neutral-600);
	font-size: 13px;
}

.vhbr-placeholder-card,
.vhbr-empty,
.vhbr-topic-empty {
	padding: 22px;
	background: var(--vell-neutral-50);
	color: var(--vell-neutral-600);
	font-size: 14px;
	line-height: 1.45;
}

.vhbr-topic-section {
	padding-top: 30px;
	padding-bottom: 54px;
}

.vhbr-section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 18px;
}

.vhbr-section-title h2 {
	font-family: inherit;
	font-size: 18px;
	font-weight: 800;
}

.vhbr-section-title a {
	color: var(--vell-blue-900);
	font-size: 14px;
	font-weight: 700;
}

.vhbr-topic-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--vell-neutral-200);
}

.vhbr-topic-column {
	min-height: 360px;
	padding: 18px 20px 22px;
	border-right: 1px solid var(--vell-neutral-200);
	border-bottom: 1px solid var(--vell-neutral-200);
}

.vhbr-topic-column:nth-child(4n) {
	border-right: 0;
}

.vhbr-topic-column h3 {
	margin-bottom: 10px;
	font-family: inherit;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.05;
	color: #006070;
}

.vhbr-topic-main-link,
.vhbr-topic-link {
	display: block;
	color: #111111;
	font-weight: 800;
	line-height: 1.25;
}

.vhbr-topic-main-link {
	margin-bottom: 14px;
	font-size: 16px;
}

.vhbr-topic-link {
	margin-top: 14px;
	font-size: 15px;
}

@media (max-width: 960px) {
	:root {
		--vell-section: 48px;
		--vell-gap: 40px;
	}

	.vell-featured,
	.vell-main-grid,
	.vell-topic-grid,
	.vell-footer__grid {
		grid-template-columns: 1fr;
	}

	.vhbr-top-grid {
		grid-template-columns: 1fr;
	}

	.vhbr-lead,
	.vhbr-secondary,
	.vhbr-latest {
		padding-right: 0;
		padding-left: 0;
		border-left: 0;
	}

	.vhbr-secondary,
	.vhbr-latest {
		padding-top: 22px;
		border-top: 1px solid var(--vell-neutral-200);
	}

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

	.vhbr-topic-column:nth-child(4n) {
		border-right: 1px solid var(--vell-neutral-200);
	}

	.vhbr-topic-column:nth-child(2n) {
		border-right: 0;
	}

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

	.vell-header__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.vell-header__nav {
		flex-wrap: wrap;
		gap: 18px;
	}

	.vell-book-panel {
		padding: 32px 24px;
	}
}

@media (max-width: 640px) {
	:root {
		--vell-side: 20px;
		--vell-section: 40px;
	}

	.vell-brand__name {
		font-size: 18px;
		letter-spacing: 0.16em;
		white-space: normal;
	}

	.vell-featured__title {
		font-size: 30px;
	}

	.vell-page-hero h1,
	.vell-single-header h1 {
		font-size: 36px;
	}

	.vell-page-hero p,
	.vell-featured__excerpt {
		font-size: 17px;
	}

	.vell-horizontal-card,
	.vell-author-box__inner {
		flex-direction: column;
	}

	.vell-media--thumb {
		width: 100%;
		flex-basis: auto;
	}

	.vell-book-item {
		grid-template-columns: 72px minmax(0, 1fr);
		gap: 18px;
	}

	.vell-section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.vell-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.vhbr-section-rule {
		margin-top: 32px;
	}

	.vhbr-lead h1 {
		font-size: 32px;
	}

	.vhbr-latest-item span {
		font-size: 22px;
	}

	.vhbr-topic-grid {
		grid-template-columns: 1fr;
	}

	.vhbr-topic-column,
	.vhbr-topic-column:nth-child(4n),
	.vhbr-topic-column:nth-child(2n) {
		border-right: 0;
	}
}
