/*
Theme Name: Stonepath
Author: Marcus Chen
Author URI: https://www.stringsprout.com
Theme URI: https://www.stringsprout.com
Version: 2.3.0
Description: A calm botanical design with soft green tones, rounded corners, tinted panels, and clean readable layouts.
*/

:root {
	--bg: #faf7ef;
	--fg: #3c2f24;
	--muted: #7a6f5d;
	--border: #e4d9c3;
	--accent: #5c7a47;
	--accent-deep: #47613a;
	--tint: #eef2e3;
	--accent-soft: #dde6cd;
	--radius: 18px;
	--radius-lg: 20px;
	--shadow: 0 2px 12px rgba(60, 47, 36, 0.08);
	--media-ratio: 16/9;
	--thumb-ratio: 4/3;
	--font-head: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
	margin: 0;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	overflow-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-head);
	font-weight: 700;
	line-height: 1.25;
	color: var(--fg);
}

a {
	color: var(--accent-deep);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

/* ---------- Layout ---------- */

.site-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 48px;
	width: min(1120px, 100%);
	margin: 0 auto;
	padding: 32px 24px 56px;
}

body.no-sidebar .site-content {
	grid-template-columns: minmax(0, 1fr);
}

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

/* ---------- Header ---------- */

.site-header {
	background: #fffdf6;
	border-bottom: 1px solid var(--border);
}

.header-inner {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 20px;
	width: min(1120px, 100%);
	margin: 0 auto;
	padding: 14px 24px;
}

.site-brand {
	margin-right: auto;
}

.site-name {
	margin: 0;
	font-family: var(--font-head);
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.2;
}

.site-name a,
.site-name-link {
	color: var(--fg);
	text-decoration: none;
}

.site-name a:hover {
	color: var(--accent-deep);
	text-decoration: none;
}

.custom-logo-link img {
	display: block;
	max-height: 56px;
	width: auto;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: var(--tint);
	color: var(--fg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	cursor: pointer;
}

.primary-nav {
	font-size: 0.95rem;
}

.primary-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav .menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2px 6px;
}

.primary-nav .menu-item {
	position: relative;
}

.primary-nav .menu-item > a {
	display: block;
	padding: 8px 12px;
	color: var(--fg);
	border-radius: var(--radius);
}

.primary-nav .menu-item > a:hover {
	background: var(--tint);
	color: var(--accent-deep);
	text-decoration: none;
}

.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
	color: var(--accent-deep);
	background: var(--accent-soft);
}

.sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 60;
	min-width: 230px;
	padding: 8px;
	background: #fffdf6;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu .menu-item > a {
	padding: 8px 12px;
	font-size: 0.92rem;
}

.submenu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 38px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: var(--radius);
	color: var(--muted);
	cursor: pointer;
}

.submenu-toggle svg {
	transition: transform 0.2s ease;
}

.sub-open > .submenu-toggle svg {
	transform: rotate(180deg);
}

/* ---------- Header search ---------- */

.header-search {
	position: relative;
}

.search-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: var(--tint);
	color: var(--fg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	cursor: pointer;
}

.search-toggle:hover {
	background: var(--accent-soft);
}

