/* Gallery and My Pins card layout */
.view-gallery .view-content :where(ul) > li {
  display: flex;
  flex-direction: column;
}

.view-gallery .view-content :where(ul) > li > article {
  flex: 1 1 auto;
}

.view-gallery .view-content :where(ul) > li > .flag-pin {
  align-self: flex-end;
  margin-top: 1rem;
  margin-right: 1.25rem;
  margin-bottom: 1.25rem;
}

/* Pin and Unpin links */
.view-gallery .flag.flag-pin a {
  display: inline-flex;
  align-items: center;
  color: #096bdf;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.view-gallery .flag.flag-pin a:hover,
.view-gallery .flag.flag-pin a:focus {
  color: #052049;
}

/* Shared icon sizing */
.view-gallery .flag.flag-pin a::after {
  content: "";
  display: inline-block;
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.4rem;
  background-color: #096bdf;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(1px);
}
/* Black icon on hover/focus */
.view-gallery .flag.flag-pin a:hover::after,
.view-gallery .flag.flag-pin a:focus::after {
  background-color: #000;
}

/* Blue Pin icon */
.view-gallery .flag.flag-pin.action-flag a::after {
  -webkit-mask: url("/sites/narrativemed.ucsf.edu/files/2026-07/thumbtack-solid.png") center / contain no-repeat;
  mask: url("/sites/narrativemed.ucsf.edu/files/2026-07/thumbtack-solid.png") center / contain no-repeat;
}

/* Blue Unpin icon */
.view-gallery .flag.flag-pin.action-unflag a::after {
  -webkit-mask: url("/sites/narrativemed.ucsf.edu/files/2026-07/thumbtack-slash-solid.png") center / contain no-repeat;
  mask: url("/sites/narrativemed.ucsf.edu/files/2026-07/thumbtack-slash-solid.png") center / contain no-repeat;
}