/* ============================================================
 * Privato - article.css
 * Native post article layout and editorial modules.
 * Loaded only on is_singular('post').
 * ============================================================ */

.pc-article {
	--pc-article-mocha-dk: #8a5c52;
}

/* ===== ARTICLE HERO ===== */
.pc-article-hero {
	background: linear-gradient(180deg, var(--pc-peach-a), var(--pc-peach-b));
	padding: 44px 0 24px;
}

@media (min-width: 768px) {
	.pc-article-hero { padding: 64px 0 28px; }
}

@media (min-width: 1024px) {
	.pc-article-hero { padding: 80px 0 32px; }
}

.pc-article-hero__inner {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 16px;
	text-align: center;
}

@media (min-width: 768px) {
	.pc-article-hero__inner { padding: 0 24px; }
}

.pc-article-hero__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin-bottom: 0;
	color: var(--pc-ink);
	font-family: "Noto Sans Thai", "Sarabun", "Helvetica Neue", system-ui, -apple-system, sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: .2px;
}

@media (min-width: 768px) {
	.pc-article-hero__title {
		font-size: 30px;
		line-height: 1.3;
		letter-spacing: .3px;
	}
}

@media (min-width: 1280px) {
	.pc-article-hero__title { font-size: 36px; }
}

.pc-article-hero__byline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px 16px;
	margin-top: 26px;
	color: var(--pc-sub-2);
	font-size: 13px;
	font-style: normal;
}

.pc-article-hero__byline strong {
	color: var(--pc-ink);
	font-weight: 600;
}

.pc-article-hero__byline .sep {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--pc-mocha);
	opacity: .55;
}

.pc-byline-link {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(155, 121, 73, .4);
	text-decoration-thickness: 1px;
}

.pc-byline-link:hover {
	color: var(--pc-article-mocha-dk);
	text-decoration-color: var(--pc-article-mocha-dk);
	opacity: 1;
}

/* ===== FEATURED IMAGE ===== */
.pc-feature {
	position: relative;
	z-index: 1;
	max-width: 1040px;
	margin: 28px auto 0;
	padding: 0 16px;
}

@media (min-width: 768px) {
	.pc-feature {
		margin-top: 36px;
		padding: 0 24px;
	}
}

.pc-feature__frame {
	overflow: hidden;
	border-radius: 6px;
	background: var(--pc-cream);
	box-shadow: 0 1px 2px rgba(75, 55, 40, .05), 0 18px 40px rgba(75, 55, 40, .10);
}

.pc-feature__frame img {
	display: block;
	width: 100%;
	height: auto;
}

.postid-1528 .pc-feature__frame {
	aspect-ratio: 1080 / 567;
}

/* ===== ARTICLE BODY ===== */
.pc-post { padding: 48px 0; }

@media (min-width: 768px) {
	.pc-post { padding: 64px 0; }
}

@media (min-width: 1024px) {
	.pc-post { padding: 80px 0; }
}

.pc-article-hero + .pc-post,
.pc-article-hero + .pc-author-rail + .pc-post { padding-top: 28px; }

@media (min-width: 768px) {
	.pc-article-hero + .pc-post,
	.pc-article-hero + .pc-author-rail + .pc-post { padding-top: 36px; }
}

@media (min-width: 1024px) {
	.pc-article-hero + .pc-post,
	.pc-article-hero + .pc-author-rail + .pc-post { padding-top: 40px; }
}

.pc-post:nth-of-type(odd) { background: var(--pc-white); }
.pc-post:nth-of-type(even) { background: var(--pc-ivory); }
.pc-post:first-of-type { background: var(--pc-cream-warm); }

.pc-post__inner {
	max-width: 780px;
	margin: 0 auto;
	padding: 0 16px;
}

@media (min-width: 768px) {
	.pc-post__inner { padding: 0 24px; }
}

@media (min-width: 1440px) {
	.pc-post__inner {
		margin-left: calc(50% - 410px);
		margin-right: auto;
	}
}