.search-panel {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 70;
	width: min(340px, calc(100vw - 48px));
	padding: 14px;
	background: #fffdf6;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

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

/* ---------- Search form ---------- */

.search-form {
	display: flex;
	gap: 8px;
}

.search-field {
	flex: 1;
	min-width: 0;
	padding: 10px 14px;
	font: inherit;
	color: var(--fg);
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

.search-field:focus {
	border-color: var(--accent);
}

.search-submit {
	padding: 10px 18px;
	font: inherit;
	font-weight: 600;
	color: #fff;
	background: var(--accent);
	border: 0;
	border-radius: var(--radius);
	cursor: pointer;
}

.search-submit:hover {
	background: var(--accent-deep);
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
	margin-bottom: 20px;
	font-size: 0.85rem;
	color: var(--muted);
}

.trail {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.crumb + .crumb::before {
	content: "/";
	margin-right: 8px;
	color: var(--border);
}

.crumb a {
	color: var(--muted);
}

.crumb a:hover {
	color: var(--accent-deep);
}

/* ---------- Archive headers & post rows ---------- */

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

.archive-title {
	margin: 0 0 8px;
	font-size: 1.9rem;
}

.archive-description {
	color: var(--muted);
}

.archive-description p {
	margin: 0 0 8px;
}

.post-row {
	display: flex;
	gap: 22px;
	align-items: flex-start;
	padding: 22px;
	margin-bottom: 18px;
	background: var(--tint);
	border-radius: var(--radius-lg);
}

.row-thumb {
	flex: 0 0 210px;
	display: block;
}

.row-thumb .entry-image {
	display: block;
	width: 100%;
	aspect-ratio: var(--thumb-ratio);
	object-fit: cover;
	border-radius: var(--radius);
}

.row-body {
	min-width: 0;
}

.row-title {
	margin: 0 0 6px;
	font-size: 1.3rem;
}

.row-title a {
	color: var(--fg);
}

.row-title a:hover {
	color: var(--accent-deep);
	text-decoration: none;
}

.row-meta {
	margin: 0 0 8px;
	font-size: 0.85rem;
	color: var(--muted);
}

.row-body p {
	margin: 0 0 8px;
}

/* ---------- Homepage highlight ---------- */

.featured-highlight {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
	gap: 28px;
	align-items: center;
	padding: 28px;
	margin-bottom: 34px;
	background: var(--accent-soft);
	border-radius: var(--radius-lg);
}

.featured-highlight::after {
	content: "";
	position: absolute;
	right: 20px;
	bottom: 14px;
	width: 72px;
	height: 72px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M50 8C28 14 14 30 12 54c24-2 40-16 46-38z' fill='none' stroke='%2347613a' stroke-width='2' opacity='.22'/%3E%3Cpath d='M16 50C27 36 38 25 49 15' fill='none' stroke='%2347613a' stroke-width='1.5' opacity='.18'/%3E%3C/svg%3E") no-repeat center / contain;
	pointer-events: none;
}

.highlight-media {
	display: block;
}

.highlight-media .entry-image {
	display: block;
	width: 100%;
	aspect-ratio: var(--media-ratio);
	object-fit: cover;
	border-radius: var(--radius);
}

.highlight-title {
	margin: 0 0 8px;
	font-size: 1.8rem;
}

.highlight-title a {
	color: var(--fg);
}

.highlight-title a:hover {
	color: var(--accent-deep);
	text-decoration: none;
}

.highlight-body .entry-meta {
	margin: 0 0 10px;
}

.highlight-body p {
	margin: 0 0 10px;
}

/* ---------- Single entry ---------- */

.entry-header {
	margin-bottom: 22px;
}

.entry-title {
	margin: 0 0 10px;
	font-size: 2.1rem;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	margin: 0;
	font-size: 0.88rem;
	color: var(--muted);
}

.entry-meta a {
	color: var(--muted);
}

.entry-meta a:hover {
	color: var(--accent-deep);
}

.entry-media {
	margin: 0 0 26px;
}

.entry-media .entry-image {
	display: block;
	width: 100%;
	aspect-ratio: var(--media-ratio);
	object-fit: cover;
	border-radius: var(--radius-lg);
}

.entry-content {
	font-size: 1.03rem;
}

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

.entry-content h2 {
	margin: 1.6em 0 0.5em;
	font-size: 1.5rem;
}

.entry-content h3 {
	margin: 1.5em 0 0.5em;
	font-size: 1.25rem;
}

.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin: 1.4em 0 0.5em;
	font-size: 1.1rem;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
	margin: 0 0 1.2em;
}

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

.entry-content li {
	margin-bottom: 0.35em;
}

.entry-content blockquote {
	margin: 0 0 1.4em;
	padding: 18px 22px;
	background: var(--tint);
	border-left: 4px solid var(--accent);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-family: var(--font-head);
	font-size: 1.08rem;
}

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

.entry-content code {
	padding: 2px 6px;
	background: var(--tint);
	border-radius: 6px;
	font-size: 0.92em;
}

.entry-content pre {
	padding: 18px;
	background: var(--tint);
	border-radius: var(--radius);
	overflow-x: auto;
}

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

.entry-content img {
	border-radius: var(--radius);
}

.entry-content figure {
	margin: 0 0 1.4em;
}

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

.entry-content table {
	width: 100%;
	margin: 0 0 1.4em;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 10px 12px;
	border: 1px solid var(--border);
	text-align: left;
}

.entry-content th {
	background: var(--tint);
	font-family: var(--font-head);
}

.page-links {
	margin: 1.4em 0;
	font-size: 0.92rem;
}

.page-links .page-numbers,
.page-links a .page-numbers {
	display: inline-block;
	padding: 4px 10px;
	margin-right: 4px;
	background: var(--tint);
	border-radius: 10px;
}

/* ---------- Tags, author bio, related, note ---------- */

.entry-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 28px 0 0;
}

.entry-tags a {
	display: inline-block;
	padding: 6px 14px;
	font-size: 0.85rem;
	color: var(--accent-deep);
	background: var(--tint);
	border-radius: var(--radius);
}

.entry-tags a:hover {
	background: var(--accent-soft);
	text-decoration: none;
}

.author-bio {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	margin-top: 30px;
	padding: 22px;
	background: var(--tint);
	border-radius: var(--radius-lg);
}

.author-bio .avatar {
	flex: 0 0 auto;
	max-width: 72px;
	border-radius: var(--radius);
	display: block;
	width: 100%;
	height: auto;
}

.author-name {
	margin: 0 0 6px;
	font-size: 1.15rem;
}

.author-name a {
	color: var(--fg);
}

.author-name a:hover {
	color: var(--accent-deep);
	text-decoration: none;
}

.author-desc {
	margin: 0;
	font-size: 0.95rem;
	color: var(--muted);
}

.related-posts {
	margin-top: 34px;
}

.related-title {
	margin: 0 0 16px;
	font-size: 1.4rem;
}

.related-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.related-item {
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 14px;
	background: var(--tint);
	border-radius: var(--radius-lg);
}

.related-thumb {
	flex: 0 0 96px;
	display: block;
}

.related-thumb .entry-image {
	display: block;
	width: 100%;
	aspect-ratio: var(--thumb-ratio);
	object-fit: cover;
	border-radius: var(--radius);
}

.related-name {
	margin: 0 0 4px;
	font-size: 1rem;
	line-height: 1.35;
}

.related-name a {
	color: var(--fg);
}

.related-name a:hover {
	color: var(--accent-deep);
	text-decoration: none;
}

.related-meta {
	margin: 0;
	font-size: 0.82rem;
	color: var(--muted);
}

.article-note {
	margin-top: 30px;
	padding: 18px 22px;
	background: var(--accent-soft);
	border: 1px dashed var(--accent);
	border-radius: var(--radius-lg);
	font-size: 0.95rem;
}

.article-note p {
	margin: 0 0 0.6em;
}

.article-note p:last-child {
	margin-bottom: 0;
}

/* ---------- Comments ---------- */

.comments-area {
	margin-top: 40px;
	padding-top: 8px;
}

.comments-title {
	margin: 0 0 18px;
	font-size: 1.5rem;
}

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

.comment-list .children {
	list-style: none;
	margin: 0;
	padding-left: 26px;
}

.comment-item {
	margin-bottom: 16px;
}

.comment-body {
	padding: 20px;
	background: var(--tint);
	border-radius: var(--radius-lg);
}

.comment-meta {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 10px;
}

.comment-meta .avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
}

