.text-editions {
  margin: clamp(2rem, 5vw, 4rem) 0;
}

.text-editions__heading {
  margin-bottom: 1rem;
}

.text-editions__heading > :last-child {
  margin-bottom: 0;
}

.text-editions__tabs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.65rem;
  align-items: stretch;
}

.text-editions__choice {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.text-editions__tab {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(67, 52, 42, 0.22);
  border-radius: 1rem;
  background: #fff;
  color: #493b31;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.text-editions__choice:focus-visible + .text-editions__tab {
  outline: 3px solid #1369c2;
  outline-offset: 2px;
}

.text-editions__choice:checked + .text-editions__tab {
  border-color: #f08a4b;
  background: #fff3e8;
  box-shadow: 0 0 0 2px rgba(240, 138, 75, 0.14);
  color: #713913;
}

.text-editions__panel {
  display: none;
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  padding: clamp(1rem, 3vw, 1.75rem);
  border: 1px solid rgba(67, 52, 42, 0.16);
  border-radius: 1.25rem;
  background: #fffdf9;
  box-shadow: 0 0.8rem 2.4rem rgba(79, 55, 38, 0.08);
}

.text-editions__choice--audio:checked ~ .text-editions__panel--audio,
.text-editions__choice--full:checked ~ .text-editions__panel--full {
  display: block;
}

.text-editions__badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: 0 0 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #eaf7ef;
  color: #236b42;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.3;
}

.text-editions__note {
  margin: 0 0 1rem;
  color: #5f5147;
}

.text-editions__guide {
  margin: 0 0 1.25rem;
  padding: 1rem;
  border-left: 4px solid #f08a4b;
  border-radius: 0.75rem;
  background: #fff7ef;
}

.text-editions__guide h3,
.text-editions__guide p,
.text-editions__guide ol {
  margin-top: 0;
}

.text-editions__guide > :last-child,
.text-editions__guide ol > :last-child {
  margin-bottom: 0;
}

.text-editions__transcript,
.text-editions__full-copy {
  margin-top: 1rem;
}

.story-meta__audio-edition {
  flex-basis: 100%;
  color: #236b42;
  font-weight: 700;
}

@media (max-width: 640px) {
  .text-editions__tabs {
    grid-template-columns: 1fr;
  }

  .text-editions__panel {
    grid-column: 1;
  }
}

@media print {
  .text-editions__heading,
  .text-editions__choice,
  .text-editions__tab,
  .text-editions__panel--audio {
    display: none !important;
  }

  .text-editions__panel--full {
    display: block !important;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
