.headline h1 {
  font-size: 2rem;
}

.topline {
  text-align: center;
  color: var(--text-dark-hint);
  font-weight: normal;
  margin-bottom: 2em;
}

.thread-list {
  padding: 1em;
}
.section-bottom {
  padding-top: 2em;
}

.thread {
  margin-top: 1.5rem;
}

.thread form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 400px;
}

.thread textarea {
  width: 100%;
  max-width: 100%;
  height: 4em;
}
/* .thread textarea:focus {
  min-height: 6em;
  height: auto;
} */

body.mens p.hint {
  max-width: 500px;
  color: var(--text-dark-hint);
  margin-top: 1em;
}

body.mens .section-top p.hint {
  text-align: center;
}

body.mens .thread-container main {
  border:none;
}

.thread .htmx-indicator {
  display: none;
}

.thread .htmx-request .htmx-indicator,
.thread .htmx-request.htmx-indicator {
  display: flex;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 30px;
  height: 30px;
  display: flex;
}

.thread button .loader {
  margin-left: 0.5rem;
}
.loader::before,
.loader::after {
  content: "";
  flex: 1;
  animation: l14 1.5s -.25s infinite linear alternate both;
}
.loader::after {
  --s: -1, -1;
  animation-delay: .5s;
}
@keyframes l14 {
  0%,
  30%  {transform: scale(var(--s, 1)) translate(0px) perspective(150px) rotateY(0deg);
        clip-path: polygon(50% 0,100% 0,100% 100%,50% 100%,0 75%,0 25%);
        background: #fff;}
  37.5%{transform: scale(var(--s, 1)) translate(-10px) perspective(150px) rotateX(0deg);
        clip-path: polygon(50% 0,100% 0,100% 100%,50% 100%,0 75%,0 25%);
        background: #fff;}
  50%  {transform: scale(var(--s, 1)) translate(-10px) perspective(150px) rotateX(-90deg);
        clip-path: polygon(50% 0,100% 0,100% 100%,50% 100%,0 75%,0 25%);
        background: #fff;
        border-radius: 0}
  50.01%{transform: scale(var(--s, 1)) translate(-10px) perspective(150px) rotateX(-90.1deg);
         clip-path: polygon(0 0,100% 0,100% 100%,50% 100%,0 100%,0 25%);
         background: #fff;
         border-radius: 100px 0 0 100px}
  62.5%{transform: scale(var(--s, 1)) translate(-10px) perspective(150px) rotateX(-180deg);
        clip-path: polygon(0 0,100% 0,100% 100%,50% 100%,0 100%,0 25%);
        background: #fff;
        border-radius: 100px 0 0 100px}
  70%,
  100%{transform: scale(var(--s, 1)) translate(0px) perspective(150px) rotateX(-180deg);
        clip-path: polygon(0 0,100% 0,100% 100%,50% 100%,0 100%,0 25%);
        background: #fff;
        border-radius: 100px 0 0 100px;}
}

.section-cta .subheadline {
  margin-top: 2em;
}

.section-bottom {
  width: 100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}