.attachments-previews, .existing-attachments {
  display: flex;
  align-items: baseline;
  flex-flow: row wrap;
  justify-content: space-around;

  .attachments--preview {
    max-width: 350px;
    flex-basis: 35%;
  }

  figure {
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    padding: 0.25rem;
    position: relative;

    .remove-attachment-image-button {
      background-color: var(--danger);
      color: var(--white);
      position: absolute;
      right: -1.5rem;
      top: -0.8rem;
    }
  }
}
