/*
Theme Name: MyTheme
Theme URI: https://goldprice88.com
Author: GoldPrice88
Author URI: https://goldprice88.com
Description: ธีม WordPress สำหรับ GoldPrice88 — ดีไซน์ dark theme โทนทองคำ เหมือนหน้าหลักทุกประการ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mytheme
Tags: dark, gold, one-column, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* ===== CSS VARIABLES ===== */
:root {
	--bg-primary: #0d1117;
	--bg-card: #161b22;
	--bg-inner: #21262d;
	--border-dim: #30363d;
	--border-gold: rgba(218, 165, 32, 0.15);
	--text-primary: #f0f6fc;
	--text-secondary: #8b949e;
	--text-muted: #6e7681;
	--gold: #daa520;
	--gold-light: #ffd700;
	--gold-dark: #b8860b;
	--green: #3fb950;
	--red: #f85149;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-size: 1em;
	font-family: 'Sarabun', 'Inter', -apple-system, sans-serif;
	font-weight: 400;
	background: var(--bg-primary);
	margin: 0;
	line-height: 1.6;
	color: var(--text-primary);
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

/* Radial gold glow background */
body::before {
	content: '';
	position: fixed;
	top: -10%;
	left: 50%;
	transform: translateX(-50%);
	width: 120%;
	height: 70%;
	background: radial-gradient(ellipse at 50% 20%, rgba(218, 165, 32, 0.10) 0%, rgba(184, 134, 11, 0.04) 35%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

/* Sparkle particles */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		radial-gradient(1px 1px at 10% 15%, rgba(255, 215, 0, 0.4) 0%, transparent 100%),
		radial-gradient(1px 1px at 30% 8%, rgba(255, 215, 0, 0.3) 0%, transparent 100%),
		radial-gradient(1.5px 1.5px at 55% 12%, rgba(255, 215, 0, 0.5) 0%, transparent 100%),
		radial-gradient(1px 1px at 70% 20%, rgba(255, 215, 0, 0.3) 0%, transparent 100%),
		radial-gradient(1px 1px at 85% 10%, rgba(255, 215, 0, 0.4) 0%, transparent 100%),
		radial-gradient(1px 1px at 20% 25%, rgba(255, 215, 0, 0.2) 0%, transparent 100%),
		radial-gradient(1.5px 1.5px at 45% 30%, rgba(255, 215, 0, 0.35) 0%, transparent 100%),
		radial-gradient(1px 1px at 75% 28%, rgba(255, 215, 0, 0.25) 0%, transparent 100%),
		radial-gradient(1px 1px at 90% 35%, rgba(255, 215, 0, 0.3) 0%, transparent 100%),
		radial-gradient(1px 1px at 5% 40%, rgba(255, 215, 0, 0.2) 0%, transparent 100%);
	pointer-events: none;
	z-index: 0;
	animation: sparkle 8s ease-in-out infinite alternate;
}

@keyframes sparkle {
	0% {
		opacity: 0.5;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0.6;
	}
}

@keyframes shimmer {
	0% {
		left: -100%;
	}

	100% {
		left: 200%;
	}
}

@keyframes live-pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.4;
		transform: scale(0.85);
	}
}

/* ===== CONTAINER ===== */
.container {
	max-width: 510px;
	margin: 0 auto;
	padding: 20px 16px 100px;
	position: relative;
	z-index: 1;
}

@media screen and (min-width: 1024px) {
	body {
		margin: 0 auto;
	}

	.container {
		max-width: 510px;
	}
}

@media screen and (max-width: 1024px) {
	.container {
		border-radius: 0;
		box-shadow: none;
	}
}

/* ===== TYPOGRAPHY ===== */
a {
	color: var(--text-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:visited {
	color: var(--text-primary);
	text-decoration: none;
}

a:hover {
	color: var(--gold-light);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.3;
}

h1 {
	font-size: 1.4em;
}

h2 {
	font-size: 1.2em;
}

h3 {
	font-size: 1.1em;
}

/* ===== LOGO + HEADER ===== */
.logo-wrapper {
	display: inline-block;
	position: relative;
	text-decoration: none;
}

.site-logo {
	max-width: 180px;
	height: auto;
	position: relative;
	filter: drop-shadow(0 0 6px rgba(218, 165, 32, 0.25));
}

.header-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

/* Sparkle star elements */
.sparkle {
	position: absolute;
	pointer-events: none;
	z-index: 2;
}

.sparkle svg {
	animation: sparkle-anim 1.5s ease-in-out infinite;
	filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.6));
}

