.content,
.content--footer {
  flex: none;
  width: 100%;
  height: auto;
  max-height: 0;
  transition: all 1s ease-in-out;
  transition-delay: 0;
  overflow: hidden;
  padding: 0;
}

.content__block {
  text-align: justify;
  transform-origin: top left;
  padding: 0 1rem;
  > li {
    margin-left: 2rem;
  }
}
.content__block + .content__block {
  margin-top: 3rem;
}

.row:has(input:checked) > .content,
.row:has(input:checked) > .content--footer {
  max-height: 1000px;
}
@supports not selector(:has(*)) {
  .content,
  .content--footer {
    max-height: 1000px;
  }
}

@media only screen and (min-width: 400px) {
  .row:has(input:checked) > .content {
    padding-top: calc(sin(15deg) * 100%);
    padding-bottom: 2rem;
  }
  @supports not selector(:has(*)) {
    .content {
      padding-top: calc(sin(15deg) * 100%);
      padding-bottom: 2rem;
    }
  }

  .content__block {
    transform: rotate(-15deg);
    padding: 0 6rem 0 2rem;
  }
}

ul.stack {
  text-align: center;
}

ul.stack > li {
  display: inline;
  color: var(--accent-color);
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

ul.stack > li + li::before {
  content: '\2022   ';
  color: var(--font-color);
}
.footer {
  text-align: center;
}
.accounts {
  all: unset;
  margin-block-start: 1rem;
  margin-block-end: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accounts > li {
  display: inline-block;
}
.accounts > li + li {
  margin-left: 1rem;
}
.account-icon {
  display: none;
  vertical-align: middle;
  line-height: 1.5rem;
}
@media only screen and (min-width: 400px) {
  .account-icon {
    display: inline;
  }
}
.account-link {
  vertical-align: middle;
  display: inline;
}
