/**
 * Action component style.
 *
 * 1. The link title should not be displayed on the frontend. It's added to fix
 *    "Links do not have a discernible name" issue
 *    See https://web.dev/link-name/?utm_source=lighthouse&utm_medium=devtools
 */
.c-action [class^=action--] {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  padding: 0.5rem;
  color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 801px) {
  .c-action [class^=action--] {
    padding: 0.95rem;
  }
}
.c-action .action--enlarge {
  background-color: #000;
}
.c-action .action--download {
  background-color: #000;
  border: none;
}
.c-action .action--link {
  color: #fff;
  background-color: var(--c-link);
  border: none;
}
.c-action .action--link:hover {
  background-color: var(--c-link-hocus);
}
.c-action .action--link:active {
  background-color: var(--c-link-active);
}
.c-action .action__title {
  font-size: 0;
}
.c-action .icon {
  pointer-events: none;
}