/**
 * Hexfy Blog — Knowledge Hub + detalle editorial
 * Feeling: nuevo.html / blog.html / detalle.html
 */

body.hexfy-blog,
body.hexfy-blog-hub,
body.hexfy-blog-single {
	--hx-bg: #faf8ff;
	--hx-surface: #ffffff;
	--hx-surface-low: #f2f3ff;
	--hx-surface-high: #e2e7ff;
	--hx-container: #eaedff;
	--hx-on: #131b2e;
	--hx-muted: #434655;
	--hx-outline: #747687;
	--hx-outline-soft: rgba(196, 197, 216, 0.35);
	--hx-primary: #2440d9;
	--hx-primary-soft: #3b66ff;
	--hx-primary-container: #dde1ff;
	--hx-inverse: #283044;
	--hx-tertiary: #a03c00;
	--hx-max: 80rem;
	--hx-pad: clamp(1rem, 4vw, 3rem);
	font-family: "Hanken Grotesk", system-ui, sans-serif;
	color: var(--hx-on);
	background: var(--hx-bg);
}

body.hexfy-blog .site-main,
body.hexfy-blog-hub .site-main,
body.hexfy-blog-single .site-main {
	max-width: none;
	margin: 0;
	padding: 0;
	background: var(--hx-bg);
}

body.hexfy-blog .page-header,
body.hexfy-blog-hub .page-header {
	display: none;
}

/* ========== Knowledge Hub ========== */
.hexfy-hub {
	width: 100%;
	padding-bottom: 2rem;
}

.hexfy-hub__intro {
	position: relative;
	overflow: hidden;
	padding: 2.5rem var(--hx-pad) 1.5rem;
}

.hexfy-hub__blobs span {
	position: absolute;
	border-radius: 9999px;
	filter: blur(64px);
	pointer-events: none;
}

.hexfy-hub__blobs span:first-child {
	top: -4rem;
	right: -4rem;
	width: 24rem;
	height: 24rem;
	background: rgba(36, 64, 217, 0.08);
}

.hexfy-hub__blobs span:last-child {
	bottom: -4rem;
	left: -4rem;
	width: 16rem;
	height: 16rem;
	background: rgba(200, 77, 0, 0.08);
}

.hexfy-hub__intro-inner {
	position: relative;
	z-index: 1;
	max-width: var(--hx-max);
	margin: 0 auto;
}

.hexfy-hub__kicker-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.hexfy-hub__kicker-line {
	width: 3rem;
	height: 2px;
	background: var(--hx-primary);
}

.hexfy-hub__kicker {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hx-primary);
}

.hexfy-hub__title {
	margin: 0 0 0.75rem;
	max-width: 48rem;
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: var(--hx-on);
}

.hexfy-hub__title em {
	font-style: italic;
	color: var(--hx-primary);
	font-weight: 700;
}

.hexfy-hub__lead {
	margin: 0;
	max-width: 40rem;
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--hx-muted);
}

.hexfy-hub__grid-wrap {
	padding: 0 var(--hx-pad) 2rem;
}

.hexfy-hub__grid {
	max-width: var(--hx-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 900px) {
	.hexfy-hub__grid {
		grid-template-columns: 2fr 1fr;
		align-items: start;
	}

	.hexfy-hub__featured {
		grid-column: 1;
		grid-row: 1;
	}

	.hexfy-hub__side {
		grid-column: 2;
		grid-row: 1;
	}

	.hexfy-hub__more {
		grid-column: 1 / -1;
	}
}

.hexfy-hub__side,
.hexfy-hub__more {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hexfy-hub__more {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.hexfy-hub__more {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.hexfy-hub__more {
		grid-template-columns: repeat(3, 1fr);
	}
}

.hexfy-hub__empty {
	grid-column: 1 / -1;
	color: var(--hx-muted);
}

.hexfy-hub__featured {
	border-radius: 0.75rem;
	overflow: hidden;
	background: var(--hx-surface-high);
	transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.hexfy-hub__featured:hover {
	box-shadow: 0 16px 40px rgba(19, 27, 46, 0.1);
}

.hexfy-hub__featured-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.hexfy-hub__media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--hx-container);
}

.hexfy-hub__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s ease;
}

.hexfy-hub__featured:hover .hexfy-hub__img,
.hexfy-hub__card:hover .hexfy-hub__img,
.hexfy-related-card:hover .hexfy-hub__img {
	transform: scale(1.05);
}

.hexfy-hub__img-fallback {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 10rem;
	background:
		radial-gradient(circle at 30% 30%, rgba(36, 64, 217, 0.25), transparent 55%),
		linear-gradient(135deg, var(--hx-surface-high), var(--hx-container));
}

.hexfy-hub__featured-body {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hexfy-hub__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.hexfy-hub__chip {
	display: inline-flex;
	padding: 0.25rem 1rem;
	border-radius: 9999px;
	background: var(--hx-primary-container);
	color: #0037ba;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.35;
}

.hexfy-hub__date {
	margin-left: auto;
	font-size: 0.75rem;
	color: var(--hx-outline);
}

.hexfy-hub__featured-title {
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.25;
	color: var(--hx-on);
	transition: color 0.25s ease;
}

.hexfy-hub__featured:hover .hexfy-hub__featured-title {
	color: var(--hx-primary);
}

.hexfy-hub__excerpt {
	margin: 0;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--hx-muted);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hexfy-hub__read {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--hx-primary);
}

.hexfy-hub__card {
	background: var(--hx-surface);
	border-radius: 0.75rem;
	padding: 1rem;
	box-shadow: 0 1px 4px rgba(19, 27, 46, 0.06);
	transition: box-shadow 0.3s ease;
}

.hexfy-hub__card:hover {
	box-shadow: 0 8px 24px rgba(19, 27, 46, 0.1);
}

.hexfy-hub__card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.hexfy-hub__card-media {
	aspect-ratio: 16 / 9;
	border-radius: 0.5rem;
	overflow: hidden;
	margin-bottom: 1rem;
	background: var(--hx-container);
}

.hexfy-hub__card-body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.hexfy-hub__label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--hx-primary);
}

