/*!
Theme Name: notebyjenna-theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: note by jenna 블로그 전용 커스텀 테마. Underscores 기반, 목업 디자인 반영, 애드센스 광고 슬롯 포함.
Version: 3.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: notebyjenna-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

notebyjenna-theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
notebyjenna theme ver3 — custom design (based on mockup)
--------------------------------------------------------------*/

:root {
	--foxglove: #e3aeb9;
	--foxglove-light: #f5edee;
	--fuchsia: #9e2c6a;
	--fuchsia-dark: #7a2151;
	--ink: #241019;
	--ink-soft: #33161f;
	--black: #1a1a1a;
	--gray-50: #f9f9f9;
	--gray-100: #f2f2f2;
	--gray-200: #e5e5e5;
	--gray-400: #b0b0b0;
	--gray-600: #757575;
	--gray-800: #404040;
	--white: #ffffff;
}

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

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

body {
	margin: 0;
	min-height: 100%;
	font-family: 'Tomorrow', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--gray-50);
	color: var(--black);
	font-size: 15px;
	display: flex;
	flex-direction: column;
}

#page.site {
	min-height: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
}

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

a {
	color: inherit;
	text-decoration: none;
}

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

h1,
h2,
h3,
p {
	margin: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal !important;
}

/* -------------------- Header / GNB -------------------- */
.site-header {
	background: var(--ink);
	padding: 0 40px;
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	position: sticky;
	top: 0;
	z-index: 100;
	gap: 12px;
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-title,
.site-title a {
	font-size: 18px;
	font-weight: 500;
	color: var(--foxglove);
	letter-spacing: -0.3px;
	margin: 0;
}

.site-description {
	display: none;
}

.custom-logo-link img {
	max-height: 34px;
	width: auto;
}

.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul#primary-menu {
	display: flex;
	gap: 24px;
	align-items: center;
}

.main-navigation ul#primary-menu li {
	position: relative;
}

.main-navigation ul#primary-menu a {
	font-size: 13px;
	color: var(--gray-400);
	transition: color 0.2s;
}

.main-navigation ul#primary-menu li.current-menu-item>a,
.main-navigation ul#primary-menu a:hover {
	color: var(--foxglove);
	font-weight: 500;
}

.main-navigation .menu-toggle {
	display: none;
	background: none;
	border: 1px solid var(--gray-600);
	color: var(--gray-400);
	border-radius: 6px;
	padding: 6px 10px;
	font-size: 12px;
	cursor: pointer;
}

@media (max-width: 680px) {
	.main-navigation .menu-toggle {
		display: inline-block;
	}

	.main-navigation ul#primary-menu {
		display: none;
		position: absolute;
		right: 0;
		top: 44px;
		background: var(--ink-soft);
		flex-direction: column;
		align-items: flex-start;
		padding: 12px 16px;
		border-radius: 8px;
		gap: 12px;
		min-width: 140px;
	}

	.main-navigation.toggled ul#primary-menu {
		display: flex;
	}
}

/* -------------------- Header search -------------------- */
.nbj-header-search {
	position: relative;
	display: flex;
	align-items: center;
}

.nbj-search-toggle {
	background: none;
	border: none;
	padding: 4px;
	color: var(--gray-400);
	cursor: pointer;
	display: flex;
	align-items: center;
}

.nbj-search-toggle:hover,
.nbj-search-toggle[aria-expanded="true"] {
	color: var(--foxglove);
}

.nbj-search-form-wrap {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	max-width: calc(100vw - 32px);
	box-sizing: border-box;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 10px;
	padding: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	z-index: 110;
}

.nbj-search-form-wrap .search-form {
	max-width: none;
	width: 260px;
	box-sizing: border-box;
}

.nbj-search-form-wrap .search-form label {
	display: flex;
	width: 100%;
	min-width: 0;
}

.search-form .search-field {
	min-width: 0;
}

.search-form .search-submit {
	flex-shrink: 0;
}

@media (max-width: 680px) {
	.nbj-search-form-wrap {
		position: fixed;
		left: 16px;
		right: 16px;
		top: 60px;
		max-width: none;
		width: auto;
	}

	.nbj-search-form-wrap .search-form {
		width: 100%;
	}

	.admin-bar .nbj-search-form-wrap {
		top: 92px;
	}
}

