@charset "utf-8";

.wodge__radio {
  display: none;
}

.wodge__title {
  margin-bottom: 1.3em;
}

@media(max-width:650px) {
  .wodge__title {
    margin: 0;
  }

  .wodge__title label {
    padding: 1em 0;
    display: flex;
    justify-content: space-between;
    align-content: center;
  }

  .wodge__title label:focus {
    outline: 0;
  }

  .wodge__title label:after {
    content: "⮟";
    margin-right: 30px;
    font-size: 20px;
  }

  .wodge__content {
    overflow: hidden;
    max-height: 0;
    transition-property: max-height,visibility;
    transition-duration: .5s,0s;
    transition-timing-function: ease-out,linear;
    transition-delay: 0s,.5s;
    visibility: hidden;
  }

  :checked+.wodge__item>.wodge__title label::after {
    content: "⮝";
  }

  :checked+.wodge__item>.wodge__content {
    max-height: 90vh;
    visibility: visible;
    border-bottom-width: 1px;
    transition-delay: 0s,0s;
    margin-bottom: 2em;
    overflow: visible;
  }
}