.hexfy-hub__card-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--hx-on);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.25s ease;
}

.hexfy-hub__card:hover .hexfy-hub__card-title {
	color: var(--hx-primary);
}

.hexfy-hub__card-excerpt {
	margin: 0.25rem 0 0;
	font-size: 0.875rem;
	line-height: 1.45;
	color: var(--hx-muted);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hexfy-hub__card .hexfy-hub__date {
	margin: 0.5rem 0 0;
	margin-left: 0;
}

.hexfy-hub__cta {
	margin: 2rem var(--hx-pad);
	border-radius: 1rem;
	background: var(--hx-inverse);
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.hexfy-hub__cta-inner {
	position: relative;
	z-index: 1;
	max-width: var(--hx-max);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.hexfy-hub__cta-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.hexfy-hub__cta-title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: #fffcff;
}

.hexfy-hub__cta-text {
	margin: 0;
	max-width: 36rem;
	font-size: 1rem;
	line-height: 1.5;
	color: rgba(255, 252, 255, 0.8);
}

.hexfy-hub__cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	border-radius: 0.75rem;
	background: var(--hx-primary);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 12px 28px rgba(36, 64, 217, 0.35);
	transition: transform 0.2s ease, background 0.2s ease;
}

.hexfy-hub__cta-btn:hover {
	transform: scale(1.03);
	background: #1a34b8;
	color: #fff;
}

/* ========== Single / detalle ========== */
.hexfy-progress {
	position: fixed;
	top: 64px;
	left: 0;
	height: 3px;
	width: 0;
	z-index: 60;
	background: var(--hx-primary);
	pointer-events: none;
	transition: width 0.05s linear;
}

.hexfy-article-hero {
	position: relative;
	overflow: hidden;
	background: var(--hx-surface);
	border-bottom: 1px solid var(--hx-outline-soft);
	padding: 3rem var(--hx-pad) 2.5rem;
	max-width: var(--hx-max);
	margin: 0 auto;
}

.hexfy-blog-back {
	display: inline-flex;
	margin-bottom: 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--hx-primary);
	text-decoration: none;
}

.hexfy-blog-back:hover {
	text-decoration: underline;
}

.hexfy-blog-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.hexfy-blog-tag {
	display: inline-flex;
	padding: 0.35rem 1rem;
	border-radius: 9999px;
	background: var(--hx-primary-container);
	color: #001454;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease;
}

.hexfy-blog-tag:nth-child(2n) {
	background: #d0e1fb;
	color: #54647a;
}

.hexfy-blog-tag:hover {
	background: var(--hx-primary);
	color: #fff;
}

.hexfy-article-hero .entry-title {
	margin: 0 0 1.75rem;
	max-width: 56rem;
	font-family: "Hanken Grotesk", system-ui, sans-serif;
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: var(--hx-on);
}

.hexfy-article-byline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem;
}

.hexfy-article-author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.hexfy-article-avatar {
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	display: grid;
	place-items: center;
	background: var(--hx-surface-high);
	border: 1px solid var(--hx-outline-soft);
	font-weight: 700;
	color: var(--hx-primary);
}

.hexfy-article-author-name,
.hexfy-article-date {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--hx-on);
}

.hexfy-article-author-role,
.hexfy-article-read {
	margin: 0.15rem 0 0;
	font-size: 0.875rem;
	color: var(--hx-muted);
}

