/* Image-only Inspiration tiles with permission-aware hover recreation. */
.artwork-grid {
  gap: 2px !important;
  column-gap: 2px !important;
  row-gap: 2px !important;
  border-radius: 18px 18px 0 0 !important;
  overflow: hidden !important;
}
.artwork-card {
  position: relative !important;
  border: 0 !important;
  border-radius: 0 !important;
  margin-bottom: 2px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
  transform: none !important;
}
.artwork-grid:has(> .artwork-card:nth-child(-n + 4):last-child) > .artwork-card {
  margin-bottom: 0 !important;
}
.artwork-card::after,
.artwork-number,
.artwork-open,
.artwork-meta { display: none !important; }
.artwork-card:hover { box-shadow: none !important; transform: none !important; }
.artwork-image {
  position: relative !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: inherit !important;
  overflow: hidden !important;
}
.artwork-image img { object-fit: cover !important; }
.artwork-card:hover .artwork-image img,
.artwork-card:focus-within .artwork-image img {
  filter: brightness(.68) !important;
  transform: scale(1.025) !important;
}
.artwork-access { z-index: 6 !important; }
.artwork-hover-panel {
  position: absolute;
  z-index: 5;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px;
  padding: 18px 9px 8px;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(5, 6, 8, .9) 0, rgba(5, 6, 8, .5) 58%, rgba(5, 6, 8, 0) 100%);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
}
.artwork-card:hover .artwork-hover-panel,
.artwork-card:focus-within .artwork-hover-panel { opacity: 1; transform: none; }
.artwork-hover-author {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  gap: 5px;
}
.artwork-avatar {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
  color: #111318;
  font-size: 8.5px;
  font-weight: 800;
  text-transform: uppercase;
}
.artwork-hover-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}
.artwork-hover-copy strong,
.artwork-hover-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .52);
}
.artwork-hover-copy strong { font-size: 10.5px; font-weight: 750; }
.artwork-hover-copy span { color: rgba(255, 255, 255, .74); font-size: 8px; }
.artwork-recreate {
  min-height: 24px;
  padding: 0 7px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(0, 0, 0, .26);
  color: #101217;
  font-size: 9px;
  font-weight: 750;
  pointer-events: auto;
}
.artwork-recreate:hover { background: var(--accent); color: var(--accent-text); }
.artwork-recreate[aria-busy="true"] { cursor: wait; opacity: .78; }
html[data-prhub-filter="filtered"] .load-sentinel { display: none !important; }
@media (max-width: 760px) {
  .artwork-grid {
    gap: 2px !important;
    column-gap: 2px !important;
    row-gap: 2px !important;
    border-radius: 14px 14px 0 0 !important;
  }
  .artwork-card {
    border-radius: 0 !important;
    margin-bottom: 2px !important;
  }
  .artwork-hover-panel { gap: 4px; padding: 16px 8px 7px; }
  .artwork-avatar { flex-basis: 21px; width: 21px; height: 21px; }
  .artwork-recreate { min-height: 23px; padding-inline: 6px; }
}
@media (hover: none) {
  .artwork-hover-panel { opacity: 1; transform: none; }
  .artwork-image img { filter: brightness(.78) !important; }
}
@media (prefers-reduced-motion: reduce) {
  .artwork-hover-panel { transition: none; }
}
