@font-face {
  font-family: "Faustina";
  font-weight: normal;
  src: url("/fonts/Faustina/woff2/Faustina-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Faustina";
  font-weight: bold;
  src: url("/fonts/Faustina/woff2/Faustina-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Faustina";
  font-weight: 300;
  src: url("/fonts/Faustina/woff2/Faustina-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Faustina";
  font-weight: normal;
  font-style: italic;
  src: url("/fonts/Faustina/woff2/Faustina-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Heliotrope 3";
  font-weight: normal;
  src: url("/fonts/Heliotrope/Heliotrope 3/heliotrope_3_regular.woff2") format("woff2");
}
@font-face {
  font-family: "Heliotrope 3 Caps";
  font-weight: normal;
  src: url("/fonts/Heliotrope/Heliotrope 3 Caps/heliotrope_3_caps_regular.woff2") format("woff2");
}
@font-face {
  font-family: "Heliotrope 3 Caps";
  font-weight: bold;
  src: url("/fonts/Heliotrope/Heliotrope 3 Caps/heliotrope_3_caps_bold.woff2") format("woff2");
}
@font-face {
  font-family: "Heliotrope 4";
  font-weight: normal;
  src: url("/fonts/Heliotrope/Heliotrope 4/heliotrope_4_regular.woff2") format("woff2");
}
body {
  background-color: rgb(255, 242, 215);
  color: black;
  font-family: "Faustina", "Liberation Serif", serif;
  font-weight: normal;
}
body header {
  display: grid;
  grid-template-columns: 1fr min(98%, 700px) 1fr;
}
body header * {
  grid-column: 2;
}
body main {
  display: grid;
  grid-template-columns: 1fr min(98%, 700px) 1fr;
}
body main * {
  grid-column: 2;
}
body main article.artwork-listitem {
  grid-column: 1/-1;
  display: grid;
  --left-pc: 0.625;
  --max-content-width: 800px;
  grid-template-columns: 1fr min(100% * var(--left-pc), var(--max-content-width) * var(--left-pc)) min(100% * (1 - var(--left-pc)), var(--max-content-width) * (1 - var(--left-pc))) 1fr;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.8);
  padding-bottom: 2ch;
  margin-bottom: 8ch;
}
body main article.artwork-listitem .artwork-info-container {
  grid-column: 3;
  align-self: end;
  margin-bottom: 3ch;
  margin-left: 3ch;
}
body main article.artwork-listitem .artwork-info-container .artwork-header .artwork-title {
  font-size: 2.5em;
  font-family: "Heliotrope 4", "Faustina", serif;
}
body main article.artwork-listitem .artwork-info-container .artwork-desc-container {
  grid-column: 3;
  align-self: end;
}
body main article.artwork-listitem .artwork-info-container .artwork-desc-container p {
  margin: 0.4ch;
  text-align: left;
  width: max(40%, 200px);
  color: rgba(0, 0, 0, 0.8);
}
body main article.artwork-listitem .artwork-info-container .price {
  color: hsla(0deg, 0%, 0%, 0.7);
  margin-top: 0.8ch;
}
body main article.artwork-listitem .artwork-info-container .price span {
  font-family: "Faustina", serif;
  font-size: 0.9rem;
  margin-right: 0.4ch;
}
body main article.artwork-listitem .artwork-info-container .price a.inquire {
  --price-button-color: 0deg 25% 40%;
  border: 1px solid hsl(var(--price-button-color));
  border-radius: 0.3ch;
  color: var(--price-button-color);
  font-size: small;
  font-family: "Heliotrope 3", "Faustina", serif;
  background-color: transparent;
  transition: 0.3s;
  text-decoration: none;
  padding: 0.2ch 0.4ch 0.2ch 0.4ch;
}
body main article.artwork-listitem .artwork-info-container .price a.inquire:hover {
  background-color: hsl(var(--price-button-color)/0.1);
  transition: 0.3s;
}
body main article.artwork-listitem figure.artwork {
  margin: 0;
  padding: 0;
  grid-column: 2;
}
body footer {
  display: grid;
  grid-template-columns: 1fr min(98%, 700px) 1fr;
  margin-top: 5em;
  padding-bottom: 4ch;
  font-size: 0.7em;
  letter-spacing: 0.15em;
}
body footer * {
  grid-column: 2;
}

header > nav {
  margin-top: 1ch;
  margin-bottom: 6ch;
  padding-bottom: 3ch;
  border-bottom: 1px solid black;
  font-family: "Heliotrope 3 Caps";
  font-weight: normal;
  font-size: 1.1rem;
}

body > header > h1 {
  font-weight: lighter;
  letter-spacing: 0.2ch;
  font-size: 3.5em;
  margin-bottom: 0.5ch;
}

header > nav > .button {
  border: 1px solid black;
  text-decoration: none;
  color: inherit;
  font-size: 0.85em;
  text-transform: uppercase;
  padding: 1ch 1ch 1ch 1ch;
  margin-right: 1ch;
  transition: 0.2s;
}

header > nav > .button:hover {
  box-shadow: 3px 3px 5px gray;
  transform: translateX(-1px) translateY(-1px);
  transition: 0.2s;
}