.usage-blocks {
  display: flex;
  gap: 32px;
}

.usage-block {
  border: 2px solid #c5c5c9;
  border-top: 5px solid #c5c5c9;
  flex: 1;
}

.usage-block.--do {
  border-top-color: #2ac371;
}

.usage-block.--dont {
  border-top-color: #da1217;
}

.usage-block__header {
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
}

.--do .usage-block__header {
  background-color: #ebf9f1;
}

.--dont .usage-block__header {
  background-color: #fbe7e8;
}

.usage-block__header .usage-block__title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 0 1rem;
  line-height: 1;
}

.--do .usage-block__title {
  color: #2ac371;
}

.--dont .usage-block__title {
  color: #da1217;
}

.usage-block__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.--do .usage-block__icon {
  background-color: #2ac371;
}

.--dont .usage-block__icon {
  background-color: #da1217;
}

.usage-block__icon svg {
  width: 16px;
  color: #fff;
}

.usage-block__inside {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px;
}

.usage-block img {
  display: block;
}

.usage-block__caption {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 5px;
}

.usage-block-image figure {
  padding: 0;
  margin: 0;
}