/**
 * styles to default Single page
 */

.single-post #content {
    --padding-page-header:40px;
    padding-top: 50px;
}
.single-post .post > div,
.single-post .post > header {
    width: var(--width-content-page-nosidebar);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.single .page-header {
    display: flex;
    flex-direction: column-reverse;
}
.single .page-title{
    font-size: 2em;
    font-weight: 600;
}

/* */

.meta {
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}
.meta a {
    text-decoration: none;
}
.meta span.item:nth-last-child(n + 2) {
    padding-right: .5em;
    border-right: 2px solid;
}

/* */

.more-post-links{
    font-family: var(--fntfamily-title);
    font-weight: 600;
    max-width: var(--width-content-page-nosidebar);
    border-top: 0;
    padding: var(--padding-col-unit);
    background-color: var(--color-emphasize);
    margin-left: auto;
    margin-right: auto;
}
.more-post-links .sign{
    font-size: 1em;
}
.more-post-links .item {
    min-height: 20px;
}
.more-post-links .item .icon{
    height: 26px;
    font-size: 2rem;
}
.more-post-links .item.next {
    padding-right: 40px;
}
.more-post-links .item.prev {
    padding-left: 40px;
}
.more-post-links .sign {
    color: var(--color-body);
}

.more-post-links a:hover .sign,
.more-post-links a:focus .sign {
    color: var(--color-link-hover);
}

/** ----- */

@media (max-width: 768px) {
    .single #content {
        padding-top: 35px;
    }
}