@keyframes sparkle-anim {
	0% {
		transform: scale(0) rotate(0deg);
		opacity: 0;
	}

	25% {
		transform: scale(1) rotate(45deg);
		opacity: 1;
	}

	50% {
		transform: scale(0.6) rotate(90deg);
		opacity: 0.8;
	}

	75% {
		transform: scale(1) rotate(135deg);
		opacity: 1;
	}

	100% {
		transform: scale(0) rotate(180deg);
		opacity: 0;
	}
}

/* ===== PAGE TITLE ===== */
.page-title {
	text-align: center;
	font-size: 20px;
	font-weight: 800;
	background: linear-gradient(135deg, var(--gold-light), var(--gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0 0 20px 0;
	font-family: 'Inter', 'Sarabun', sans-serif;
}

/* ===== ARTICLE CARDS ===== */
.article-card {
	background: var(--bg-card);
	border: 1px solid var(--border-dim);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 16px;
	transition: border-color 0.3s ease, transform 0.2s ease;
	position: relative;
}

.article-card::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
	border-radius: 16px 16px 0 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.article-card:hover {
	border-color: var(--border-gold);
	transform: translateY(-2px);
}

.article-card:hover::before {
	opacity: 1;
}

.article-card-thumb {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.article-card-thumb-placeholder {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, var(--bg-inner), var(--bg-card));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 40px;
}

.article-card-body {
	padding: 16px;
}

.article-card-category {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 3px 10px;
	border-radius: 20px;
	background: rgba(218, 165, 32, 0.12);
	border: 1px solid rgba(218, 165, 32, 0.25);
	color: var(--gold);
	margin-bottom: 8px;
}

.article-card-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0 0 8px 0;
	line-height: 1.4;
}

.article-card-title a {
	color: var(--text-primary);
}

.article-card-title a:hover {
	color: var(--gold-light);
}

.article-card-excerpt {
	font-size: 13px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0 0 12px 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.article-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 11px;
	color: var(--text-muted);
}

.article-card-meta i {
	margin-right: 4px;
}

.article-card-readmore {
	font-size: 12px;
	font-weight: 600;
	color: var(--gold);
	transition: color 0.2s ease;
}

.article-card-readmore:hover {
	color: var(--gold-light);
}

/* ===== SINGLE POST ===== */
.single-post-card {
	background: var(--bg-card);
	border: 1px solid var(--border-dim);
	border-radius: 16px;
	padding: 20px 16px;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.single-post-card::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
	border-radius: 16px 16px 0 0;
}

.single-post-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.single-post-meta i {
	margin-right: 3px;
}

.single-featured-img {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 20px;
	border: 1px solid var(--border-dim);
}

/* Post content styling */
.entry-content {
	font-size: 15px;
	line-height: 1.8;
	color: var(--text-primary);
}

.entry-content h2 {
	font-size: 18px;
	margin-top: 28px;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border-dim);
	background: linear-gradient(135deg, var(--gold-light), var(--gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.entry-content h3 {
	font-size: 16px;
	margin-top: 24px;
	margin-bottom: 10px;
	color: var(--gold);
}

.entry-content p {
	margin-bottom: 16px;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	border: 1px solid var(--border-dim);
	margin: 12px 0;
}

.entry-content blockquote {
	margin: 20px 0;
	padding: 16px 20px;
	background: rgba(218, 165, 32, 0.06);
	border-left: 3px solid var(--gold);
	border-radius: 0 10px 10px 0;
	font-style: italic;
	color: var(--text-secondary);
}

.entry-content ul,
.entry-content ol {
	padding-left: 24px;
	margin-bottom: 16px;
}

.entry-content li {
	margin-bottom: 6px;
}

.entry-content a {
	color: var(--gold);
	text-decoration: underline;
	text-decoration-color: rgba(218, 165, 32, 0.3);
	text-underline-offset: 2px;
}

.entry-content a:hover {
	color: var(--gold-light);
	text-decoration-color: var(--gold-light);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0;
	font-size: 14px;
}

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

.entry-content th {
	background: var(--bg-inner);
	font-weight: 700;
	color: var(--gold);
}

.entry-content td {
	background: var(--bg-card);
}

.entry-content pre,
.entry-content code {
	background: var(--bg-inner);
	border: 1px solid var(--border-dim);
	border-radius: 8px;
	padding: 2px 6px;
	font-size: 13px;
	color: var(--gold);
}

.entry-content pre {
	padding: 16px;
	overflow-x: auto;
}

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

/* ===== TAG / CATEGORY BADGES ===== */
.post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--border-dim);
}

.post-tags a {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 20px;
	background: var(--bg-inner);
	border: 1px solid var(--border-dim);
	color: var(--text-secondary);
	transition: all 0.2s ease;
}

.post-tags a:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: rgba(218, 165, 32, 0.08);
}