.comment-author {
	display: block;
	font-style: normal;
	font-weight: 600;
}

.comment-author a {
	color: var(--fg);
}

.comment-date {
	font-size: 0.82rem;
	color: var(--muted);
}

.comment-content p {
	margin: 0 0 0.8em;
}

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

.comment-awaiting {
	font-size: 0.85rem;
	font-style: italic;
	color: var(--accent-deep);
}

.comment-reply {
	margin-top: 10px;
}

.comment-reply a {
	display: inline-block;
	padding: 5px 14px;
	font-size: 0.85rem;
	color: var(--accent-deep);
	background: var(--accent-soft);
	border-radius: var(--radius);
}

.comment-reply a:hover {
	text-decoration: none;
	background: var(--tint);
}

.comment-pagination {
	display: flex;
	justify-content: space-between;
	margin: 0 0 24px;
}

.comment-respond {
	padding: 24px;
	background: #fffdf6;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
}

.comment-reply-title {
	margin: 0 0 14px;
	font-size: 1.3rem;
}

.comment-reply-title small {
	font-size: 0.8rem;
	margin-left: 10px;
}

.comment-form p {
	margin: 0 0 14px;
}

.comment-form label {
	display: block;
	margin-bottom: 5px;
	font-size: 0.9rem;
	font-weight: 600;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 10px 14px;
	font: inherit;
	color: var(--fg);
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-color: var(--accent);
}

