.hall-exhibit {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-2);
}

.hall-back-link {
  justify-self: start;
}

.hall-exhibit .hall-entry {
  width: min(100%, 34rem);
  margin: 0 auto;
}

.hall-of-fame {
  display: grid;
  gap: calc(var(--space-6) * 1.5);
  margin-top: var(--space-4);
  padding-top: calc(var(--space-6) * 1.15);
  border-top: 1px solid var(--line);
}

.hall-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2) var(--space-4);
  width: min(100%, 34rem);
  margin: 0 auto;
}

.hall-intro h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 5vw, 1.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
}

.hall-deck {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hall-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(var(--space-6) * 1.75);
  width: min(100%, 34rem);
  margin: 0 auto;
}

.hall-entry {
  display: grid;
  gap: var(--space-2);
  min-width: 0;
}

.hall-entry-meta {
  justify-self: center;
  color: rgba(60, 60, 67, 0.62);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.2;
}

.hall-conversation {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.18rem;
  width: 100%;
  padding: var(--space-2) 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
}

.hall-message {
  position: relative;
  width: fit-content;
  max-width: min(78%, 27rem);
  padding: 0.42rem 0.68rem 0.48rem;
  border-radius: 1.15rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: -0.012em;
}

.hall-message-group-start:not(:first-child) {
  margin-top: 0.34rem;
}

.hall-message p {
  margin: 0;
  overflow-wrap: anywhere;
}

.hall-message-out {
  justify-self: end;
  color: #fff;
  background: #0a84ff;
}

.hall-message-in {
  justify-self: start;
  color: #000;
  background: #e9e9eb;
}

.hall-message-out.hall-message-group-end {
  border-bottom-right-radius: 0.38rem;
}

.hall-message-in.hall-message-group-end {
  border-bottom-left-radius: 0.38rem;
}

.hall-message-out.hall-message-group-end::after,
.hall-message-in.hall-message-group-end::after {
  content: "";
  position: absolute;
  bottom: 0.02rem;
  width: 0.62rem;
  height: 0.7rem;
  background: inherit;
}

.hall-message-out.hall-message-group-end::after {
  right: -0.28rem;
  border-bottom-right-radius: 0.58rem;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.hall-message-in.hall-message-group-end::after {
  left: -0.28rem;
  border-bottom-left-radius: 0.58rem;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.hall-open-link {
  justify-self: end;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
  text-decoration: none;
}

.hall-open-link:hover,
.hall-open-link:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.hall-empty {
  width: min(100%, 34rem);
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

@media (max-width: 36rem) {
  .hall-message {
    max-width: 84%;
    font-size: 0.98rem;
  }
}
