.single-post-title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size:clamp(22px, 12.78px + 2.46vw, 60px);
	text-transform: uppercase;
	color: #fff;	
}

.single-post-content p {
	font-family: var(--second-family);
	font-weight: 300;
	font-size: 16px;
	line-height: 162%;
	color: #fff;
}

.single-post-content ol {
	font-family: var(--second-family);
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
	color: #fff;	
}

.single-post-content ol li {
	margin-bottom:30px;
}

.single-post-content ol li:last-child {
	margin-bottom:0px;
}

.single-post-content ol li::marker {
	color: var(--d430a7);
}

.single-post-leave-comment {
	
}

.comment-reply-title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size:clamp(22px, 12.78px + 2.46vw, 60px);
	text-transform: uppercase;
	color: #fff;	
}

.single-post-comment-user-email {
	display:flex;
	justify-content:space-between;
	/* gap:20px; */
	flex-wrap:wrap;
}

.single-post-comment-user-email p {
	width:49%;
}

.single-post-comment-user-email
input {
	background:transparent;
	border: 1px solid var(--823c80);
	border-radius: 10px;
	padding: 18px;
	font-family: var(--second-family);
	font-weight: 300;
	font-size: 16px;
	color: var(--823c80);
	width:100%;
}

.single-post-comment-user-email
input::placeholder {
	color: var(--823c80);
}

.single-post-comment-user-email
input:focus {
	outline:none;
}

.comment-form-comment
textarea {
	background:transparent;
	border: 1px solid var(--823c80);
	border-radius: 10px;
	padding: 18px;
	font-family: var(--second-family);
	font-weight: 300;
	font-size: 16px;
	color: var(--823c80);
	width:100%;	
}

.comment-form-comment
textarea::placeholder {
	color: var(--823c80);
}

.comment-form-comment
textarea:focus {
	outline:none;
}

.form-submit
input[type=submit] {
	border-radius: 10px;
	padding: 18px 26px;
	background: var(--d430a7);
	cursor:pointer;
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 18px;
	color: #fff;
	border:none;
}

/* Вывод комментариев */

.custom-comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.custom-comment-avatar img {
    border-radius: 4px;
    width: 80px;
    height: 80px;
}

.custom-comment-content {
    flex: 1;
}

.custom-comment-author {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.custom-comment-text {
    margin-bottom: 10px;
}

.custom-comment-meta {
	font-family: var(--second-family);
	font-weight: 300;
	font-size: 16px;
	line-height: 162%;
	color: #46434a;
}

.custom-comment-meta a {
	font-family: var(--second-family);
	font-weight: 300;
	font-size: 16px;
	line-height: 162%;
	color: var(--d430a7);
    margin-right: 10px;
}


.comment-list .children {
    margin-left: 40px;
    border-left: 2px solid #444;
    padding-left: 20px;
}
.custom-comment-reply-to {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 8px;
}

.single-post-content {
	display:flex;
	flex-wrap:wrap;
	align-items:flex-start;
}

.single-post-container-content {
	width:clamp(607px, 54.00px + 57.60vw, 1160px);
	padding-right:10px;
}

.content-of-the-entry {
	width:clamp(293px, 226.00px + 6.98vw, 360px);
	padding:20px;
	border-radius:10px;
	background: #1b1920;
}

.toc-box {
    margin-bottom: 40px;
}

.toc-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.toc-list {
    list-style: none;
    padding-left: 0;
    counter-reset: toc-counter;
}

.toc-item {
    margin-bottom: 10px;
    font-size: 16px;
}

.toc-h2 > a {
	font-family: var(--second-family);
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
	color: #fff;
}

.toc-h3 {
    padding-left: 20px;
    font-size: 15px;
}

.toc-h3 > a {
	font-family: var(--second-family);
	font-weight: 300;
	font-size: 12px;
	color: #fff;
}

.toc-item a {
    text-decoration: none;
}

.toc-item a:hover {
    text-decoration: underline;
}

.comments-title {
	padding-bottom:30px;
	font-family: var(--font-family);
	font-weight: 600;
	font-size: clamp(28px, 25.09px + 0.78vw, 40px);
	text-transform: uppercase;
	color: var(--d430a7);	
}

@media (max-width: 767px) {
	
	.content-of-the-entry {
		width:100%;
		order:-1;
		margin-bottom:15px;
	}
	
	.single-post-container-content {
		width:100%;
		padding-right:0px;
	}
	
	.custom-comment {
		flex-direction:column;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	
}