@layer components {
  .image-gallery__thumb {
    position: relative;
    display: inline-block;
  }

  .image-gallery__remove-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    padding: 0;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
  }

  .image-gallery__remove-btn .icon {
    width: 18px;
    height: 18px;
  }

  .image-gallery--marked img {
    opacity: 0.3;
  }

  .image-gallery--marked .image-gallery__remove-btn {
    background: var(--color-danger-100, #fecaca);
  }
}
