.userMediaItem {
  background-color: white;
  display: inline-block;
  border: 2px solid;
  height: auto;
  width: calc(100% - 2rem);
  margin: 0 1rem;
  padding: 1rem;
  position: relative;
  min-height: calc(66px + 2rem);
}

.userMediaItem__header {
  height: 40px;
  line-height: 40px;
  font-size: 1.8rem;
  padding: 0 1rem;
  color: white;
  font-weight: 600;
  text-align: right;
  position: relative;
}

.userMediaItem__content {
  display: block;
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  line-height: 24px;
  white-space: pre-line;
  text-align: left;
  text-decoration: none;
}

.userMediaItem__delete {
  position: absolute;
  display: block;
  color: white;
  padding: 0.6rem;  
  top: -1.1rem;
  right: -1.1rem;
  background-color: red;
  border-radius: 9999px;
  line-height: .85;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .userMediaItem__content {
    font-size: 1.6rem;
  }

  .userMediaItem__delete {
    top: -1.5rem;
    right: -1.5rem;
    padding: 0.7rem;  
  }  
}