:root {
  --bg: var(--base);
  --panel: rgba(255, 255, 255, .06);
  --panel2: rgba(255, 255, 255, .04);
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .68);
  --hair: rgba(255, 255, 255, .12);
  --focus: rgba(255, 255, 255, .22);
  --radius: var(--radius-m);
  --radius2: var(--radius-m);
  --shadow: 0 14px 44px rgba(0, 0, 0, .1);
  --max: 980px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 80ch;
}

.section {
  margin-top: 26px;
  padding: 18px 0 0;
}

.section-title {
  margin: 16px 0 12px;
  font-size: var(--text-m);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--primary);
}

.accordion {
  border: 1px solid var(--hair);
  background: rgba(255, 255, 255, .03);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  text-wrap: wrap !important;
}

.acc-item+.acc-item {
  border-top: 1px solid var(--hair);
}

.acc-trigger {
  width: 100%;
  text-align: left;
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 18px;
  display: grid;
  cursor: pointer;
  align-items: start;
}

.acc-icon {
  transition: transform .25s ease, background .25s ease;
}

.acc-trigger[aria-expanded="true"] .acc-icon {
  transform: rotate(45deg);
}

.acc-trigger:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--focus);
}

.acc-title {
  font-weight: 400;
  letter-spacing: -0.01em;
  font-size: var(--text-m);
  margin: 0;
}

.acc-meta {
  color: var(--muted);
  font-size: var(--text-s);
  margin: 0;
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.acc-trigger[aria-expanded="true"] .acc-panel {
  margin-bottom: 18px;
}

.acc-inner {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: var(--grid-gap);
  margin-top: 14px;
}

@media (max-width: 760px) {
  .acc-trigger {
    grid-template-columns: 1fr;
  }

  .pill {
    justify-self: start;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

.block {
  width: 100%;
  border: 1px solid var(--hair);
  background: rgba(255, 255, 255, .03);
  border-radius: var(--radius2);
  padding: 14px 14px;
  margin-bottom: 16px;
}

.label {
  font-size: 12px;
  color: rgba(255, 255, 255, .66);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.text {
  margin: 0;
  color: rgba(255, 255, 255, .86);
}

.block ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.addr {
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, .86);
}

.addr .muted {
  color: var(--muted);
}

.dates {
  width: 100%;
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, .86);
}

a {
  color: rgba(255, 255, 255, .92);
  text-underline-offset: 3px;
}

a:hover {
  color: #fff;
}

.footer {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  padding: 0 6px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 760px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}