/**
 * PawPress – Single Post Stylesheet
 *
 * Styles specific to single post/article pages.
 * Loaded only on is_single() for performance.
 *
 * @package PawPress
 */

/* ==========================================================================
   1. Reading Progress Bar
   ========================================================================== */

.pw-progress {
	position: fixed;
	top: 70px;
	left: 0;
	width: 0;
	height: 3px;
	background-color: var(--pw-orange);
	z-index: 999;
	transition: width 0.1s linear;
	pointer-events: none;
}

@media (min-width: 1024px) {
	.pw-progress {
		top: 80px;
	}
}

/* ==========================================================================
   2. Post Header
   ========================================================================== */

.pw-post-header {
	position: relative;
	margin-bottom: 40px;
}

.pw-post-header__image {
	width: 100%;
	max-height: 400px;
	overflow: hidden;
	position: relative;
}

.pw-post-header__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pw-post-header__image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(
		to top,
		rgba(45, 45, 45, 0.6) 0%,
		transparent 100%
	);
	pointer-events: none;
}

.pw-post-header__content {
	max-width: var(--pw-reading-width);
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.pw-post-header__category {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--pw-brown);
	background-color: var(--pw-beige);
	padding: 6px 14px;
	border-radius: 4px;
	margin-bottom: 16px;
}

.pw-post-header__category a {
	color: inherit;
}

.pw-post-header__category a:hover {
	color: var(--pw-orange);
}

.pw-post-header__title {
	font-family: 'Outfit', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--pw-text);
	line-height: 1.25;
	margin-bottom: 20px;
}

.pw-post-header__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 0.85rem;
	color: var(--pw-text-light);
}

.pw-post-header__meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.pw-post-header__meta-item svg {
	width: 16px;
	height: 16px;
	opacity: 0.5;
}

.pw-post-header__author-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
}

.pw-post-header__author-name a {
	color: var(--pw-text);
	font-weight: 500;
}

.pw-post-header__author-name a:hover {
	color: var(--pw-orange);
}

@media (min-width: 768px) {
	.pw-post-header__image {
		max-height: 480px;
		border-radius: 0 0 var(--pw-radius) var(--pw-radius);
	}

	.pw-post-header__title {
		font-size: 2.2rem;
	}
}

@media (min-width: 1024px) {
	.pw-post-header__image {
		max-height: 500px;
	}

	.pw-post-header__title {
		font-size: 2.6rem;
	}

	.pw-post-header__content {
		padding-top: 8px;
	}
}

/* ==========================================================================
   3. Post Content
   ========================================================================== */

.pw-post-content {
	max-width: var(--pw-reading-width);
	margin: 0 auto 60px;
	padding: 0 20px;
}

/* Paragraphs */
.pw-post-content > p {
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 1.5em;
	color: var(--pw-text);
}

/* Headings */
.pw-post-content h2 {
	font-family: 'Outfit', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	margin-top: 2rem;
	margin-bottom: 0.75em;
	padding-top: 2rem;
	color: var(--pw-text);
	position: relative;
}

.pw-post-content h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.5em;
	padding-top: 1.5rem;
	color: var(--pw-text);
}

.pw-post-content h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: 1.25rem;
	margin-bottom: 0.5em;
	color: var(--pw-text);
}

.pw-post-content h5 {
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	margin-top: 1rem;
	margin-bottom: 0.4em;
}

.pw-post-content h6 {
	font-family: 'Outfit', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-top: 1rem;
	margin-bottom: 0.4em;
}

/* Heading anchor links */
.pw-post-content h2 .pw-heading-anchor,
.pw-post-content h3 .pw-heading-anchor {
	color: var(--pw-border);
	text-decoration: none;
	margin-left: 8px;
	font-size: 0.8em;
	opacity: 0;
	transition: opacity var(--pw-transition);
}

.pw-post-content h2:hover .pw-heading-anchor,
.pw-post-content h3:hover .pw-heading-anchor {
	opacity: 1;
}