@media (min-width: 1580px) {
	.pc-post__inner { margin-left: calc(50% - 420px); }
}

.pc-post__inner > h2:first-child,
.pc-post__inner > section:first-child > h2 {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.pc-post__lead {
	margin-bottom: 24px;
	color: var(--pc-sub-1);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.85;
	letter-spacing: .1px;
}

@media (min-width: 768px) {
	.pc-post__lead {
		font-size: 19px;
		line-height: 1.9;
	}
}

.pc-post__inner h2[id] { scroll-margin-top: 112px; }

.pc-post__inner h2 {
	margin: 46px 0 14px;
	padding-top: 24px;
	border-top: 1px solid rgba(155, 121, 73, .16);
	color: var(--pc-ink);
	font-family: "Noto Sans Thai", "Sarabun", "Helvetica Neue", system-ui, -apple-system, sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0;
}

@media (min-width: 768px) {
	.pc-post__inner h2 {
		margin: 60px 0 18px;
		padding-top: 30px;
		font-size: 30px;
	}
}

@media (min-width: 1280px) {
	.pc-post__inner h2 { font-size: 34px; }
}

.pc-post__inner h3 {
	margin: 28px 0 10px;
	color: var(--pc-ink);
	font-family: "Noto Sans Thai", "Sarabun", "Helvetica Neue", system-ui, -apple-system, sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: .1px;
}

@media (min-width: 768px) {
	.pc-post__inner h3 {
		margin: 32px 0 12px;
		font-size: 20px;
	}
}

.pc-post__inner p {
	margin-bottom: 18px;
	color: var(--pc-sub-1);
	font-size: 15px;
	line-height: 1.95;
}

@media (min-width: 768px) {
	.pc-post__inner p { font-size: 16px; }
}

.pc-post__inner ul,
.pc-post__inner ol {
	margin: 0 0 22px 22px;
	color: var(--pc-sub-1);
	font-size: 15px;
	line-height: 1.9;
}

@media (min-width: 768px) {
	.pc-post__inner ul,
	.pc-post__inner ol {
		font-size: 16px;
		line-height: 1.95;
	}
}

.pc-post__inner li {
	margin-bottom: 8px;
	padding-left: 6px;
}

.pc-post__inner li::marker { color: var(--pc-mocha); }

.pc-post__inner a.inline {
	color: var(--pc-article-mocha-dk);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(155, 121, 73, .5);
	text-decoration-thickness: 1px;
}

.pc-post__inner a.inline:hover {
	color: var(--pc-mocha-dk-hover);
	text-decoration-color: var(--pc-mocha-dk-hover);
	opacity: 1;
}

.pc-post__inner strong {
	color: var(--pc-ink);
	font-weight: 600;
}

.pc-post__inner em {
	color: var(--pc-sub-1);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.05em;
	font-style: italic;
}

/* ===== TABLE OF CONTENTS ===== */
.pc-toc {
	margin: 32px 0 38px;
	padding: 22px;
	border: 1px solid var(--pc-line-warm);
	border-radius: 4px;
	background: linear-gradient(135deg, var(--pc-white) 0%, var(--pc-ivory) 100%);
	box-shadow: 0 1px 2px rgba(75, 55, 40, .04), 0 14px 34px rgba(75, 55, 40, .07);
}

@media (min-width: 768px) {
	.pc-toc {
		margin: 40px 0 48px;
		padding: 26px 30px;
	}
}

.pc-toc__eyebrow,
.pc-table-block__eyebrow,
.pc-faq__eyebrow,
.pc-callout__eyebrow {
	display: block;
	margin-bottom: 8px;
	color: var(--pc-article-mocha-dk);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.pc-toc__title {
	margin-bottom: 14px;
	color: var(--pc-ink);
	font-family: "Noto Sans Thai", "Sarabun", "Helvetica Neue", system-ui, -apple-system, sans-serif;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.pc-toc__title { font-size: 21px; }
}

.pc-post__inner .pc-toc ol {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 768px) {
	.pc-post__inner .pc-toc ol {
		grid-template-columns: 1fr 1fr;
		gap: 10px 18px;
	}
}

.pc-post__inner .pc-toc li {
	margin: 0;
	padding: 0;
}

.pc-toc a {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid rgba(155, 121, 73, .12);
	color: var(--pc-sub-1);
	font-size: 14px;
	line-height: 1.55;
}

@media (min-width: 768px) {
	.pc-toc a { font-size: 15px; }
}

.pc-toc a:hover {
	color: var(--pc-article-mocha-dk);
	opacity: 1;
}

/* ===== COMPARISON TABLE ===== */
.pc-table-block {
	overflow: hidden;
	margin: 34px 0 32px;
	border: 1px solid var(--pc-line-warm);
	border-radius: 4px;
	background: var(--pc-white);
	box-shadow: 0 1px 2px rgba(75, 55, 40, .04), 0 12px 28px rgba(75, 55, 40, .06);
}

@media (min-width: 1024px) {
	.pc-table-block {
		width: min(980px, calc(100vw - 48px));
		margin-left: 50%;
		transform: translateX(-50%);
	}
}

@media (min-width: 1280px) {
	.pc-table-block { width: min(780px, calc(100vw - 48px)); }
}

.pc-table-block__head { padding: 22px 22px 0; }

@media (min-width: 768px) {
	.pc-table-block__head { padding: 26px 30px 0; }
}

.pc-table-block h3 {
	margin: 0 0 14px;
	color: var(--pc-ink);
	font-family: "Noto Sans Thai", "Sarabun", "Helvetica Neue", system-ui, -apple-system, sans-serif;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.45;
}

@media (min-width: 768px) {
	.pc-table-block h3 { font-size: 21px; }
}

.pc-post__inner .pc-table-block__note {
	margin: 0 0 14px;
	color: var(--pc-muted);
	font-size: 13px;
	line-height: 1.7;
}

.pc-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.pc-compare-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
	color: var(--pc-sub-1);
	font-size: 14px;
	line-height: 1.55;
}

@media (min-width: 1024px) {
	.pc-compare-table { min-width: 0; }
}

@media (min-width: 1280px) {
	.pc-compare-table { font-size: 13px; }
}

.pc-compare-table caption {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pc-compare-table th,
.pc-compare-table td {
	padding: 10px 12px;
	border-top: 1px solid rgba(155, 121, 73, .14);
	text-align: left;
	vertical-align: top;
}

.pc-compare-table thead th {
	background: var(--pc-ivory);
	color: var(--pc-ink);
	font-weight: 600;
	white-space: nowrap;
}

.pc-compare-table tbody th {
	color: var(--pc-article-mocha-dk);
	font-weight: 600;
	white-space: nowrap;
}

.pc-compare-table a {
	color: var(--pc-article-mocha-dk);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(155, 121, 73, .5);
}

/* ===== FAQ ===== */
.pc-faq {
	margin: 48px 0 0;
	padding-top: 10px;
}

.pc-faq h2 {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.pc-faq__items {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.pc-faq details {
	overflow: hidden;
	padding: 0;
	border: 1px solid var(--pc-line-warm);
	border-radius: 4px;
	background: var(--pc-white);
	box-shadow: 0 1px 2px rgba(75, 55, 40, .04), 0 8px 22px rgba(75, 55, 40, .05);
}

.pc-faq summary {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	color: var(--pc-ink);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.55;
	list-style: none;
	cursor: pointer;
}

@media (min-width: 768px) {
	.pc-faq summary {
		padding: 18px 22px;
		font-size: 16px;
	}
}

.pc-faq summary::-webkit-details-marker { display: none; }

.pc-faq summary::after {
	content: "+";
	flex: 0 0 auto;
	color: var(--pc-article-mocha-dk);
	font-family: Georgia, serif;
	font-size: 20px;
	line-height: 1;
}

.pc-faq details[open] summary::after { content: "-"; }

.pc-faq details p {
	margin: 0;
	padding: 0 18px 18px;
	color: var(--pc-sub-1);
	font-size: 14px;
	line-height: 1.85;
}

@media (min-width: 768px) {
	.pc-faq details p {
		padding: 0 22px 20px;
		font-size: 15px;
	}
}

/* ===== PULL QUOTE ===== */
.pc-pullquote {
	max-width: 720px;
	margin: 36px auto;
	padding: 28px 24px;
	border-top: 1px solid var(--pc-line);
	border-bottom: 1px solid var(--pc-line);
	text-align: center;
}

.pc-pullquote p {
	margin-bottom: 0;
	color: var(--pc-sub-1);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 20px;
	font-style: italic;
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: .3px;
}

@media (min-width: 768px) {
	.pc-pullquote p { font-size: 24px; }
}

.pc-pullquote cite {
	display: block;
	margin-top: 14px;
	color: var(--pc-article-mocha-dk);
	font-family: "Noto Sans Thai", "Sarabun", "Helvetica Neue", system-ui, -apple-system, sans-serif;
	font-size: 12px;
	font-style: normal;
	letter-spacing: 3px;
	text-transform: uppercase;
}

/* ===== INLINE FIGURE ===== */
.pc-figure { margin: 30px 0 26px; }

.pc-figure__frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	border-radius: 4px;
	background: var(--pc-cream);
	box-shadow: 0 1px 2px rgba(75, 55, 40, .06), 0 12px 32px rgba(75, 55, 40, .14);
}

.pc-figure__frame::after {
	position: absolute;
	inset: 8px;
	border: 1px solid rgba(255, 252, 245, .34);
	content: "";
	pointer-events: none;
}

.pc-figure__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.02) contrast(1.01);
}

.pc-figure figcaption {
	margin-top: 12px;
	color: var(--pc-muted);
	font-size: 13px;
	line-height: 1.7;
	text-align: center;
	letter-spacing: .2px;
}

@media (min-width: 768px) {
	.pc-figure figcaption { font-size: 14px; }
}

/* ===== EDITORIAL CALLOUTS ===== */
.pc-callout {
	margin: 30px 0;
	padding: 24px 22px;
	border: 1px solid var(--pc-line-warm);
	border-radius: 4px;
	background: var(--pc-white);
	box-shadow: 0 1px 2px rgba(75, 55, 40, .04), 0 12px 28px rgba(75, 55, 40, .06);
}

@media (min-width: 768px) {
	.pc-callout { padding: 28px 32px; }
	.pc-callout__eyebrow { font-size: 12px; }
}

.pc-callout__eyebrow { margin-bottom: 10px; }

.pc-callout h3 {
	margin: 0 0 10px;
	color: var(--pc-ink);
	font-family: "Noto Sans Thai", "Sarabun", "Helvetica Neue", system-ui, -apple-system, sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.pc-callout h3 { font-size: 24px; }
}

.pc-callout p {
	margin-bottom: 0;
	color: var(--pc-sub-1);
	font-size: 14px;
	line-height: 1.8;
}

@media (min-width: 768px) {
	.pc-callout p { font-size: 15px; }
}

.pc-post__inner .pc-closing-note {
	margin: 30px 0 0;
	padding: 20px 22px;
	border: 1px solid var(--pc-line-warm);
	border-left: 3px solid var(--pc-article-mocha-dk);
	border-radius: 4px;
	background: var(--pc-white);
	box-shadow: 0 1px 2px rgba(75, 55, 40, .04), 0 10px 26px rgba(75, 55, 40, .05);
}

@media (min-width: 768px) {
	.pc-post__inner .pc-closing-note { padding: 22px 28px; }
}

/* ===== CHECK LIST ===== */
.pc-checks {
	margin: 8px 0 22px;
	padding: 0;
	list-style: none;
}

.pc-checks li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 10px;
	padding-left: 0;
	color: var(--pc-sub-1);
	font-size: 15px;
	line-height: 1.7;
}