/* ===== NAVIGATION (Post Navigation) ===== */
.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 20px 0;
}

.post-navigation a {
	display: block;
	padding: 14px;
	background: var(--bg-card);
	border: 1px solid var(--border-dim);
	border-radius: 12px;
	font-size: 13px;
	color: var(--text-secondary);
	transition: all 0.2s ease;
}

.post-navigation a:hover {
	border-color: var(--gold);
	color: var(--text-primary);
}

.post-navigation .nav-label {
	display: block;
	font-size: 10px;
	color: var(--text-muted);
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.post-navigation .nav-next {
	text-align: right;
}

/* ===== PAGINATION ===== */
.pagination-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 24px 0 10px;
	flex-wrap: wrap;
}

.pagination-wrap a,
.pagination-wrap span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.pagination-wrap a {
	background: var(--bg-card);
	border: 1px solid var(--border-dim);
	color: var(--text-secondary);
}

.pagination-wrap a:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: rgba(218, 165, 32, 0.08);
}

.pagination-wrap .current {
	background: linear-gradient(135deg, var(--gold-dark), var(--gold));
	color: #0d1117;
	border: none;
	font-weight: 800;
}

/* ===== COMMENTS ===== */
.comments-section {
	background: var(--bg-card);
	border: 1px solid var(--border-dim);
	border-radius: 16px;
	padding: 20px 16px;
	margin-bottom: 20px;
}

.comments-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--gold);
	margin: 0 0 16px 0;
}

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

.comment-list .comment {
	padding: 14px 0;
	border-bottom: 1px solid var(--border-dim);
}

.comment-list .comment:last-child {
	border-bottom: none;
}

.comment-author {
	font-size: 13px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 4px;
}

.comment-date {
	font-size: 11px;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.comment-content {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
}

.comment-content p {
	margin: 0 0 8px 0;
}

/* Comment form */
.comment-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 4px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 10px 14px;
	background: var(--bg-inner);
	border: 1px solid var(--border-dim);
	border-radius: 10px;
	color: var(--text-primary);
	font-size: 14px;
	font-family: 'Sarabun', sans-serif;
	margin-bottom: 12px;
	transition: border-color 0.2s ease;
}

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

.comment-form textarea {
	min-height: 120px;
	resize: vertical;
}

.comment-form .submit {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 24px;
	background: linear-gradient(135deg, var(--gold-dark), var(--gold));
	color: #0d1117;
	border: none;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: 'Sarabun', sans-serif;
}

.comment-form .submit:hover {
	background: linear-gradient(135deg, var(--gold), var(--gold-light));
	transform: translateY(-1px);
}

/* ===== SEARCH FORM ===== */
.search-form-wrap {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
}

.search-form-wrap input[type="search"] {
	flex: 1;
	padding: 10px 14px;
	background: var(--bg-inner);
	border: 1px solid var(--border-dim);
	border-radius: 10px;
	color: var(--text-primary);
	font-size: 14px;
	font-family: 'Sarabun', sans-serif;
}

.search-form-wrap input[type="search"]:focus {
	outline: none;
	border-color: var(--gold);
}

.search-form-wrap button {
	padding: 10px 18px;
	background: linear-gradient(135deg, var(--gold-dark), var(--gold));
	color: #0d1117;
	border: none;
	border-radius: 10px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
}

.search-form-wrap button:hover {
	background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

/* ===== 404 PAGE ===== */
.error-404-wrap {
	text-align: center;
	padding: 60px 20px;
}

.error-404-icon {
	font-size: 64px;
	color: var(--gold);
	margin-bottom: 16px;
	opacity: 0.6;
}

.error-404-title {
	font-size: 28px;
	font-weight: 800;
	background: linear-gradient(135deg, var(--gold-light), var(--gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 12px;
}

.error-404-text {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 24px;
}

.error-404-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	background: linear-gradient(135deg, var(--gold-dark), var(--gold));
	color: #0d1117;
	border-radius: 12px;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.2s ease;
}

.error-404-btn:hover {
	background: linear-gradient(135deg, var(--gold), var(--gold-light));
	transform: translateY(-2px);
	color: #0d1117;
}

/* ===== RELATED POSTS ===== */
.related-posts {
	background: var(--bg-card);
	border: 1px solid var(--border-dim);
	border-radius: 16px;
	padding: 20px 16px;
	margin-bottom: 20px;
}

.related-posts-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--gold);
	margin: 0 0 14px 0;
}

