/* Posts list */
.postlist {
    list-style: none;
    padding: 0;
    padding-left: 1.5rem;
}

.postlist-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    counter-increment: start-from 1;
    margin-bottom: 1em;
}

.postlist-item:before {
    display: inline-block;
    pointer-events: none;
    content: "" counter(start-from, decimal-leading-zero) ". ";
    line-height: 100%;
    text-align: right;
    margin-left: -1.5rem;
}

.postlist-date,
.postlist-item:before {
    font-size: 0.8125em;
    /* 13px /16 */
    color: var(--color-gray-90);
}

.postlist-date {
    word-spacing: -0.5px;
}

.postlist-link {
    font-size: 1.1875em;
    /* 19px /16 */
    font-weight: 700;
    flex-basis: calc(100% - 1.5rem);
    padding-left: .25em;
    padding-right: .5em;
    text-underline-position: from-font;
    text-underline-offset: 0;
    text-decoration-thickness: 1px;
}

.postlist-item-active .postlist-link {
    font-weight: bold;
}

/* Tags */
.post-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    font-style: italic;
}

.postlist-item>.post-tag {
    align-self: center;
}

/* Tags list */
.post-metadata {
    display: inline-flex;
    flex-wrap: wrap;
    gap: .5em;
    list-style: none;
    padding: 0;
    margin: 0 0 1.2em 0;
}

.post-metadata time {
    margin-right: 1em;
}

.links-nextprev {
    display: flex;
    justify-content: space-between;
    gap: .5em 1em;
    list-style: "";
    border-top: 1px dashed var(--color-gray-20);
    padding: 1em 0;
}

.links-nextprev>* {
    flex-grow: 1;
}

.links-nextprev-next {
    text-align: right;
}

blockquote {
    margin-left: 2em;
    border-left: 3px black solid;
    max-width: 600px;
    /* background-color: lightgrey; */
}

blockquote > p {
    text-indent: 20;
    margin-left: 1em;
}

blockquote > p:last-child {
    text-align: right;
}