/* Links in content */
.pw-post-content a {
	color: var(--pw-orange);
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 1px;
	transition: color var(--pw-transition), text-decoration-color var(--pw-transition);
}

.pw-post-content a:hover {
	color: var(--pw-orange-hover);
}

/* Lists */
.pw-post-content ul,
.pw-post-content ol {
	margin-bottom: 1.5em;
	padding-left: 1.5em;
}

.pw-post-content ul {
	list-style: disc;
}

.pw-post-content ol {
	list-style: decimal;
}

.pw-post-content li {
	margin-bottom: 0.5em;
	line-height: 1.7;
	font-size: 1.05rem;
}

.pw-post-content ul li::marker {
	color: var(--pw-orange);
}

.pw-post-content li ul,
.pw-post-content li ol {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

/* Blockquote */
.pw-post-content blockquote {
	border-left: 4px solid var(--pw-orange);
	background-color: var(--pw-beige);
	padding: 20px 24px;
	margin: 1.5em 0;
	border-radius: 0 var(--pw-radius-sm) var(--pw-radius-sm) 0;
	font-style: italic;
}

.pw-post-content blockquote p {
	margin-bottom: 0.5em;
	font-size: 1.08rem;
}

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

.pw-post-content blockquote cite {
	font-size: 0.9rem;
	color: var(--pw-text-light);
	font-style: normal;
	display: block;
	margin-top: 8px;
}

.pw-post-content blockquote cite::before {
	content: '— ';
}

/* Images */
.pw-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--pw-radius);
	margin: 0.5em 0;
}

.pw-post-content figure {
	margin: 2em 0;
}

.pw-post-content figcaption {
	font-size: 0.85rem;
	color: var(--pw-text-light);
	text-align: center;
	margin-top: 10px;
	line-height: 1.5;
}

/* Tables */
.pw-post-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5em 0;
	font-size: 0.95rem;
	overflow-x: auto;
	display: block;
}

.pw-post-content th,
.pw-post-content td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid var(--pw-border);
}

.pw-post-content th {
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	background-color: var(--pw-off-white);
}

.pw-post-content tr:nth-child(even) td {
	background-color: var(--pw-off-white);
}

/* Code */
.pw-post-content code {
	background-color: var(--pw-off-white);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.88em;
	font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

.pw-post-content pre {
	background-color: #1e1e1e;
	color: #d4d4d4;
	padding: 20px 24px;
	border-radius: var(--pw-radius-sm);
	overflow-x: auto;
	font-size: 0.88rem;
	line-height: 1.6;
	margin: 1.5em 0;
}

.pw-post-content pre code {
	background: transparent;
	padding: 0;
	color: inherit;
	font-size: inherit;
}

/* Horizontal rule */
.pw-post-content hr {
	border: none;
	border-top: 2px solid var(--pw-beige);
	width: 60%;
	margin: 2.5em auto;
}

/* Strong */
.pw-post-content strong {
	font-weight: 600;
}

/* WordPress alignment */
.pw-post-content .alignleft {
	float: left;
	margin: 0.5em 1.5em 1em 0;
	max-width: 50%;
}

.pw-post-content .alignright {
	float: right;
	margin: 0.5em 0 1em 1.5em;
	max-width: 50%;
}

.pw-post-content .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.pw-post-content .alignwide {
	margin-left: -60px;
	margin-right: -60px;
	max-width: calc(100% + 120px);
	width: calc(100% + 120px);
}

.pw-post-content .alignfull {
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	max-width: 100vw;
	width: 100vw;
}

/* WordPress blocks */
.pw-post-content .wp-block-image {
	margin: 2em 0;
}

.pw-post-content .wp-block-image figcaption {
	font-size: 0.85rem;
	color: var(--pw-text-light);
	text-align: center;
	margin-top: 8px;
}

.pw-post-content .wp-block-gallery {
	margin: 2em 0;
	gap: 8px;
}

.pw-post-content .wp-block-gallery .wp-block-image {
	margin: 0;
}

.pw-post-content .wp-block-quote {
	border-left: 4px solid var(--pw-orange);
	background-color: var(--pw-beige);
	padding: 20px 24px;
	margin: 1.5em 0;
	border-radius: 0 var(--pw-radius-sm) var(--pw-radius-sm) 0;
}

.pw-post-content .wp-block-quote.is-style-large {
	font-size: 1.2rem;
	padding: 28px 32px;
}

.pw-post-content .wp-block-quote cite {
	font-size: 0.85rem;
	color: var(--pw-text-light);
	font-style: normal;
}

.pw-post-content .wp-block-pullquote {
	border-top: 3px solid var(--pw-orange);
	border-bottom: 3px solid var(--pw-orange);
	padding: 2em 0;
	margin: 2em 0;
	text-align: center;
}

.pw-post-content .wp-block-pullquote blockquote {
	border: none;
	background: none;
	padding: 0;
}

.pw-post-content .wp-block-pullquote p {
	font-size: 1.3rem;
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
}

.pw-post-content .wp-block-embed {
	margin: 2em 0;
}

.pw-post-content .wp-block-embed__wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.pw-post-content .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: var(--pw-radius-sm);
}

