/* Artwork Component (Single Collection / Artwork List) */
.artwork-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

/* Single Artwork Module */
.artwork {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

/* Artwork Image Container */
.artwork__image-container {
  width: 100%;
  max-height: var(--artwork-max-height);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
}

.artwork__image {
  max-width: 100%;
  max-height: var(--artwork-max-height);
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Artwork Video */
.artwork__video {
  max-width: 100%;
  max-height: var(--artwork-max-height);
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Artwork Label (50/50 split) */
.artwork__label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.artwork__info-left {
  flex: 1;
  text-align: left;
}

.artwork__info-right {
  flex: 1;
  text-align: right;
}

.artwork__title {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height);
}

.artwork__details {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height);
}

/* Placeholder */
.artwork__placeholder {
  width: 100%;
  height: 500px;
  background-color: var(--color-placeholder);
}

/* Responsive */
@media (max-width: 640px) {
  .artwork__image-container {
    max-height: none;
  }

  .artwork__image {
    max-height: none;
    width: 100%;
    height: auto;
  }

  .artwork__video {
    max-height: none;
    width: 100%;
    height: auto;
  }

  .artwork__placeholder {
    height: 300px;
  }
}