@media (min-width: 768px) {
	.pc-checks li { font-size: 16px; }
}

.pc-checks li::before {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	margin-top: 2px;
	border-radius: 50%;
	background-color: var(--pc-cream);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.5l2.5 2.5 5.5-6' stroke='%2396695E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 14px 14px;
	content: "";
}

/* ===== DESKTOP AUTHOR RAIL ===== */
.pc-author-rail { display: none; }

@media (min-width: 1280px) {
	.pc-author-rail {
		position: sticky;
		top: 96px;
		z-index: 4;
		display: block;
		height: 0;
		overflow: visible;
		pointer-events: none;
	}

	.pc-author-rail__card {
		width: 220px;
		margin-left: calc(50% - 634px);
		padding: 16px;
		border: 1px solid var(--pc-line-warm);
		border-radius: 4px;
		background: var(--pc-white);
		box-shadow: 0 1px 2px rgba(75, 55, 40, .04), 0 12px 28px rgba(75, 55, 40, .06);
		pointer-events: auto;
	}

	.pc-author-rail__photo {
		overflow: hidden;
		aspect-ratio: 1 / 1;
		margin-bottom: 16px;
		border-radius: 4px;
		background: var(--pc-cream);
	}

	.pc-author-rail__photo img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center top;
	}

	.pc-author-rail__eyebrow {
		display: block;
		margin-bottom: 6px;
		color: var(--pc-article-mocha-dk);
		font-size: 10px;
		font-weight: 500;
		letter-spacing: 3px;
		text-transform: uppercase;
	}

	.pc-author-rail__name {
		margin-bottom: 6px;
		color: var(--pc-ink);
		font-family: "Prata", Georgia, "Times New Roman", serif;
		font-size: 18px;
		font-weight: 400;
		line-height: 1.25;
	}

	.pc-author-rail__role {
		margin-bottom: 12px;
		color: var(--pc-muted);
		font-size: 12px;
		line-height: 1.6;
	}

	.pc-author-rail__license {
		display: block;
		margin: -2px 0 10px;
		color: var(--pc-article-mocha-dk);
		font-size: 11px;
		font-weight: 600;
		letter-spacing: .4px;
	}

	.pc-author-rail__creds {
		display: grid;
		gap: 5px;
		margin: 0 0 4px;
		padding: 0;
		list-style: none;
	}

	.pc-author-rail__creds li {
		position: relative;
		padding-left: 9px;
		color: var(--pc-sub-1);
		font-size: 11px;
		line-height: 1.55;
	}

	.pc-author-rail__creds li::before {
		position: absolute;
		top: -2px;
		left: 0;
		color: var(--pc-article-mocha-dk);
		font-weight: 700;
		line-height: 1;
		content: "\00b7";
	}

	.pc-author-rail__actions {
		display: grid;
		gap: 10px;
		margin-top: 14px;
		padding-top: 14px;
		border-top: 1px solid var(--pc-line-warm);
	}

	.pc-author-rail__cta {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		min-height: 44px;
		padding: 11px 14px;
		border-radius: 4px;
		background: var(--pc-article-mocha-dk);
		box-shadow: 0 8px 18px rgba(150, 105, 94, .18);
		color: var(--pc-white);
		font-size: 13px;
		font-weight: 500;
		line-height: 1.35;
		text-align: center;
	}

	.pc-author-rail__cta:hover {
		background: var(--pc-mocha-dk-hover);
		opacity: 1;
	}

	.pc-author-rail__link {
		color: var(--pc-article-mocha-dk);
		font-size: 12px;
		font-weight: 500;
		text-decoration: underline;
		text-underline-offset: 3px;
		text-decoration-color: rgba(155, 121, 73, .5);
	}

	.pc-author-rail__link:hover {
		color: var(--pc-mocha-dk-hover);
		text-decoration-color: var(--pc-mocha-dk-hover);
		opacity: 1;
	}
}

