.case-preview {
  padding: 31px 32px;
  border: 1px solid var(--color-blue-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .case-preview {
    padding: 24px 16px;
  }
}
.case-preview__content {
  margin-bottom: 24px;
  width: 92%;
}
@media screen and (max-width: 900px) {
  .case-preview__content {
    width: 100%;
  }
}
.case-preview__category {
  display: block;
  margin-bottom: 40px;
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);
}
.case-preview__image {
  height: 56px;
  width: 160px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}