/* -------- RESET -------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* -------- TYPE -------- */
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #000;
  background: #fff;
}

.caption {
  font-size: 12px;
  margin-top: 4px;
  color: #000;
}

.text a {
  color: #000;
  text-decoration: none;
}

.text a:hover {
  text-decoration: underline;
}


/* -------- LAYOUT -------- */
.wrapper {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
}

/* -------- HEADER -------- */
header {
  margin-bottom: 25px;
}

.site-name {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 10px;
}

/* -------- NAV -------- */
nav {
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}

nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #000;
}

nav a.active {
  text-decoration: underline;
}

/* -------- SHOW LIST -------- */
.show-list {
  margin: 40px 0;
}

.show-list li {
  list-style: none;
  margin-bottom: 6px;
}

.show-list a {
  text-decoration: none;
  color: #000;
}

.show-list a:hover {
  text-decoration: underline;
}

/* -------- IMAGE GRID -------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.grid a {
  display: block;
}

.grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* -------- TEXT PAGES -------- */
.text {
  max-width: 650px;
  margin-top: 40px;
}

/* -------- ARTWORK PAGE -------- */
.artwork {
  max-width: 800px;
  margin-top: 40px;
}

.artwork img {
  width: 100%;
  margin-bottom: 15px;
}

.artwork-meta {
  font-size: 12px;
}

/* -------- FOOTER -------- */
footer {
  margin-top: 80px;
  font-size: 11px;
  color: #888;
}

/* -------- MOBILE -------- */
@media (max-width: 700px) {

  body {
    font-size: 14px;
  }

  .wrapper {
    margin: 20px auto;
  }

  .site-name {
    font-size: 18px;
    margin-bottom: 12px;
  }

  nav a {
    margin-right: 14px;
  }

  .show-list {
    margin: 30px 0;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .caption {
    font-size: 11px;
  }

  .text {
    max-width: 100%;
  }

  footer {
    margin-top: 60px;
  }
}