.pw-post-content .wp-block-separator {
	border: none;
	border-top: 2px solid var(--pw-beige);
	width: 60%;
	margin: 2.5em auto;
}

.pw-post-content .wp-block-separator.is-style-dots {
	border: none;
	width: auto;
	text-align: center;
}

.pw-post-content .wp-block-separator.is-style-dots::before {
	content: '···';
	font-size: 1.5em;
	letter-spacing: 1em;
	color: var(--pw-border);
}

/* Clearfix for floats */
.pw-post-content::after {
	content: '';
	display: table;
	clear: both;
}

@media (max-width: 767px) {
	.pw-post-content .alignleft,
	.pw-post-content .alignright {
		float: none;
		margin: 1em auto;
		max-width: 100%;
	}

	.pw-post-content .alignwide {
		margin-left: -20px;
		margin-right: -20px;
		max-width: calc(100% + 40px);
		width: calc(100% + 40px);
	}
}

@media (min-width: 768px) {
	.pw-post-content > p {
		font-size: 1.1rem;
	}

	.pw-post-content h2 {
		font-size: 1.6rem;
	}

	.pw-post-content h3 {
		font-size: 1.3rem;
	}
}

/* ==========================================================================
   4. Table of Contents
   ========================================================================== */

.pw-toc {
	background-color: var(--pw-off-white);
	border-left: 3px solid var(--pw-orange);
	border-radius: 0 var(--pw-radius-sm) var(--pw-radius-sm) 0;
	padding: 20px 24px;
	margin: 2em 0;
	font-size: 0.9rem;
}

.pw-toc__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	user-select: none;
}

.pw-toc__title {
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: var(--pw-text);
	margin: 0;
}

.pw-toc__toggle {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pw-text-light);
	transition: transform var(--pw-transition);
}

.pw-toc__toggle svg {
	width: 16px;
	height: 16px;
}

.pw-toc--collapsed .pw-toc__toggle {
	transform: rotate(-90deg);
}

.pw-toc__list {
	margin-top: 12px;
	list-style: none;
}

.pw-toc--collapsed .pw-toc__list {
	display: none;
}

.pw-toc__list li {
	margin-bottom: 6px;
}

.pw-toc__list a {
	color: var(--pw-text-light);
	text-decoration: none;
	transition: color var(--pw-transition);
	display: block;
	padding: 3px 0;
}

.pw-toc__list a:hover,
.pw-toc__list a.pw-toc--active {
	color: var(--pw-orange);
}

/* Nested list (h3 items) */
.pw-toc__list ul {
	list-style: none;
	padding-left: 16px;
	margin-top: 4px;
}

@media (min-width: 1200px) {
	.pw-toc--sidebar {
		position: sticky;
		top: 100px;
		max-height: calc(100vh - 120px);
		overflow-y: auto;
	}
}

/* ==========================================================================
   5. Share Buttons
   ========================================================================== */