.comment-form-cookies-consent {
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 0.88rem;
}

.comment-form-cookies-consent label {
	margin: 0;
	font-weight: 400;
}

.form-submit {
	margin-bottom: 0;
}

.comment-form .submit {
	padding: 11px 26px;
	font: inherit;
	font-weight: 600;
	color: #fff;
	background: var(--accent);
	border: 0;
	border-radius: var(--radius);
	cursor: pointer;
}

.comment-form .submit:hover {
	background: var(--accent-deep);
}

.comment-notes,
.logged-in-as {
	font-size: 0.88rem;
	color: var(--muted);
}

/* ---------- Sidebar widgets ---------- */

.sidebar {
	min-width: 0;
}

.widget {
	margin-bottom: 22px;
	padding: 22px;
	background: var(--tint);
	border-radius: var(--radius-lg);
}

.widget-title {
	margin: 0 0 12px;
	font-size: 1.15rem;
}

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

.widget ul li {
	padding: 7px 0;
	border-bottom: 1px solid var(--border);
}

.widget ul li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.widget_recent_entries .post-date {
	display: block;
	font-size: 0.82rem;
	color: var(--muted);
}

.widget ul li a {
	color: var(--fg);
}

.widget ul li a:hover {
	color: var(--accent-deep);
}

.widget select {
	width: 100%;
	padding: 9px 12px;
	font: inherit;
	color: var(--fg);
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

.widget p {
	margin: 0 0 10px;
}

.widget p:last-child {
	margin-bottom: 0;
}

.widget .search-form {
	flex-direction: column;
}

.widget .search-submit {
	align-self: flex-start;
}

.widget_calendar table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.85rem;
}

.widget_calendar caption {
	margin-bottom: 8px;
	font-family: var(--font-head);
	font-weight: 700;
}

.widget_calendar th,
.widget_calendar td {
	padding: 5px;
	text-align: center;
}

.widget_calendar #today {
	background: var(--accent-soft);
	border-radius: 8px;
}

.widget_tag_cloud a {
	display: inline-block;
	padding: 4px 12px;
	margin: 0 6px 8px 0;
	font-size: 0.85rem !important;
	color: var(--accent-deep);
	background: var(--accent-soft);
	border-radius: var(--radius);
}

.widget_tag_cloud a:hover {
	text-decoration: none;
	background: var(--tint);
}

/* ---------- Pagination ---------- */

