.gable-well {
  display: block;
  border-top: 1px solid rgba(122, 47, 176, 0.2182);
  border-radius: 0px;
}
.gable-well:last-of-type { border-bottom: 1px solid rgba(122, 47, 176, 0.2182); }

.gable-well > summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  padding: 15px 15px;
  cursor: pointer;
  color: #fffefe;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}
.gable-well > summary::-webkit-details-marker { display: none; }
.gable-well > summary:focus-visible {
  outline: 2px solid rgba(252, 251, 247, 0.9);
  outline-offset: -3px;
}

.gable-well > summary > :first-child {
  margin: 0;
  font-size: inherit;
  line-height: 1.35;
}

.gable-answer {
  box-sizing: border-box;
  padding: 13px 15px 15px;
  color: #fefefc;
}
.gable-answer > :first-child { margin-top: 0; }
.gable-answer > :last-child { margin-bottom: 0; }

.gable-well.gable-awake .gable-answer {
  overflow: hidden;
  will-change: height;
}

.gable-well > summary {
  border-left: 2px solid transparent;
  transition: border-color 211ms linear, padding-left 211ms cubic-bezier(0.25, 0.8, 0.4, 1);
}
.gable-well[open] > summary {
  border-left-color: rgba(252, 251, 247, 0.95);
  padding-left: calc(15px + 13px);
}

.gable-well > summary::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(252, 251, 247, 0.55);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 211ms cubic-bezier(0.25, 0.8, 0.4, 1);
}
.gable-well[open] > summary::before { transform: scaleX(1); }

.gable-well > summary::after {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  background: rgba(252, 251, 247, 0.85);
  clip-path: polygon(22% 8%, 22% 92%, 88% 50%);
  transform: rotate(0deg);
  transition: transform 211ms cubic-bezier(0.25, 0.8, 0.4, 1);
}
.gable-well[open] > summary::after { transform: rotate(90deg); }
@media (prefers-reduced-motion: reduce) {
  .gable-well > summary::after,
  .gable-well > summary::before,
  .gable-well > summary { transition: none; }
}