.pw-share {
	display: none;
}

.pw-share__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: var(--pw-white);
	transition: transform var(--pw-transition), opacity var(--pw-transition);
}

.pw-share__btn:hover {
	transform: scale(1.1);
	color: var(--pw-white);
}

.pw-share__btn svg {
	width: 18px;
	height: 18px;
}

.pw-share__btn--facebook {
	background-color: #1877F2;
}

.pw-share__btn--twitter {
	background-color: #14171A;
}

.pw-share__btn--pinterest {
	background-color: #E60023;
}

.pw-share__btn--email {
	background-color: #6B6B6B;
}

.pw-share__btn--copy {
	background-color: var(--pw-brown);
	position: relative;
}

.pw-share__btn--copy .pw-share__tooltip {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--pw-text);
	color: var(--pw-white);
	font-size: 0.75rem;
	padding: 4px 10px;
	border-radius: 4px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--pw-transition), visibility var(--pw-transition);
	pointer-events: none;
}

.pw-share__btn--copy .pw-share__tooltip--visible {
	opacity: 1;
	visibility: visible;
}

/* Desktop: fixed sidebar */
.pw-share--desktop {
	display: none;
}

@media (min-width: 1200px) {
	.pw-share--desktop {
		display: flex;
		flex-direction: column;
		gap: 10px;
		position: fixed;
		left: calc(50% - 440px);
		top: 50%;
		transform: translateY(-50%);
		z-index: 50;
	}
}

/* Mobile: fixed bottom bar */
.pw-share--mobile {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--pw-white);
	padding: 10px 20px;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
	z-index: 999;
}

.pw-share--mobile .pw-share__btn {
	width: 38px;
	height: 38px;
}

.pw-share--mobile .pw-share__btn svg {
	width: 16px;
	height: 16px;
}

@media (min-width: 1200px) {
	.pw-share--mobile {
		display: none;
	}
}

/* ==========================================================================
   6. Pinterest Save Button
   ========================================================================== */

.pw-pin-wrapper {
	position: relative;
	display: inline-block;
}

.pw-pin {
	position: absolute;
	top: 12px;
	right: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background-color: #E60023;
	color: var(--pw-white);
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--pw-transition), visibility var(--pw-transition);
	z-index: 5;
	cursor: pointer;
	text-decoration: none;
}

.pw-pin svg {
	width: 16px;
	height: 16px;
}

.pw-pin-wrapper:hover .pw-pin {
	opacity: 1;
	visibility: visible;
}

/* ==========================================================================
   7. Related Posts
   ========================================================================== */

.pw-related {
	padding: 50px 0;
	border-top: 1px solid var(--pw-border);
}

.pw-related__heading {
	font-family: 'Outfit', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 32px;
}

.pw-related__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 768px) {
	.pw-related__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.pw-related {
		padding: 70px 0;
	}

	.pw-related__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================================
   8. Author Box
   ========================================================================== */

.pw-author {
	border-top: 2px solid var(--pw-border);
	border-bottom: 2px solid var(--pw-border);
	padding: 32px 0;
	margin: 40px auto;
	max-width: var(--pw-reading-width);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-align: center;
}

.pw-author__avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.pw-author__name {
	font-family: 'Outfit', sans-serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--pw-text);
	margin-bottom: 6px;
}

.pw-author__name a {
	color: inherit;
}

.pw-author__name a:hover {
	color: var(--pw-orange);
}

.pw-author__bio {
	font-size: 0.9rem;
	color: var(--pw-text-light);
	line-height: 1.7;
	margin-bottom: 12px;
}

.pw-author__social {
	display: flex;
	gap: 10px;
}

.pw-author__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--pw-beige);
	color: var(--pw-text-light);
	transition: background-color var(--pw-transition), color var(--pw-transition);
}

.pw-author__social a:hover {
	background-color: var(--pw-orange);
	color: var(--pw-white);
}

.pw-author__social svg {
	width: 16px;
	height: 16px;
}