/* -------------------- Ad banner (top) -------------------- */
.ad-banner {
	background: var(--gray-100);
	border-bottom: 1px solid var(--gray-200);
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ad-label {
	font-size: 11px;
	color: var(--gray-400);
	border: 1px dashed var(--gray-200);
	padding: 6px 16px;
	border-radius: 4px;
}

.ad-inline,
.ad-bottom {
	background: var(--gray-100);
	border: 1px dashed var(--gray-200);
	border-radius: 8px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 24px 0;
}

/* -------------------- Layout -------------------- */
.container {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 40px 20px;
	display: grid;
	grid-template-columns: 1fr 240px;
	gap: 40px;
	flex: 1 0 auto;
}

@media (max-width: 860px) {
	.container {
		grid-template-columns: 1fr;
		padding: 24px 20px;
	}
}

.site-main {
	min-width: 0;
}

/* -------------------- Post header (single) -------------------- */
.single .entry-header,
.page .entry-header {
	margin-bottom: 24px;
}

.nbj-category-tag {
	display: inline-block;
	background: var(--fuchsia);
	color: var(--white);
	font-size: 11px;
	font-weight: 500;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 12px;
	text-transform: lowercase;
}

.single .entry-title,
.page .entry-title {
	font-size: 26px;
	font-weight: 500;
	color: var(--black);
	line-height: 1.4;
	margin-bottom: 10px;
	letter-spacing: -0.3px;
}

.entry-meta {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
	font-size: 12px;
	color: var(--gray-400);
}

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

.entry-meta>span+span::before {
	content: '·';
	margin-right: 12px;
}

.nbj-divider {
	height: 2px;
	background: var(--fuchsia);
	width: 40px;
	border-radius: 2px;
	margin: 16px 0 24px;
}

/* -------------------- Post thumbnail -------------------- */
.single .post-thumbnail,
.page .post-thumbnail {
	border-radius: 12px;
	margin-bottom: 24px;
	overflow: hidden;
}

.single .post-thumbnail img,
.page .post-thumbnail img {
	width: 100%;
	border-radius: 12px;
}

/* -------------------- Entry content -------------------- */
.entry-content {
	font-size: 15px;
	color: var(--gray-600);
	line-height: 1.8;
}

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

.entry-content img {
	border-radius: 12px;
	margin: 16px 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	color: var(--black);
	font-weight: 600;
	line-height: 1.5;
	margin: 28px 0 12px;
}

.entry-content h1 {
	font-size: 24px;
}

.entry-content h2 {
	font-size: 21px;
}

.entry-content h3 {
	font-size: 19px;
}

.entry-content h4 {
	font-size: 17px;
}

.entry-content h5 {
	font-size: 16px;
}

.entry-content h6 {
	font-size: 14px;
	color: var(--fuchsia);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.entry-content>h1:first-child,
.entry-content>h2:first-child,
.entry-content>h3:first-child,
.entry-content>h4:first-child,
.entry-content>h5:first-child,
.entry-content>h6:first-child {
	margin-top: 0;
}

.entry-content ul {
	list-style: disc;
	margin: 0 0 16px 22px;
	padding: 0;
}

.entry-content ol {
	list-style: decimal;
	margin: 0 0 16px 22px;
	padding: 0;
}

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

.entry-content li>ul,
.entry-content li>ol {
	margin-top: 6px;
	margin-bottom: 0;
}

.entry-content a {
	color: var(--fuchsia);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.entry-content strong {
	color: var(--black);
	font-weight: 600;
}

/* -------------------- Entry footer (tags/categories) -------------------- */
.entry-footer {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
	margin: 24px 0;
	font-size: 12px;
}

.entry-footer .cat-links,
.entry-footer .tags-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}

.entry-footer a {
	font-size: 12px;
	padding: 4px 12px;
	border-radius: 20px;
	background: var(--white);
	color: var(--gray-600);
	border: 1px solid var(--gray-200);
	display: inline-block;
}

.entry-footer .cat-links a {
	background: var(--foxglove-light);
	color: var(--fuchsia);
	border-color: var(--foxglove-light);
}

.entry-footer .comments-link a,
.entry-footer .edit-link a {
	border: none;
	background: none;
	padding: 0;
	color: var(--gray-400);
}

/* -------------------- Sidebar -------------------- */
.widget-area {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.nbj-sidebar-ad {
	background: var(--gray-100);
	border: 1px dashed var(--gray-200);
	border-radius: 8px;
	height: min(400px, calc(100vh - 480px));
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: sticky;
	top: 80px;
}

.nbj-sidebar-ad span {
	font-size: 11px;
	color: var(--gray-400);
	text-align: center;
	line-height: 1.8;
}

.widget-area .widget,
.nbj-popular-posts {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 16px;
}

.widget-title,
.nbj-popular-posts .nbj-widget-title {
	font-size: 13px;
	font-weight: 500;
	color: var(--black);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.widget-title::before,
.nbj-popular-posts .nbj-widget-title::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	background: var(--fuchsia);
	border-radius: 50%;
}

.nbj-sidebar-post {
	display: flex;
	gap: 10px;
	margin-bottom: 12px;
	align-items: flex-start;
}

.nbj-sidebar-post:last-child {
	margin-bottom: 0;
}

.nbj-sidebar-post-thumb {
	width: 52px;
	height: 52px;
	background: var(--gray-100);
	border-radius: 6px;
	flex-shrink: 0;
	overflow: hidden;
}

.nbj-sidebar-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nbj-sidebar-post-title {
	font-size: 12px;
	color: var(--gray-600);
	line-height: 1.5;
	padding-top: 2px;
}

.nbj-sidebar-post-title a:hover {
	color: var(--fuchsia);
}

/* -------------------- Archive / search page header -------------------- */
.page-header {
	margin-bottom: 24px;
}

.page-header .page-title {
	font-size: 24px;
	font-weight: 500;
	color: var(--black);
	line-height: 1.4;
	letter-spacing: -0.3px;
}

.page-header .page-title span {
	color: var(--fuchsia);
}

.page-header::after {
	content: '';
	display: block;
	height: 2px;
	width: 40px;
	background: var(--fuchsia);
	border-radius: 2px;
	margin-top: 16px;
}

.archive-description {
	font-size: 13px;
	color: var(--gray-600);
	line-height: 1.6;
	margin-top: 10px;
}

/* -------------------- No results / search form -------------------- */
.no-results .page-content p {
	font-size: 14px;
	color: var(--gray-600);
	line-height: 1.7;
	margin-bottom: 20px;
}

.no-results .page-content a {
	color: var(--fuchsia);
	font-weight: 500;
}

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

.search-form label {
	display: flex;
	flex: 1;
	min-width: 0;
}

.search-form .search-field {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--gray-200);
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 13px;
	font-family: inherit;
	background: var(--white);
}

.search-form .search-submit {
	flex-shrink: 0;
}

.search-form .search-field:focus {
	outline: none;
	border-color: var(--fuchsia);
}

.search-form .search-submit {
	background: var(--fuchsia);
	color: var(--white);
	border: none;
	border-radius: 20px;
	padding: 0 22px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
}

.search-form .search-submit:hover {
	background: var(--fuchsia-dark);
}

/* -------------------- Post list (home / archive / search) -------------------- */
.post-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.home article.hentry,
.archive article.hentry,
.search article.hentry,
.blog article.hentry {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 16px;
}

.home .nbj-card-body,
.archive .nbj-card-body,
.search .nbj-card-body,
.blog .nbj-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.home .post-thumbnail,
.archive .post-thumbnail,
.search .post-thumbnail,
.blog .post-thumbnail {
	width: 220px;
	height: 165px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
	margin-bottom: 0;
}

.home .post-thumbnail img,
.archive .post-thumbnail img,
.search .post-thumbnail img,
.blog .post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home .entry-header,
.archive .entry-header,
.search .entry-header,
.blog .entry-header {
	margin-bottom: 6px;
}

.home .entry-title,
.archive .entry-title,
.search .entry-title,
.blog .entry-title {
	font-size: 17px;
	font-weight: 500;
	color: var(--black);
	line-height: 1.4;
}

.home .entry-title a:hover,
.archive .entry-title a:hover,
.search .entry-title a:hover,
.blog .entry-title a:hover {
	color: var(--fuchsia);
}

.home .entry-summary,
.archive .entry-summary,
.search .entry-summary,
.blog .entry-summary,
.home .entry-content,
.archive .entry-content,
.search .entry-content,
.blog .entry-content {
	font-size: 13px;
	color: var(--gray-600);
	line-height: 1.6;
	margin: 6px 0 8px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.home .entry-footer,
.archive .entry-footer,
.search .entry-footer,
.blog .entry-footer {
	margin: 6px 0 0;
}

.home .entry-footer .tags-links,
.archive .entry-footer .tags-links,
.search .entry-footer .tags-links,
.blog .entry-footer .tags-links {
	display: none;
}

@media (max-width: 480px) {

	.home article.hentry,
	.archive article.hentry,
	.search article.hentry,
	.blog article.hentry {
		flex-direction: column;
	}

	.home .post-thumbnail,
	.archive .post-thumbnail,
	.search .post-thumbnail,
	.blog .post-thumbnail {
		width: 100%;
		height: 180px;
	}
}

/* -------------------- Pagination -------------------- */
.navigation.post-navigation {
	display: flex;
	gap: 12px;
	justify-content: space-between;
	margin-top: 32px;
	font-size: 13px;
}

.navigation.post-navigation .nav-links {
	display: flex;
	gap: 12px;
	width: 100%;
	justify-content: space-between;
}

.navigation.post-navigation a {
	border: 1px solid var(--gray-200);
	border-radius: 6px;
	padding: 6px 14px;
	color: var(--gray-600);
}

.navigation.post-navigation a:hover {
	border-color: var(--fuchsia);
	color: var(--fuchsia-dark);
}

.navigation.pagination {
	margin-top: 32px;
}

.navigation.pagination .nav-links {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}

.navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	color: var(--gray-600);
	border: 1px solid var(--gray-200);
	border-radius: 8px;
	background-color: var(--white);
	box-sizing: border-box;
}

.navigation.pagination a.page-numbers:hover {
	border-color: var(--fuchsia);
	color: var(--fuchsia-dark);
}

span.page-numbers.current,
.navigation.pagination span.page-numbers.current {
	background-color: var(--fuchsia) !important;
	color: var(--white) !important;
	border-color: var(--fuchsia) !important;
	font-weight: 500 !important;
}

.navigation.pagination .page-numbers.dots {
	border: none;
	background: none;
	color: var(--gray-400);
}

.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
	color: var(--gray-600);
	font-weight: 500;
}

/* -------------------- Footer -------------------- */
.site-footer {
	background: var(--ink);
	padding: 24px 40px;
}

.site-footer .site-info {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.nbj-footer-logo {
	font-size: 15px;
	font-weight: 500;
	color: var(--foxglove);
}

.nbj-footer-links {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.nbj-footer-links a {
	font-size: 12px;
	color: var(--gray-600);
}

.nbj-footer-links a:hover {
	color: var(--foxglove);
}

.nbj-footer-copy {
	font-size: 11px;
	color: var(--gray-600);
}

/* -------------------- Comments -------------------- */
.comments-area {
	margin-top: 40px;
}

.comments-area .comments-title,
.comments-area .comment-reply-title {
	font-size: 16px;
	font-weight: 500;
	color: var(--black);
	margin-bottom: 16px;
}

.comments-area .comment-reply-title small a {
	font-size: 12px;
	color: var(--fuchsia);
	font-weight: 400;
	margin-left: 8px;
}

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

.comment-list .children {
	margin-left: 32px;
	margin-top: 12px;
}

.comment-list>li+li {
	margin-top: 12px;
}

.comment-body {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 16px;
}

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

.comment-author.vcard {
	display: flex;
	align-items: center;
	gap: 10px;
}

.comment-author.vcard img.avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	flex-shrink: 0;
}

.comment-author.vcard .fn {
	font-style: normal;
	font-size: 13px;
	font-weight: 500;
	color: var(--black);
}

.comment-metadata {
	font-size: 11px;
	color: var(--gray-400);
	margin-top: 2px;
}

.comment-metadata a {
	color: var(--gray-400);
}

.comment-metadata .edit-link a {
	color: var(--fuchsia);
	margin-left: 8px;
}

.comment-content {
	font-size: 13px;
	color: var(--gray-600);
	line-height: 1.7;
}

.comment-content p {
	margin: 0;
}

.comment-content p+p {
	margin-top: 10px;
}

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

.comment-list .comment-reply-link {
	font-size: 12px;
	font-weight: 500;
	color: var(--fuchsia);
	border: 1px solid var(--foxglove-light);
	background: var(--foxglove-light);
	border-radius: 20px;
	padding: 4px 12px;
	display: inline-block;
}

.comment-list .comment-reply-link:hover {
	background: var(--fuchsia);
	color: var(--white);
	border-color: var(--fuchsia);
}

.comment-awaiting-moderation {
	display: block;
	width: 100%;
	font-size: 12px;
	font-style: normal;
	color: var(--fuchsia);
	margin-top: 6px;
}

/* 비밀댓글 */
.nbj-secret-badge-wrap {
	margin-bottom: 8px;
}

.nbj-secret-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 500;
	color: var(--fuchsia);
	background: var(--foxglove-light);
	border-radius: 20px;
	padding: 2px 10px;
}

.nbj-secret-locked {
	display: block;
	font-size: 13px;
	color: var(--gray-400);
	font-style: italic;
}

.comment-form-secret {
	font-size: 12px;
	color: var(--gray-600);
	margin: -4px 0 14px;
}

.comment-form-secret input[type="checkbox"] {
	width: 15px;
	height: 15px;
	accent-color: var(--fuchsia);
	margin: 0;
}

.comment-form-secret-password {
	background: var(--foxglove-light);
	border-radius: 8px;
	padding: 10px 12px;
	margin: -4px 0 14px;
}

.comment-form-secret-password label {
	font-size: 11px;
	color: var(--fuchsia);
	margin-bottom: 6px;
}

.comment-form-secret-password input[type="password"] {
	width: 100%;
	border: 1px solid var(--gray-200);
	border-radius: 6px;
	padding: 8px 12px;
	font-size: 13px;
	font-family: inherit;
	background: var(--white);
}

.comment-form-secret-password input[type="password"]:focus {
	outline: none;
	border-color: var(--fuchsia);
}

.nbj-secret-unlock-form {
	display: flex;
	gap: 6px;
	margin-top: 8px;
	justify-content: center;
}

.nbj-secret-unlock-form input[type="password"] {
	border: 1px solid var(--gray-200);
	border-radius: 6px;
	padding: 6px 10px;
	font-size: 12px;
	font-family: inherit;
	max-width: 160px;
}

.nbj-secret-unlock-form input[type="password"]:focus {
	outline: none;
	border-color: var(--fuchsia);
}

.nbj-secret-unlock-form button {
	background: var(--fuchsia);
	color: var(--white);
	border: none;
	border-radius: 6px;
	padding: 6px 14px;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
}

.nbj-secret-unlock-form button:hover {
	background: var(--fuchsia-dark);
}

.nbj-secret-unlock-error {
	display: block;
	text-align: center;
	font-size: 11px;
	color: var(--fuchsia);
	margin-top: 6px;
}

.comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--gray-600);
	margin: 0 0 16px;
}

