.artists-page,
.artist-profile-page,
.artist-work-page {
  color: #303030;
}
.artists-count {
  margin-bottom: 24px;
  color: #372a1e;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 20px;
}
.artist-card {
  min-width: 0;
  border: 1px solid #e5e1d6;
  background: #ffffff;
}
.artist-card-photo,
.artist-profile-photo {
  display: block;
  overflow: hidden;
  background: #f1eee7;
}
.artist-card-photo {
  position: relative;
  aspect-ratio: 1 / 1;
}
.artist-card-photo.is-loading::before,
.artist-work-photo.is-loading::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  border: 3px solid #d8d2c7;
  border-top-color: #c55e24;
  border-radius: 50%;
  content: '';
  transform: translate(-50%, -50%);
  animation: artist-image-spinner .8s linear infinite;
}
@keyframes artist-image-spinner {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.artist-card-photo img,
.artist-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.artist-card-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #bdb7ac;
  font-size: 64px;
}
.artist-card-body {
  min-height: 154px;
  padding: 15px 12px 17px;
  box-sizing: border-box;
}
.artist-card h3 {
  margin-bottom: 8px;
}
.artist-card h3 a:hover,
.artist-card-link:hover,
.artist-profile-back:hover {
  color: #c55e24;
}
.artist-card p {
  margin-bottom: 5px;
  color: #606060;
  font-size: 13px;
  line-height: 18px;
}
.artist-card .artist-card-brand {
  color: #372a1e;
  font-weight: 700;
}
.artist-card-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-top: 21px;
  color: #372a1e;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}
.artists-message {
  padding: 45px 0;
  text-align: center;
}
.artists-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
.artists-pagination-top {
  margin: 0 0 32px;
}
.artists-pagination a {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e1d6;
  background: #ffffff;
  color: #372a1e;
  font-size: 13px;
  font-weight: 700;
}
.artists-pagination a:hover,
.artists-pagination a.active {
  border-color: #c55e24;
  background: #c55e24;
  color: #ffffff;
}
.artist-profile-back {
  display: inline-block;
  margin-bottom: 24px;
  color: #372a1e;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}
.artist-profile {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: 54px;
}
.artist-profile-photo {
  /*height: 460px;*/
  align-self: start;
}
.artist-profile-info h2 {
  margin-bottom: 8px;
}
.artist-profile-info > p {
  margin-bottom: 6px;
  color: #606060;
}
.artist-profile-brand {
  color: #372a1e !important;
  font-weight: 700;
}
.artist-profile-text {
  margin-top: 32px;
}
.artist-profile-text h3 {
  margin-bottom: 10px;
}
.artist-profile-text p,
.artist-profile-info blockquote {
  font-size: 14px;
  line-height: 22px;
}
.artist-profile-expandable.is-collapsed .artist-profile-expandable-content {
  max-height: 110px;
  overflow: hidden;
}
.artist-profile-read-more {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  color: #372a1e;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}
.artist-profile-read-more:hover {
  color: #c55e24;
}
.artist-profile-read-more[hidden] {
  display: none;
}
.artist-profile-info blockquote {
  margin-top: 30px;
  padding-left: 20px;
  border-left: 3px solid #c55e24;
  color: #606060;
  font-style: italic;
}
.artist-works {
  margin-top: 60px;
  padding-top: 34px;
  border-top: 1px solid #e5e1d6;
}
.artist-works-title {
  margin-bottom: 24px;
}
.artist-works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 20px;
}
.artist-work {
  min-width: 0;
  border: 1px solid #e5e1d6;
  background: #ffffff;
}
.artist-work-link {
  display: block;
  color: inherit;
}
.artist-work-link[href]:hover h4 {
  color: #c55e24;
}
.artist-work-photo {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f1eee7;
}
.artist-work-sold {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 145%;
  padding: 10px 0;
  background: rgba(197, 94, 36, .92);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 24px;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-32deg);
}
.artist-work-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.artist-work-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #bdb7ac;
  font-size: 48px;
}
.artist-work-info {
  padding: 17px 16px 19px;
}
.artist-work-info h4 {
  margin-bottom: 15px;
  color: #372a1e;
}
.artist-work-info dl > div {
  display: grid;
  grid-template-columns: minmax(80px, .75fr) minmax(0, 1.25fr);
  gap: 10px;
  padding: 6px 0;
  border-top: 1px solid #eeeae1;
  font-size: 12px;
  line-height: 17px;
}
.artist-work-info dt {
  color: #8a8378;
  font-weight: 700;
  text-transform: uppercase;
}
.artist-work-info dd {
  min-width: 0;
  color: #3f3f3f;
  overflow-wrap: anywhere;
}
.artist-work-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr);
  gap: 48px;
}
.artist-work-page .artist-profile-back {
  text-transform: uppercase;
}
.artist-work-detail-photo {
  position: relative;
  overflow: hidden;
  align-self: start;
  background: #f1eee7;
  text-align: center;
}
.artist-work-detail-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.artist-work-detail-info h2 {
  margin-bottom: 12px;
}
.artist-work-detail-artist {
  display: inline-block;
  margin-bottom: 6px;
  color: #372a1e;
  font-size: 16px;
  font-weight: 700;
}
.artist-work-detail-artist:hover {
  color: #c55e24;
}
.artist-work-detail-brand {
  margin-bottom: 22px;
  color: #606060;
}
.artist-work-detail-description {
  margin: 24px 0;
  color: #4c4c4c;
  font-size: 14px;
  line-height: 22px;
}
.artist-work-detail-info dl > div {
  display: grid;
  grid-template-columns: minmax(100px, .75fr) minmax(0, 1.25fr);
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid #eeeae1;
  font-size: 13px;
  line-height: 19px;
}
.artist-work-detail-info dt {
  color: #8a8378;
  font-weight: 700;
  text-transform: uppercase;
}
.artist-work-detail-info dd {
  min-width: 0;
  color: #3f3f3f;
  overflow-wrap: anywhere;
}
@media (max-width: 979px) {
  .artists-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .artist-profile {
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: 35px;
  }
  .artist-profile-photo {
    /*height: 340px;*/
  }
  .artist-works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .artist-work-detail {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .artists-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .artist-profile {
    grid-template-columns: 1fr;
  }
  .artist-profile-photo {
    /*height: 420px;*/
  }
  .artist-works {
    margin-top: 42px;
  }
  .artist-work-detail {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 479px) {
  .artists-grid {
    grid-template-columns: 1fr;
  }
  .artist-profile-photo {
    /*height: 300px;*/
  }
  .artist-works-grid {
    grid-template-columns: 1fr;
  }
}
