*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #1a1a1a;
  --text: #e8e8e8;
  --accent: #c0392b;
  --muted: #888;
  --font: 'Times New Roman', Times, serif;
  --indent: 2em;
}

html {
  background: var(--bg);
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

main {
  padding: 48px 56px 80px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  margin-bottom: 2.4em;
}

header h1 {
  font-size: 1em;
  font-weight: normal;
  color: var(--text);
  margin-bottom: 0;
}

header .contact a {
  color: var(--accent);
}

header .meta {
  color: var(--text);
}

/* Header image */
#header-top {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 0;
}

#header-img {
  height: 2.8em;
  width: auto;
  border: 1px solid #fff;
  padding: 0;
  background: #fff;
  display: block;
  flex-shrink: 0;
}

/* Page layout */
#page {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2em;
  position: relative;
}

#left-col {
  flex: 1;
}

/* Bio */
#bio {
  margin-top: 1.2em;
  max-width: 580px;
}

/* Injury image */
#injury-img {
  width: 80px;
  height: auto;
  display: block;
  position: absolute;
  bottom: 0.65em;
  right: 0;
}

/* Are.na excerpt */
#arena-excerpt {
  max-width: 320px;
  font-size: 0.88em;
  color: var(--muted);
  line-height: 1.5;
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

#arena-excerpt a {
  color: var(--muted);
  font-size: 0.85em;
}

@media (max-width: 680px) {
  #top {
    flex-direction: column;
  }
  #arena-excerpt {
    text-align: left;
    max-width: 100%;
  }
}

/* Works list */
#works {
  margin-bottom: 0;
}

.entry-header {
  margin-bottom: 0.65em;
  margin-top: 0.3em;
  color: var(--muted);
  text-decoration: underline;
}

.entry {
  margin-bottom: 0.65em;
}

.entry .title {
  font-style: italic;
}

.entry .links a {
  color: var(--accent);
}


.entry .sub {
  display: block;
  padding-left: 1.5em;
  color: var(--muted);
  font-size: 0.93em;
  margin-top: 0.1em;
}

/* Entry image grid */
.entry-images {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.6em;
}

.entry-images img {
  height: 120px;
  width: auto;
  object-fit: cover;
  display: block;
}

/* Are.na section */
#arena {
  margin-top: 3em;
  border-top: 1px solid #333;
  padding-top: 1.5em;
}

#arena h2 {
  font-size: 1em;
  font-weight: normal;
  color: var(--accent);
  margin-bottom: 1em;
}

.arena-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.arena-block {
  width: 160px;
  height: 160px;
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  color: var(--muted);
  text-align: center;
  padding: 8px;
}

.arena-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arena-block a {
  color: var(--muted);
  font-size: 0.85em;
}

@media (max-width: 600px) {
  body {
    padding: 24px 20px 60px;
  }
}
