#watt-single-post .watt-page__title {
    width: 100%;
    text-align: center;
}

#watt-single-post .watt-page__thumbnail {
    width: 100%;
    object-fit: cover;
    margin: 2em 0;
    border-radius: 0.625em;
}

#watt-single-post img {
    max-width: 100%;
}

#watt-single-post img.aligncenter {
   margin: 0 auto;
}

/*next prev post button*/
.watt-postnav{
    width: 100%;
    margin-top: 3em;
    color: #ffffff;
    display:flex;
    flex-direction: row;
    gap: 1.5em;
    justify-content:space-between;
    font-size:0.875em;
    margin-bottom:3em;
}
.watt-postnav__prev,
.watt-postnav__next {
    /*width:calc(50% - 8px);*/
    width: 100%;

    position:relative;
}
.watt-postnav__prev-link,
.watt-postnav__next-link{
    position: relative;
    display:block;
    padding:1.25em 0.875em;
    background-position:50%;
    background-size:cover;
    background-repeat:no-repeat;
    color: #ffffff;
    border-radius:5px
}
.watt-postnav__prev-link:after,
.watt-postnav__next-link:after {
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.46);
    content:"";
    border-radius:5px
}
.watt-postnav__next {
    text-align:right
}
.watt-postnav__prev-link-info,
.watt-postnav__next-link-info {
    z-index:1;
    position:relative;
}
.watt-postnav__prev-link-info-p,
.watt-postnav__next-link-info-p {
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden
}

@media(max-width: 800px) {
    .watt-page__wrap,
    .watt-postnav {
        font-size: 1.25em;
    }

}