.comment-form-cookies-consent input[type="checkbox"] {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	accent-color: var(--fuchsia);
	margin: 0;
}

.comments-area .comment-reply-title {
	margin-top: 28px;
}

.comment-notes,
.logged-in-as {
	font-size: 12px;
	color: var(--gray-600);
	margin-bottom: 16px;
}

.logged-in-as a {
	color: var(--fuchsia);
}

.comment-form label {
	font-size: 12px;
	color: var(--gray-600);
	display: block;
	margin-bottom: 6px;
}

.comment-form-secret label,
.comment-form-cookies-consent label {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 0;
	cursor: pointer;
}

.comment-form .required {
	color: var(--fuchsia);
	text-decoration: none;
}

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

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	border: 1px solid var(--gray-200);
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 13px;
	font-family: inherit;
	background: var(--white);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--fuchsia);
}

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

.comment-form .form-submit input {
	background: var(--fuchsia);
	color: var(--white);
	border: none;
	border-radius: 20px;
	padding: 10px 24px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
}

.comment-form .form-submit input:hover {
	background: var(--fuchsia-dark);
}

/* -------------------- 404 -------------------- */
.error-404 .page-content>p {
	font-size: 14px;
	color: var(--gray-600);
	line-height: 1.7;
	margin-bottom: 20px;
}

.error-404 .search-form {
	margin-bottom: 32px;
}

.error-404 .widget {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 20px;
	max-width: 420px;
}

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

.error-404 .widget ul li {
	font-size: 13px;
	color: var(--gray-600);
	padding: 6px 0;
	border-bottom: 1px solid var(--gray-100);
}

.error-404 .widget ul li:last-child {
	border-bottom: none;
}

.error-404 .widget ul li a {
	color: var(--gray-600);
}

.error-404 .widget ul li a:hover {
	color: var(--fuchsia);
}

.error-404 .widget p {
	font-size: 13px;
	color: var(--gray-600);
	margin-top: 8px;
}

.error-404 .widget select {
	width: 100%;
	border: 1px solid var(--gray-200);
	border-radius: 8px;
	padding: 8px 12px;
	font-size: 13px;
	font-family: inherit;
	background: var(--white);
}

.error-404 .tagcloud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.error-404 .tagcloud a {
	font-size: 12px !important;
	color: var(--fuchsia);
	background: var(--foxglove-light);
	border-radius: 20px;
	padding: 4px 12px;
}

.error-404 .tagcloud a:hover {
	background: var(--fuchsia);
	color: var(--white);
}