@media (min-width: 1440px) {
	.pc-author-rail__card {
		width: 280px;
		margin-left: calc(50% - 714px);
		padding: 20px;
	}

	.pc-author-rail__name { font-size: 20px; }
	.pc-author-rail__role { font-size: 13px; }
	.pc-author-rail__license { font-size: 12px; }
	.pc-author-rail__creds li { font-size: 12px; }
}

@media (min-width: 1580px) {
	.pc-author-rail__card {
		width: 340px;
		margin-left: calc(50% - 784px);
	}
}

/* ===== MOBILE/TABLET AUTHOR CARD ===== */
.pc-author {
	padding: 48px 16px 56px;
	background: var(--pc-cream);
}

@media (min-width: 768px) {
	.pc-author { padding: 64px 24px 72px; }
}

@media (min-width: 1024px) {
	.pc-author { padding: 80px 24px 88px; }
}

@media (min-width: 1280px) {
	.pc-author { display: none; }
}

.pc-author__inner {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 20px;
	max-width: 780px;
	margin: 0 auto;
	padding: 24px;
	border: 1px solid var(--pc-line-warm);
	border-radius: 4px;
	background: var(--pc-white);
	box-shadow: 0 1px 2px rgba(75, 55, 40, .04), 0 12px 28px rgba(75, 55, 40, .06);
}

