.comment-form-room {
	display: grid;
	grid-gap: 24px;
	padding: 12px;
	background: var(--mirage-100);
	border-radius: 4px;
}

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

.comment-rating label {
	font-size: 18px;
	font-weight: 700;
	line-height: 27px;
}

.comment-star-rating {
	display: flex;
	align-items: center;
}

.comment-star-rating svg {
	width: 32px;
	height: 32px;
	color: var(--mirage-200);
	cursor: pointer;
	transition: color ease .1s, fill ease .1s;
}

.comment-star-rating svg.active,
.comment-star-rating svg.show {
	color: var(--pastel-green-500);
	fill: var(--pastel-green-500);
}

.comment-form-room input[type="text"], 
.comment-form-room input[type="email"], 
.comment-form-room textarea {
	width: 100%;
	height: 48px;
	font-size: 16px;
	padding: 0 12px;
	background: var(--mirage-50);
	border-radius: 8px;
	border: none;
	font-family: inherit;
	transition: all ease .1s;
}

.comment-form-room textarea {
	height: 160px;
	padding: 12px;
}

.comment-form-room input[type="text"]::placeholder, 
.comment-form-room input[type="email"]::placeholder, 
.comment-form-room textarea::placeholder {
	color: var(--mirage-300);
}

.comment-form-room .button {
	width: 100%;
}

.comment-form-room-title {
	display: none;
	margin-bottom: 14px;
}

.comment-form-room-title .typography-h1 {
	margin-bottom: 0;
}



.comment-item .comment-form-room-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.comment-item {
	padding: 0;
	margin-bottom: 12px;
}

.comment-item .children {
	position: relative;
	padding-left: 12px;
	margin: 12px 0 0 12px;
	border-left: 2px dashed var(--mirage-100);
}

.comment-wrapper {
	padding: 24px;
	background: var(--mirage-100);
	border-radius: 12px;
}

.comment-wrapper-moderation {
	background: var(--lochmara-100);
}

.comment-header {
	display: grid;
	grid-template-columns: 48px 1fr auto;
	align-items: center;
	grid-gap: 12px;
	margin-bottom: 24px;
}

.comment-avatar {
	height: 48px;
	border: 1px solid var(--mirage-400);
	overflow: hidden;
	border-radius: 12px;
}

.comment-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.comment-author {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 4px;
	word-break: break-all;
}

.comment-created {
	color: var(--mirage-950);
	opacity: .6;
}

.comment-header .room-rating .stars {
	font-size: 16px;
}

.comment-body {
	font-size: 16px;
	color: var(--mirage-950);
	opacity: .6;
	line-height: 24px;
	margin-bottom: 24px;
}

.comment-body p {
	font-size: 16px;
	color: var(--mirage-950);
}

.comment-awaiting-moderation {
	color: var(--thunderbird-600);
	font-weight: 600;
	margin-bottom: 12px;
}

.comment-footer__reply {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
}

.comment-footer__reply a,
#cancel-comment-reply-link {
	color: var(--pastel-green-500);
	font-size: 12px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
	border-bottom: 1px dashed var(--pastel-green-600);
	transition: color ease .1s, border ease .1s;
}

.comment-footer__reply a:hover,
#cancel-comment-reply-link:hover {
	color: var(--pastel-green-600);
	border-color: var(--pastel-green-600);
	text-decoration: none;
}

.comment-reply-count {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	height: 40px;
	font-size: 14px;
	color: var(--mirage950);
	border: 1px solid var(--blue-violet-200);
	border-radius: 8px;
}

.comment-item .comment-respond,
.comment-item ~ .comment-respond {
	margin: 0 0 12px 24px;
}

.comment--success {
	color: var(--white);
	background: var(--pastel-green-500);
	padding: 12px;
	margin-bottom: 12px;
	border-radius: 12px;
}

@media (min-width: 768px) {
	.comment-form-room {
		padding: 24px;
	}

	.comment-form-room .button {
		max-width: 140px;
	}
}