.related-post-item {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--border-dim);
}

.related-post-item:last-child {
	border-bottom: none;
}

.related-post-thumb {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}

.related-post-info {
	flex: 1;
	min-width: 0;
}

.related-post-info a {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-primary);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.related-post-info a:hover {
	color: var(--gold-light);
}

.related-post-date {
	font-size: 10px;
	color: var(--text-muted);
	margin-top: 3px;
}

/* ===== ARCHIVE HEADER ===== */
.archive-header {
	background: var(--bg-card);
	border: 1px solid var(--border-dim);
	border-radius: 16px;
	padding: 20px 16px;
	margin-bottom: 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.archive-header::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
	border-radius: 16px 16px 0 0;
}

.archive-header h1 {
	font-size: 18px;
	margin: 0;
	background: linear-gradient(135deg, var(--gold-light), var(--gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.archive-description {
	font-size: 13px;
	color: var(--text-secondary);
	margin-top: 8px;
}

/* ===== STATUS BAR (above bottom nav) ===== */
.bottom-status-bar {
	position: fixed;
	bottom: 56px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(13, 17, 23, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid rgba(218, 165, 32, 0.12);
	padding: 5px 16px;
	z-index: 999;
	font-size: 12px;
}

.bottom-status-bar .status-clock {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #f0f6fc;
}

.bottom-status-bar .status-dot {
	width: 7px;
	height: 7px;
	background: #3fb950;
	border-radius: 50%;
	animation: status-pulse 2s ease-in-out infinite;
	box-shadow: 0 0 5px rgba(63, 185, 80, 0.5);
	flex-shrink: 0;
}

@keyframes status-pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.4;
	}
}

.bottom-status-bar .status-time {
	font-family: 'Inter', monospace;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.bottom-status-bar .status-label {
	color: #8b949e;
	font-size: 11px;
}

.bottom-status-bar .status-online {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(63, 185, 80, 0.1);
	border: 1px solid rgba(63, 185, 80, 0.25);
	border-radius: 20px;
	padding: 3px 10px;
	color: #3fb950;
	font-weight: 600;
	font-size: 12px;
}

.bottom-status-bar .online-dot-sm {
	width: 6px;
	height: 6px;
	background: #3fb950;
	border-radius: 50%;
	animation: status-pulse 2s ease-in-out infinite;
}

/* ===== BOTTOM NAV ===== */
.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background: rgba(13, 17, 23, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-top: 1px solid rgba(218, 165, 32, 0.2);
	padding: 8px 0 env(safe-area-inset-bottom, 8px);
	z-index: 1000;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.bottom-nav a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	text-decoration: none;
	color: #6e7681;
	font-size: 10px;
	font-weight: 500;
	padding: 4px 12px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.bottom-nav a:hover {
	color: #8b949e;
}

.bottom-nav a.active {
	color: #daa520;
}

.bottom-nav a.active .nav-icon {
	transform: scale(1.1);
	text-shadow: 0 0 12px rgba(218, 165, 32, 0.4);
}

.bottom-nav .nav-icon {
	font-size: 18px;
	transition: all 0.3s ease;
	line-height: 1;
}

/* ===== NO-RESULTS ===== */
.no-results {
	text-align: center;
	padding: 40px 20px;
	color: var(--text-secondary);
}

.no-results i {
	font-size: 40px;
	color: var(--text-muted);
	margin-bottom: 16px;
	display: block;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 16px;
	padding: 0;
}

.breadcrumb a {
	color: var(--text-secondary);
}

.breadcrumb a:hover {
	color: var(--gold);
}

.breadcrumb .sep {
	margin: 0 6px;
	opacity: 0.5;
}

/* ===== PRINT ===== */
@media print {

	.noprint,
	.bottom-nav,
	.bottom-status-bar {
		display: none;
	}

	body {
		background: #fff;
		color: #222;
	}

	body::before,
	body::after {
		display: none;
	}

	.container {
		max-width: 662px;
		background: #fff;
	}

	.article-card,
	.single-post-card,
	.comments-section,
	.related-posts {
		border-color: #ddd;
		background: #fff;
	}
}