@media (min-width: 640px) {
	.pc-author__inner {
		grid-template-columns: 120px 1fr;
		gap: 24px;
		padding: 28px 32px;
	}
}

.pc-author__photo {
	overflow: hidden;
	width: 96px;
	aspect-ratio: 1 / 1;
	margin: 0 auto;
	border-radius: 50%;
	background: var(--pc-cream);
	box-shadow: 0 1px 2px rgba(75, 55, 40, .05), 0 12px 32px rgba(75, 55, 40, .10);
}

@media (min-width: 640px) {
	.pc-author__photo {
		width: 120px;
		margin: 0;
	}
}

.pc-author__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.pc-author__body { text-align: center; }

@media (min-width: 640px) {
	.pc-author__body { text-align: left; }
}

.pc-author__eyebrow {
	display: block;
	margin-bottom: 6px;
	color: var(--pc-article-mocha-dk);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 4px;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.pc-author__eyebrow { font-size: 12px; }
}

.pc-author__name {
	margin-bottom: 4px;
	color: var(--pc-ink);
	font-family: "Prata", Georgia, "Times New Roman", serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
}

@media (min-width: 768px) {
	.pc-author__name { font-size: 26px; }
}

.pc-author__role {
	margin-bottom: 12px;
	color: var(--pc-muted);
	font-size: 13px;
	letter-spacing: .3px;
}

