main {
    margin-bottom: 4em;
}
.page-title-container {
    margin-bottom: 4em;
    .row {
        position: relative;
    }
    .label {
        position: absolute;
        top: 2em;
        left: 0;
        display: inline-block;
        font-size: 13px;
        font-weight: bold;
        padding: .5em 1em;
        color: white;
    }
}
.back {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: .25em;
    margin-bottom: 2em;
    text-decoration: none;
    color: #1DA7E0 !important;

    img {
        width: 15px;
    }
}
p.date {
    color: #9B9B9B;
}

.post-content {
    p {
        line-height: 30px;
    }
}
strong {
    color: #000;
}

ul,
ol {

	li::marker {
		color: #000;
	}
}

.sidebar-box {
    margin-bottom: 3em;
    &:nth-of-type(1) {
        margin-top: 8em;
    }
    .header {
        padding: 1em;
        background: #C4C4C4;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        color: white
    }

    ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: .5em;

        a:link, a:hover, a:visited {
            color: #000 !important;
            text-decoration: none;

            &.current {
                text-decoration: underline;
            }
        }
     
    }

}

/* SM + */
@media only screen 
and (min-width: 48em) {
    .post-content {
        padding-right: 4em;
    }
}