.hero-artwork,
.about-photo,
.mini-artwork,
.work-card-media,
.detail-art {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #f4f0ed;
}

.hero-artwork {
  width: min(100%, 560px);
  aspect-ratio: 1600 / 1212;
  align-self: center;
}

.hero-artwork img,
.about-photo img,
.mini-artwork img,
.work-card-media img,
.detail-art img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-artwork picture,
.about-photo picture,
.mini-artwork picture,
.work-card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.detail-art picture {
  display: grid;
  width: 100%;
  place-items: center;
}

.hero-artwork img {
  object-fit: contain;
}

.about-photo {
  aspect-ratio: 4 / 5;
}

.about-photo img {
  object-fit: cover;
  object-position: center 35%;
}

.mini-artwork {
  width: min(100%, 380px);
  aspect-ratio: 2 / 3;
  justify-self: center;
}

.mini-artwork img,
.work-card-media img,
.detail-art img {
  object-fit: contain;
}

.work-card-media {
  aspect-ratio: 1;
  margin-bottom: 12px;
  border: 1px solid rgba(24, 18, 31, 0.08);
}

.work-card-media img {
  transition: transform 0.25s ease;
}

.work-card:hover .work-card-media img {
  transform: scale(1.025);
}

.work-card-copy p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 11px;
  line-height: 1.5;
}

.work-card-copy em {
  margin-left: 0;
}

.work-title-en {
  display: block;
  min-height: 1.5em;
  color: currentColor;
  font-size: 12px;
  opacity: 0.7;
}

.work-card-copy small {
  display: block;
  margin-top: 5px;
}

.detail-art {
  aspect-ratio: auto;
  display: grid;
  place-items: center;
  padding: 12px;
}

.detail-art img {
  height: auto;
  max-height: 76vh;
}

.detail-title-en {
  margin: -18px 0 24px;
  color: #766073;
  font-size: 14px;
}

.detail-description-en {
  margin-top: -10px;
  color: #665a68;
  font-size: 13px;
}

.detail-note {
  margin: 16px 0 28px;
  color: #766073;
  font-size: 12px;
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) clamp(420px, 42vw, 560px);
    column-gap: clamp(48px, 7vw, 104px);
    padding-inline: clamp(72px, 9vw, 180px);
  }

  .hero-artwork {
    width: 100%;
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .hero-artwork {
    width: 100%;
  }

  .about-photo {
    width: 100%;
    max-height: 560px;
  }

  .mini-artwork {
    width: min(100%, 350px);
  }

  .detail-art {
    width: 100%;
    padding: 8px;
  }
}