.pc-author__license {
	display: block;
	margin: -4px 0 12px;
	color: var(--pc-article-mocha-dk);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .4px;
}

.pc-author__bio {
	margin-bottom: 14px;
	color: var(--pc-sub-1);
	font-size: 14px;
	line-height: 1.85;
}

@media (min-width: 768px) {
	.pc-author__bio {
		font-size: 15px;
		line-height: 1.9;
	}
}

.pc-author__creds {
	display: grid;
	gap: 6px;
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
	text-align: left;
}

.pc-author__creds li {
	position: relative;
	padding-left: 14px;
	color: var(--pc-sub-1);
	font-size: 13px;
	line-height: 1.7;
}

.pc-author__creds li::before {
	position: absolute;
	top: -2px;
	left: 4px;
	color: var(--pc-article-mocha-dk);
	font-weight: 700;
	line-height: 1;
	content: "\00b7";
}

@media (min-width: 768px) {
	.pc-author__creds li { font-size: 14px; }
}

.pc-author__link {
	color: var(--pc-article-mocha-dk);
	font-size: 13px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(155, 121, 73, .5);
}

.pc-author__link:hover {
	color: var(--pc-mocha-dk-hover);
	text-decoration-color: var(--pc-mocha-dk-hover);
	opacity: 1;
}