.pagination {
	margin-top: 30px;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.pagination .page-numbers {
	display: inline-block;
	padding: 8px 16px;
	font-size: 0.92rem;
	color: var(--fg);
	background: var(--tint);
	border-radius: var(--radius);
}

.pagination .page-numbers:hover {
	background: var(--accent-soft);
	text-decoration: none;
}

.pagination .page-numbers.current {
	color: #fff;
	background: var(--accent);
}

.pagination .page-numbers.dots {
	background: transparent;
}

/* ---------- Footer ---------- */

.site-footer {
	margin-top: 10px;
	background: var(--tint);
	border-top: 1px solid var(--border);
}

.footer-inner {
	width: min(1120px, 100%);
	margin: 0 auto;
	padding: 40px 24px 28px;
}

.footer-nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 30px;
}

.footer-heading {
	margin: 0 0 10px;
	font-size: 1.05rem;
	color: var(--accent-deep);
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links li {
	margin-bottom: 6px;
}

.footer-links a {
	font-size: 0.92rem;
	color: var(--fg);
}

.footer-links a:hover {
	color: var(--accent-deep);
}

.footer-bottom {
	padding-top: 18px;
	border-top: 1px solid var(--border);
	text-align: center;
}

.copyright {
	margin: 0;
	font-size: 0.85rem;
	color: var(--muted);
}

.footer-note {
	margin: 6px 0 0;
	font-size: 0.82rem;
	color: var(--muted);
}

/* ---------- No results / 404 ---------- */

.no-results {
	padding: 28px;
	background: var(--tint);
	border-radius: var(--radius-lg);
}

.no-results-title {
	margin: 0 0 8px;
	font-size: 1.4rem;
}

.no-results p {
	margin: 0 0 16px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
	.site-content {
		grid-template-columns: minmax(0, 1fr) 260px;
		gap: 36px;
	}
}

@media (max-width: 860px) {
	.site-content {
		grid-template-columns: minmax(0, 1fr);
	}

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

	.primary-nav {
		display: none;
		flex-basis: 100%;
		order: 5;
		padding: 10px 0 6px;
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav .menu {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	.primary-nav .menu-item {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.primary-nav .menu-item > a {
		flex: 1;
		padding: 11px 14px;
	}

	.submenu-toggle {
		display: inline-flex;
	}

	.sub-menu {
		position: static;
		flex-basis: 100%;
		min-width: 0;
		margin: 2px 0 6px 14px;
		display: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: var(--tint);
		border-color: var(--border);
	}

	.menu-item-has-children.sub-open > .sub-menu {
		display: block;
	}

	.header-search {
		position: static;
	}

	.header-search .search-panel {
		position: absolute;
		top: calc(100% + 8px);
		left: 16px;
		right: 16px;
		width: auto;
	}

	.featured-highlight {
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
	}

	.featured-highlight::after {
		display: none;
	}

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

@media (max-width: 620px) {
	.site-content {
		padding: 22px 16px 40px;
	}

	.header-inner {
		padding: 12px 16px;
	}

	.footer-inner {
		padding: 32px 16px 22px;
	}

	.footer-nav {
		grid-template-columns: 1fr;
	}

	.post-row {
		flex-direction: column;
		gap: 14px;
	}

	.row-thumb {
		flex: none;
		width: 100%;
	}

	.entry-title {
		font-size: 1.7rem;
	}

	.highlight-title {
		font-size: 1.45rem;
	}

	.archive-title {
		font-size: 1.55rem;
	}

	.related-list {
		grid-template-columns: minmax(0, 1fr);
	}

	.author-bio {
		flex-direction: column;
	}

	.entry-content th,
	.entry-content td {
		padding: 8px 9px;
		font-size: 0.92rem;
	}

	.entry-content {
		overflow-x: hidden;
	}

	.kq8mzv-table-wrap {
		overflow-x: auto;
		max-width: 100%;
		-webkit-overflow-scrolling: touch;
	}

	.kq8mzv-table-wrap table {
		width: auto;
		min-width: 100%;
		margin-bottom: 0;
	}

	.kq8mzv-table-wrap th {
		white-space: nowrap;
	}

	.kq8mzv-table-wrap td {
		min-width: 8rem;
	}
}

