.ast-comments {
	background: var(--surface);
	border-top: 1px solid var(--border);
	position: relative;
	transition: opacity .18s ease, filter .18s ease;
}

.ast-comments.is-loading {
	opacity: .45;
	filter: saturate(.88);
	pointer-events: none;
}

.ast-comments-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.ast-comment {
	border-bottom: 1px solid var(--border);
	padding: 16px 0;
}

.ast-comment-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ast-comment-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.ast-comment-content {
	margin: 10px 0;
}

.ast-comment-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.ast-reaction-btn {
	background: var(--surface-alt);
	border: none;
	padding: 6px 10px;
	border-radius: 999px;
	cursor: pointer;
}

.ast-reaction-btn[data-active='1'] {
	background: var(--accent);
	color: #fff;
}

.ast-replies {
	padding-left: 20px;
	margin-top: 10px;
}

.ast-comment-form {
	margin-top: 12px;
}

.ast-comment-draft-indicator {
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.45;
	color: var(--muted);
	opacity: 1;
	transition: opacity .26s ease;
}

.ast-comment-draft-indicator.is-fading {
	opacity: 0;
}

.ast-comment-draft-indicator.is-saving {
	color: #d38a17;
}

.ast-comment-draft-indicator.is-saved,
.ast-comment-draft-indicator.is-restored {
	color: #2f89ff;
}

.ast-comments-load,
.ast-replies-load {
	margin-top: 12px;
}

.ast-replies {
	background: var(--surface-alt);
	padding: 12px;
	border-radius: 12px;
}

.ast-comment-author {
	font-weight: 600;
	margin-right: 8px;
}

.ast-comment-date {
	color: var(--muted);
	font-size: 12px;
}

.ast-comment-content {
	font-size: 15px;
}

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

.ast-comment-actions {
	row-gap: 8px;
}

.ast-reaction-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
}

.ast-reaction-btn span {
	font-weight: 600;
}

.ast-replies {
	margin-top: 10px;
	padding: 12px 16px;
	background: var(--surface-alt);
	border-radius: 12px;
}

.ast-comment-login {
	background: var(--surface-alt);
	padding: 16px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.ast-comment-form input,
.ast-comment-form textarea {
	width: 100%;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text);
}

.ast-comment-form label {
	font-weight: 600;
}

.ast-comments-load,
.ast-replies-load {
	font-size: 14px;
}

.ast-comments-load {
	margin-bottom: 12px;
}

.ast-comment-avatar {
	object-fit: cover;
}


.ast-reactions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}


.ast-comment-header {
	flex-wrap: wrap;
}


.ast-comment {
	padding: 14px 0;
}

.ast-comment[data-comment-id] {
	position: relative;
}

.ast-comment .ast-tag-pin {
	position: absolute;
	right: 0;
	top: 10px;
}

.ast-comment-tools {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

/* Comments edge-to-edge mobile v1.1.24 */
@media (max-width: 767px) {
	.single-post .ast-comments,
	.single-episode .ast-comments {
		padding-top: 0;
		padding-bottom: 0;
	}

	.single-post .ast-comments .ast-container,
	.single-episode .ast-comments .ast-container {
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.single-post .ast-comments-header,
	.single-post .ast-comments-list,
	.single-post .ast-comment-form,
	.single-post .ast-comment-login,
	.single-episode .ast-comments-header,
	.single-episode .ast-comments-list,
	.single-episode .ast-comment-form,
	.single-episode .ast-comment-login {
		padding-left: 14px;
		padding-right: 14px;
	}

	.single-post .ast-comment-login,
	.single-episode .ast-comment-login {
		border-radius: 0;
	}
}
