#isso-root div.text a {
    color: #c05b4d;
}

#isso-root div.text a:hover {
    border-bottom: 1px solid #c05b4d;
}

/* this worked well on desktop, but broke mobile rendering */
.containerNOT {
    width: 1024px;
}

.post .post-tocNOT {
    margin-left: 1009px;
}

/* weirdly, even theme has "word-break: break-all" for links */
.post .post-content a {
    word-break: normal;
}

/* I've added an article-like author to the post meta */
.post .post-header .post-meta .post-author a {
    color: inherit;
}
.post .post-header .post-meta .post-author a:hover {
    color: #c05b4d;
}


/* remove left/right figure margin */
figure {
    margin: 1em 0px
}

figcaption {
    color: #686868;
    font-style: italic;
    font-size: 0.9em;
    line-height: 1.3153846154;
    padding-top: 0.5384615385em;
    /* text-align: left; */
}

/* hugo figure shortcode puts p inside figcaption, so we get massive 1em margin-block-start thanks to even theme.
   let's neutralize. */
figcaption > p {
    margin-block-start: 0.1em;
}