@media (min-width: 768px) {
	.pw-author {
		flex-direction: row;
		text-align: left;
		gap: 24px;
		padding: 36px 0;
	}

	.pw-author__avatar {
		width: 90px;
		height: 90px;
	}
}

/* ==========================================================================
   9. Newsletter CTA (In-Content)
   ========================================================================== */

.pw-newsletter-cta {
	background-color: var(--pw-beige);
	border-radius: var(--pw-radius);
	padding: 32px 24px;
	margin: 2.5em 0;
	text-align: center;
}

.pw-newsletter-cta__heading {
	font-family: 'Outfit', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--pw-text);
	margin-bottom: 8px;
}

.pw-newsletter-cta__text {
	font-size: 0.9rem;
	color: var(--pw-text-light);
	margin-bottom: 20px;
}

.pw-newsletter-cta .pw-newsletter__form {
	max-width: 420px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.pw-newsletter-cta {
		padding: 40px 36px;
	}

	.pw-newsletter-cta__heading {
		font-size: 1.4rem;
	}
}

/* ==========================================================================
   10. Post Navigation
   ========================================================================== */

.pw-post-nav {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 32px 0;
	max-width: var(--pw-reading-width);
	margin: 0 auto;
}

.pw-post-nav__link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	background-color: var(--pw-off-white);
	border-radius: var(--pw-radius-sm);
	text-decoration: none;
	transition: background-color var(--pw-transition);
}

.pw-post-nav__link:hover {
	background-color: var(--pw-beige);
}

.pw-post-nav__link--prev {
	flex-direction: row;
}

.pw-post-nav__link--next {
	flex-direction: row-reverse;
	text-align: right;
}

.pw-post-nav__arrow {
	flex-shrink: 0;
	color: var(--pw-orange);
}

.pw-post-nav__arrow svg {
	width: 20px;
	height: 20px;
}

.pw-post-nav__label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--pw-text-light);
	margin-bottom: 4px;
}

.pw-post-nav__title {
	font-family: 'Outfit', sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--pw-text);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (min-width: 768px) {
	.pw-post-nav {
		flex-direction: row;
		justify-content: space-between;
	}

	.pw-post-nav__link {
		flex: 1;
		max-width: 48%;
	}
}

/* ==========================================================================
   11. Comments overrides
   ========================================================================== */

.pw-comments {
	max-width: var(--pw-reading-width);
	margin: 0 auto;
	padding: 0 20px 60px;
}

.pw-comments .comments-title {
	font-family: 'Outfit', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 24px;
}

.pw-comments .comment-list {
	list-style: none;
}

.pw-comments .comment {
	padding: 20px 0;
	border-bottom: 1px solid var(--pw-border);
}

.pw-comments .comment-author {
	font-weight: 600;
}

.pw-comments .comment-author img {
	border-radius: 50%;
	margin-right: 10px;
}

.pw-comments .comment-body p {
	font-size: 0.95rem;
	line-height: 1.7;
}

.pw-comments .comment-reply-link {
	font-size: 0.8rem;
	color: var(--pw-orange);
	font-weight: 500;
}

.pw-comments .comment-respond {
	margin-top: 32px;
}

.pw-comments .comment-form input[type="text"],
.pw-comments .comment-form input[type="email"],
.pw-comments .comment-form input[type="url"],
.pw-comments .comment-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--pw-border);
	border-radius: var(--pw-radius-sm);
	font-size: 0.95rem;
	margin-top: 4px;
	outline: none;
	transition: border-color var(--pw-transition);
}

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

.pw-comments .comment-form label {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--pw-text);
}

.pw-comments .comment-form .form-submit input[type="submit"] {
	padding: 12px 28px;
	background-color: var(--pw-orange);
	color: var(--pw-white);
	border: none;
	border-radius: var(--pw-radius-sm);
	font-weight: 500;
	cursor: pointer;
	transition: background-color var(--pw-transition);
}

.pw-comments .comment-form .form-submit input[type="submit"]:hover {
	background-color: var(--pw-orange-hover);
}
