.single_1__comments {
  padding-top: 60px;
}
#comments {
  margin-bottom: 16px;
}
.comment-list {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 16px;
}
.comment-form > * {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.comment-author img {
  border-radius: 50%;
}
.comment-author cite {
  font-style: normal;
  margin-right: -4px;
}
.commentmetadata a {
  display: block;
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
  color: var(--slate-500);
  margin-top: 8px;
}
.comment-body {
  padding: 32px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: var(--box-shadow-warm);
  width: fit-content;
}
.comment-body p {
  margin-top: 8px;
}
.comment-reply-title {
  margin-top: 32px;
}
.comment-form label {
  display: block;
  margin-bottom: 8px;
  font-size: calc(14 / 16 * 1rem);
  line-height: 20px;
  color: var(--slate-700);
}
.comment-form input {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--slate-500);
  border-radius: 4px;
  font-size: calc(16 / 16 * 1rem);
  line-height: 24px;
  font-weight: normal;
  color: var(--slate-700);
}
.comment-form input:focus-within {
  outline: 2px solid var(--slate-500);
  outline-offset: 2px;
}
.comment-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--slate-500);
  border-radius: 4px;
  font-size: calc(16 / 16* 1rem);
  line-height: 24px;
  font-weight: normal;
  color: var(--slate-700);
  resize: vertical;
  min-height: 120px;
  height: 120px;
  max-height: 320px;
}
.comment-form textarea:focus-within {
  outline: 2px solid var(--slate-500);
  outline-offset: 2px;
}
.comment-form .required {
  color: red;
  margin-left: -2px;
}
.comment-form input[type=submit] {
  width: fit-content;
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: calc(14 / 16* 1rem);
  line-height: 20px;
  padding: 8px 14px;
  color: var(--slate-700);
  background-color: var(--slate-50);
  border: 2px solid var(--slate-50);
  border-radius: 8px;
  transition: transform 250ms;
  font-weight: 600;
  min-height: 44px;
  margin-top: 8px;
}
.comment-form input[type=submit]:hover {
  background-color: var(--slate-100);
  border: 2px solid var(--slate-100);
}
.reply {
  display: none;
}