.live-comments {
  margin-top: 2.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line, #d8dedb);
}

.live-comments h2,
.live-comments h3 {
  margin: 0;
  color: var(--ink, #173128);
}

.live-comments h2 {
  font-size: clamp(1.6rem, 4vw, 2.15rem);
}

.live-comments-intro {
  margin: 0.55rem 0 1.5rem;
  color: var(--muted, #5c6f67);
}

.live-comment-list,
.live-comment-children {
  list-style: none;
  margin: 0;
  padding: 0;
}

.live-comment-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.live-comment-children {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.85rem;
  padding-left: clamp(0.75rem, 4vw, 2rem);
  border-left: 2px solid #dfe8e3;
}

.live-comment-card {
  border: 1px solid #d8dfdb;
  border-radius: 10px;
  background: #fff;
  padding: 1rem 1.05rem;
}

.live-comment-card.is-admin {
  border-color: #aabeb5;
  background: #f3f7f5;
}

.live-comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.7rem;
  margin-bottom: 0.65rem;
}

.live-comment-meta strong {
  color: var(--ink, #173128);
}

.live-comment-badge {
  border-radius: 999px;
  background: #dfeae5;
  padding: 0.1rem 0.5rem;
  color: #285d49;
  font-size: 0.75rem;
  font-weight: 700;
}

.live-comment-meta time {
  color: var(--muted, #5c6f67);
  font-size: 0.85rem;
}

.live-comment-body {
  margin: 0;
  white-space: pre-wrap;
}

.live-comment-reply {
  margin-top: 0.7rem;
  border: 0;
  background: transparent;
  color: #285d49;
  padding: 0;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.live-comment-empty,
.live-comment-loading {
  margin: 0 0 1.5rem;
  color: var(--muted, #5c6f67);
}

.live-comment-form {
  display: grid;
  gap: 1rem;
  max-width: 680px;
  border-radius: 12px;
  background: #f4f7f5;
  padding: clamp(1rem, 4vw, 1.5rem);
}

.live-comment-form h3 {
  font-size: 1.3rem;
}

.live-comment-replying {
  display: none;
  margin: -0.35rem 0 0;
  color: #285d49;
  font-size: 0.9rem;
}

.live-comment-replying.is-visible {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.live-comment-cancel {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.live-comment-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.live-comment-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink, #173128);
  font-size: 0.92rem;
  font-weight: 700;
}

.live-comment-form input,
.live-comment-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #bac7c1;
  border-radius: 7px;
  background: #fff;
  color: #173128;
  padding: 0.72rem 0.8rem;
  font: inherit;
}

.live-comment-form textarea {
  min-height: 140px;
  resize: vertical;
}

.live-comment-form input:focus,
.live-comment-form textarea:focus {
  outline: 3px solid rgb(40 93 73 / 20%);
  border-color: #285d49;
}

.live-comment-help {
  margin: -0.4rem 0 0;
  color: var(--muted, #5c6f67);
  font-size: 0.84rem;
}

.live-comment-submit {
  justify-self: start;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: #1d4938;
  color: #fff;
  padding: 0 1.15rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.live-comment-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.live-comment-status {
  min-height: 1.4em;
  margin: 0;
  color: #285d49;
  font-weight: 700;
}

.live-comment-status.is-error {
  color: #8b2f2f;
}

.live-comment-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 600px) {
  .live-comment-fields {
    grid-template-columns: 1fr;
  }
}


.post-signature {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 3rem auto 2rem;
  text-align: center;
}

.post-signature img {
  display: block;
  width: min(180px, 55vw);
  height: auto;
  margin: 0 auto;
  opacity: 0.9;
}
