form {
    display: flex;
    align-self: stretch;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 10px;
    font-size: 1.1em;
    margin-bottom: 10px;
}
form div {
    align-self: stretch;
    display: flex;
    gap: 5px;
}
form input {
    flex-grow: 1;
}
#content {
    align-self: stretch;
    resize: vertical;
    field-sizing: content;
    min-height: 3em;
    max-height: 20em;
}

.wheatpost {
    align-self: stretch;
    background-color: var(--wheat-3);
    border-radius: 10px;
    border: 1px var(--wheat-2) solid;
    margin-bottom: 10px;
    word-break: break-all;

}
.wheatpost * {
    text-align: left;
}
.wheatpost > * {
    padding-left: 10px;
    padding-right: 10px;
}
.subject {
    border-bottom: 1px var(--wheat-2) solid;
    display: block;
}
.subject h2, .subject p {
    margin-bottom: 5px;
    display: inline-block;
}
.content {
    padding-bottom: 10px;
}
cite::before {
    content: "\2014";
}
details summary {
    font-size: 1.1em;
    margin-bottom: 10px;
}
details {
    width: 80%;
}