.Picture {
  display: block;
  overflow: hidden;
  width: 100%;
}

.Picture img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
  }

.Picture-copyright {
  position: absolute;
  left: 0;
  padding: 2px 3px;
  background: var(--clr-greyLightest);
  color: var(--clr-black);
  opacity: 0;
  transition: opacity 250ms ease-in-out;
}

.Picture:hover .Picture-copyright {
  opacity: 1;
}

.Column > .Picture {
  position: relative;
}

.Picture--grayscale {
  filter: grayscale(100);
}

.Figure {
  position: relative;
}

.downloadIcon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  overflow: visible;
}

.downloadIcon svg {
    background-color: white;
  }

.downloadIcon .downloadIcon-label {
    position: absolute;
    z-index: 1;
    top: 100%;
    margin-top: 0.5rem;
    padding: 0.125rem 0.5rem;
    white-space: nowrap;
    background: white;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

.downloadIcon .downloadIcon-label::before {
      content: '';
      position: absolute;
      top: -12px;
      left: 50%;
      border-width: 6px;
      border-style: solid;
      border-color: transparent transparent white transparent;
      transform: translateX(-50%);
    }

.downloadIcon:hover svg {
      background-color: var(--clr-primary);
      fill: white;
    }

.downloadIcon:hover .downloadIcon-label {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

.downloadIcon.downloaded svg {
      background-color: var(--clr-primary);
      fill: white;
    }

.downloadIcon.downloaded .downloadIcon-label {
      opacity: 0;
      pointer-events: none;
      transform: translateY(4px);
    }
