.check-field {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.check-field:hover {
  background: rgba(255, 255, 255, 0.55);
}

.check-field.is-checked {
  border-color: var(--ink);
  background: rgba(26, 46, 36, 0.06);
}

.check-field__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-field__box {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border: 1.5px solid var(--line-strong);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--success);
  background: var(--bg-elevated);
}

.check-field.is-checked .check-field__box {
  border-color: var(--success);
  background: rgba(47, 93, 69, 0.1);
}

.check-field__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.check-field__title {
  font-size: 1.02rem;
  font-weight: 600;
}

.check-field__desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.4;
}
