.rjg-problem-solved {
  box-sizing: border-box;
  margin: 32px 0 10px;
  padding: 22px;
  border: 1px solid #d9e5ec;
  border-left: 4px solid #19448e;
  border-radius: 4px;
  background: #f8fbfd;
}

.rjg-problem-solved__question {
  margin: 0 0 14px;
  color: #102333;
  font-size: 21px;
  line-height: 1.4;
}

.rjg-problem-solved__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rjg-problem-solved__button {
  min-width: 112px;
  padding: 10px 18px;
  border: 2px solid #19448e;
  border-radius: 4px;
  background: #fff;
  color: #19448e;
  font: inherit;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
}

.rjg-problem-solved__button:hover,
.rjg-problem-solved__button:focus-visible {
  outline: 3px solid #f2c94c;
  outline-offset: 2px;
  background: #19448e;
  color: #fff;
}

.rjg-problem-solved__button[disabled] {
  border-color: #9aa8b4;
  background: #eef2f5;
  color: #64727e;
  cursor: default;
}

.rjg-problem-solved__button[aria-pressed='true'] {
  border-color: #19448e;
  background: #19448e;
  color: #fff;
}

.rjg-problem-solved__status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: #334b5c;
  font-size: 15px;
}

@media (max-width: 600px) {
  .rjg-problem-solved {
    padding: 18px;
  }

  .rjg-problem-solved__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .rjg-problem-solved__button {
    min-width: 0;
    width: 100%;
  }
}

