:root {
  --bg-color: #ffffff;
  --text-main: #000000;
  --text-muted: #666666;
  --font-pixel: 'Silkscreen', monospace;
  --font-mono: 'Courier New', Courier, monospace;
}

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

body {
  position: relative;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-mono);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 1.5rem 3rem 1.5rem;
  -webkit-font-smoothing: none;
}

/* TOP LEFT HOME BUTTON */
.home-btn {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-pixel);
  font-size: 0.75rem;
  color: var(--text-main);
  text-decoration: none;
  text-transform: lowercase;
}

.home-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

/* CONTAINER */
.page-wrapper {
  width: 100%;
  max-width: 650px;
}

/* HEADER WITH FLEXBOX ALIGNMENT */
.gatherings-header {
  border-bottom: 2px solid #000000;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gatherings-title {
  font-family: var(--font-pixel);
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
}

.gatherings-subtitle {
  font-family: var(--font-pixel);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
}

/* NAV LINKS */
.external-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: inline-block;
  font-family: var(--font-pixel);
  font-size: 0.6875rem;
  color: var(--text-main);
  text-decoration: none;
  text-transform: lowercase;
  transition: all 0.15s ease;
}

.social-link:hover {
  background-color: #000000;
  color: #ffffff;
}

/* SHOW LIST */
.show-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.show-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed #cccccc;
  gap: 1rem;
}

/* REMOVED BOTTOM BORDER FROM LAST ITEM IN LIST */
.show-item:last-child {
  border-bottom: none;
}

.show-details {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.show-date {
  font-family: var(--font-pixel);
  font-size: 0.75rem;
  color: #000000;
  white-space: nowrap;
  min-width: 65px;
}

.show-info {
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.4;
}

/* DOUBLE-LINE FRAMED YEAR DIVIDER */
.year-divider {
  font-family: var(--font-pixel);
  font-size: 0.85rem;
  text-align: center;
  margin: 1.5rem 0 1.25rem 0;
  padding: 0.5rem 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  letter-spacing: 0.1em;
}

/* FOOTNOTE */
.show-footnote {
  margin-top: 1.25rem;
  font-family: var(--font-pixel);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: lowercase;
}