.hexfy-article-divider {
	width: 1px;
	height: 2rem;
	background: var(--hx-outline-soft);
}

.hexfy-article-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: var(--hx-max);
	margin: 0 auto;
	padding: 2.5rem var(--hx-pad) 4rem;
}

@media (min-width: 1024px) {
	.hexfy-article-layout {
		grid-template-columns: minmax(0, 2fr) minmax(16rem, 1fr);
		gap: 2rem;
		align-items: start;
	}
}

.hexfy-article-main .page-content,
.hexfy-article-main .entry-content {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--hx-muted);
}

.hexfy-article-main .page-content > *:first-child,
.hexfy-article-main .entry-content > *:first-child {
	margin-top: 0;
}

.hexfy-article-main .page-content h2,
.hexfy-article-main .entry-content h2 {
	margin: 2rem 0 0.85rem;
	font-size: 1.75rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--hx-on);
}

.hexfy-article-main .page-content h3,
.hexfy-article-main .entry-content h3 {
	margin: 1.5rem 0 0.75rem;
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--hx-on);
}

.hexfy-article-main .page-content p,
.hexfy-article-main .entry-content p {
	margin: 0 0 1.15rem;
}

.hexfy-article-main .page-content a,
.hexfy-article-main .entry-content a {
	color: var(--hx-primary);
}

.hexfy-article-main .page-content blockquote,
.hexfy-article-main .entry-content blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem 1.25rem 2rem;
	border-left: 4px solid var(--hx-primary);
	border-radius: 0 0.5rem 0.5rem 0;
	background: var(--hx-surface-low);
	font-size: 1.25rem;
	font-weight: 600;
	font-style: italic;
	color: var(--hx-on);
}

.hexfy-article-main .page-content ul,
.hexfy-article-main .entry-content ul {
	margin: 1rem 0 1.5rem;
	padding: 0;
	list-style: none;
}

.hexfy-article-main .page-content ul li,
.hexfy-article-main .entry-content ul li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.75rem;
}

.hexfy-article-main .page-content ul li::before,
.hexfy-article-main .entry-content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 9999px;
	background: var(--hx-primary);
	box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px var(--hx-primary);
}

.hexfy-article-main .post-thumbnail,
.hexfy-article-main .wp-post-image {
	display: block;
	width: 100%;
	border-radius: 0.75rem;
	overflow: hidden;
	margin: 0 0 1.75rem;
	box-shadow: 0 16px 40px rgba(19, 27, 46, 0.12);
}

.hexfy-article-main .post-thumbnail img,
.hexfy-article-main img.wp-post-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0.75rem;
}

.hexfy-article-aside-sticky {
	position: sticky;
	top: 5.5rem;
}

.hexfy-related-title {
	margin: 0 0 0.75rem;
	padding-left: 0.65rem;
	border-left: 3px solid var(--hx-primary);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--hx-on);
}

.hexfy-related-list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.hexfy-related-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
	background: var(--hx-surface);
	border-radius: 0.5rem;
	overflow: hidden;
	padding: 0.45rem;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 1px 3px rgba(19, 27, 46, 0.05);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hexfy-related-card:hover {
	box-shadow: 0 4px 14px rgba(19, 27, 46, 0.1);
	transform: translateY(-1px);
}

.hexfy-related-media {
	flex: 0 0 4.5rem;
	width: 4.5rem;
	height: 4.5rem;
	aspect-ratio: 1;
	border-radius: 0.4rem;
	overflow: hidden;
	background: var(--hx-container);
}

.hexfy-related-media .hexfy-hub__img,
.hexfy-related-media .hexfy-hub__img-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 0;
	transition: transform 0.4s ease;
}

.hexfy-related-card:hover .hexfy-hub__img {
	transform: scale(1.06);
}

.hexfy-related-body {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0.15rem 0.35rem 0.15rem 0;
}

.hexfy-related-body .hexfy-hub__label {
	font-size: 0.65rem;
	letter-spacing: 0.05em;
}

.hexfy-related-card-title {
	margin: 0.2rem 0 0;
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--hx-on);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s ease;
}

.hexfy-related-card:hover .hexfy-related-card-title {
	color: var(--hx-primary);
}

.hexfy-blog-cta {
	margin-top: 2rem;
	padding: 0.9rem 1.1rem;
	border-radius: 0.65rem;
	background: var(--hx-inverse);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (min-width: 720px) {
	.hexfy-blog-cta {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
	}
}

.hexfy-blog-cta__copy {
	min-width: 0;
	flex: 1 1 auto;
}

.hexfy-blog-cta__title {
	margin: 0 0 0.2rem;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.3;
	color: #fffcff;
}

.hexfy-blog-cta__text {
	margin: 0;
	color: rgba(255, 252, 255, 0.72);
	font-size: 0.78rem;
	line-height: 1.4;
}

.hexfy-blog-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1rem;
	border-radius: 0.5rem;
	background: var(--hx-primary);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
}

