/* Artwork Show Page (Lightbox style) */

.artwork-show-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  height: 100vh;
  background-color: var(--shw);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: auto;
}

/* Header */
.artwork-show-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--semibreve) var(--minim);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.artwork-show-actions {
  display: flex;
  gap: var(--crotchet);
}

.artwork-close-icon {
  margin-left: auto;
}

/* Icons */
.artwork-action-icon {
  color: var(--mb);
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.artwork-action-icon:hover {
  opacity: 0.7;
}

/* Main Content */
.artwork-show-content {
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px var(--minim) 40px;
  width: 100%;
  overflow: visible;
  gap: var(--minim);
}

.artwork-display-image {
  max-width: 100%;
  max-height: calc(100dvh - 240px);
  max-height: calc(100vh - 240px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Typography */
.artwork-details {
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 40px;
}

.artwork-title {
  font-family: var(--font-serif);
  /* Using serif as per design */
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0;
  font-weight: 400;
}

.artwork-meta {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--black);
  margin: 0;
  font-weight: 400;
  text-align: center;
}

.artwork-year {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--black);
  margin: 0;
  font-weight: 400;
  margin-top: 18px;
  text-align: center;
}
