.comments-block {
  width: min(100% - 2rem, var(--container-narrow));
  margin: 0 auto var(--space-16);
  display: grid;
  gap: var(--space-6);
}

.comments-block__title {
  color: var(--color-text);
}

.comment-form-custom {
  display: grid;
  gap: var(--space-4);
}

.comment-form-comment {
  display: grid;
  gap: var(--space-2);
}

.comment-form-comment label {
  color: var(--color-text);
  font-size: var(--font-size-sm);
  font-weight: 700;
}

.comment-form-custom input[type="text"],
.comment-form-custom input[type="email"],
.comment-form-custom input[type="url"],
.comment-form-custom textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-card);
  color: var(--color-text);
  font-family: var(--font-family-body);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-base);
}

.comment-form-custom input[type="text"]:focus,
.comment-form-custom input[type="email"]:focus,
.comment-form-custom input[type="url"]:focus,
.comment-form-custom textarea:focus {
  outline: none;
  border-color: var(--color-primary-500);
}

.comment-form-custom label {
  color: var(--color-text);
  font-family: var(--font-family-accent);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.comment-form-custom .form-submit .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-8);
  border: none;
  border-radius: var(--radius-full);
  background: var(--color-primary-500);
  color: var(--color-text-inverse);
  font-family: var(--font-family-accent);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-base);
}

.comment-form-custom .form-submit .submit:hover {
  background: var(--color-primary-700);
}
