:root{
  --acid: #f2ea00;           /* acid yellow */
  --ink: #0c0c0c;
  --muted: rgba(12,12,12,.70);
  --bar: #0c0c0c;
  --white: #ffffff;
  --max: 860px;
  --gutter: clamp(16px, 4vw, 56px);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  background: var(--acid);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap{
  width: min(var(--max), calc(100% - 2*var(--gutter)));
  margin: 0 auto;
  padding: clamp(20px, 5vh, 72px) 0 clamp(28px, 6vh, 84px);
}

.mast{
  padding-bottom: 18px;
  border-bottom: 4px solid var(--bar);
  margin-bottom: 18px;
}

.title{
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-transform: none;
}

.authors{
  margin: 10px 0 0 0;
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--muted);
}

.dialogue{
  font-size: clamp(1.08rem, 2.1vw, 1.24rem);
  line-height: 1.6;
}

.turn{
  margin: 0 0 14px 0;
  max-width: 74ch;
}

.who{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2em;
  padding: 2px 8px 3px;
  margin-right: .5em;
  background: var(--bar);
  color: var(--white);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: .86em;
  transform: translateY(-1px);
}

.line{
  display: inline;
}

/* documentary plates */
.plate{
  margin: 18px 0 22px;
}

.bar{
  height: 10px;
  background: var(--bar);
}

.img{
  display: block;
  width: 100%;
  height: auto;
}

/* footer signature */
.foot{
  margin-top: 34px;
  padding-top: 18px;
  border-top: 4px solid var(--bar);
}

.signature{
  margin: 0;
  text-align: right;
}

.signature-link{
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: lowercase;
  font-size: 0.98rem;
}

.signature-link:hover{
  opacity: .78;
}

/* mobile */
@media (max-width: 420px){
  .turn{ margin-bottom: 16px; }
  .who{ min-width: 3.0em; }
  .bar{ height: 8px; }
}