.hexfy-blog-cta__btn:hover {
	background: #1a34b8;
	color: #fff;
}

/* Comments — detalle.html aesthetic */
body.hexfy-blog-single .comments-area {
	margin-top: 2.5rem;
	padding: 1.75rem;
	border-top: none;
	border-radius: 0.75rem;
	background: var(--hx-surface);
	box-shadow: 0 4px 20px rgba(19, 27, 46, 0.06);
	border: 1px solid var(--hx-outline-soft);
}

body.hexfy-blog-single .comment-reply-title,
body.hexfy-blog-single .comments-title {
	margin: 0 0 1.25rem;
	font-family: "Hanken Grotesk", system-ui, sans-serif;
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--hx-on);
}

body.hexfy-blog-single .comment-reply-title small {
	font-size: 0.8rem;
	font-weight: 500;
}

body.hexfy-blog-single .comment-respond {
	margin: 0;
}

body.hexfy-blog-single .comment-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
	margin: 0;
}

body.hexfy-blog-single .comment-form > p {
	margin: 0;
}

body.hexfy-blog-single .comment-form .logged-in-as,
body.hexfy-blog-single .comment-form .comment-notes,
body.hexfy-blog-single .comment-form .required-field-message {
	font-size: 0.8rem;
	line-height: 1.45;
	color: var(--hx-muted);
}

body.hexfy-blog-single .comment-form .logged-in-as a,
body.hexfy-blog-single .comment-form .comment-notes a {
	color: var(--hx-primary);
	text-decoration: none;
	font-weight: 500;
}

body.hexfy-blog-single .comment-form .logged-in-as a:hover {
	text-decoration: underline;
}

body.hexfy-blog-single .comment-form label {
	display: block;
	margin: 0 0 0.35rem 0.15rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--hx-muted);
}

body.hexfy-blog-single .comment-form .required {
	color: var(--hx-primary);
}

body.hexfy-blog-single .comment-form input[type="text"],
body.hexfy-blog-single .comment-form input[type="email"],
body.hexfy-blog-single .comment-form input[type="url"],
body.hexfy-blog-single .comment-form textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--hx-outline-soft);
	border-radius: 0.5rem;
	background: var(--hx-bg);
	font-family: inherit;
	font-size: 0.95rem;
	line-height: 1.45;
	color: var(--hx-on);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	resize: vertical;
}

body.hexfy-blog-single .comment-form textarea {
	min-height: 7rem;
}

body.hexfy-blog-single .comment-form input:focus,
body.hexfy-blog-single .comment-form textarea:focus {
	outline: none;
	border-color: var(--hx-primary);
	box-shadow: 0 0 0 3px rgba(36, 64, 217, 0.15);
}

body.hexfy-blog-single .comment-form .form-submit {
	margin-top: 0.25rem;
}

body.hexfy-blog-single .comment-form .submit,
body.hexfy-blog-single .comment-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.35rem;
	border: none;
	border-radius: 0.5rem;
	background: var(--hx-primary);
	color: #fff;
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 6px 16px rgba(36, 64, 217, 0.25);
}

body.hexfy-blog-single .comment-form .submit:hover,
body.hexfy-blog-single .comment-form input[type="submit"]:hover {
	background: #1a34b8;
}

@media (min-width: 720px) {
	body.hexfy-blog-single .comment-form-author,
	body.hexfy-blog-single .comment-form-email {
		display: inline-block;
		width: calc(50% - 0.45rem);
		vertical-align: top;
	}

	body.hexfy-blog-single .comment-form-author {
		margin-right: 0.9rem;
	}
}

body.hexfy-blog-single .comment-list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

body.hexfy-blog-single .comment-list .comment {
	margin: 0;
}

body.hexfy-blog-single .comment-body {
	display: flex;
	gap: 0.85rem;
	padding: 1rem;
	border-radius: 0.65rem;
	background: var(--hx-surface-low);
}

body.hexfy-blog-single .comment-author .avatar {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 9999px;
	object-fit: cover;
}

body.hexfy-blog-single .comment-meta {
	margin-bottom: 0.35rem;
}

body.hexfy-blog-single .comment-author .fn {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--hx-on);
	font-style: normal;
}

body.hexfy-blog-single .comment-metadata,
body.hexfy-blog-single .comment-metadata a {
	font-size: 0.75rem;
	color: var(--hx-muted);
	text-decoration: none;
}

body.hexfy-blog-single .comment-content p {
	margin: 0 0 0.5rem;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--hx-muted);
}

body.hexfy-blog-single .reply a {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--hx-primary);
	text-decoration: none;
}

body.hexfy-blog-single #respond {
	margin-top: 0;
}
