@charset "utf-8";

.post-md {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0;
}

.post-md h1,
.post-md h2,
.post-md h3,
.post-md h4,
.post-md h5,
.post-md h6 {
    color: var(--font-color-1);
    margin: 32px 0 8px 0;
}

.post-md h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    padding: 24px 0;
}

.post-md h2 {
    font-size: 2rem;
    line-height: 1.2;
    padding: 20px 0;
}

.post-md h3 {
    font-size: 1.75rem;
    line-height: 1.2;
    padding: 18px 0;
}

.post-md h4 {
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 16px 0;
}

.post-md h5 {
    font-size: 1.25rem;
    line-height: 1.2;
    padding: 14px 0;
}

.post-md h6 {
    font-size: 1.125rem;
    line-height: 1.2;
    padding: 12px 0;
}

.post-md a {
    color: var(--font-color-2);
    box-shadow: 0 2px 0 var(--line-1);
    transition: color ease-in-out .65s, box-shadow ease-in-out .65s;
}

.post-md a:hover {
    color: var(--font-color-0);
    box-shadow: 0 2px 0 var(--font-color-0);
    transition: color ease-in-out .65s, box-shadow ease-in-out .65s;
}

.post-md strong {
    font-weight: 700;
}

.post-md em {
    font-style: italic;
}

.post-md kbd {
    padding: 2px 4px;
    border-radius: 2px;
    background: #eee;
    border: 1px solid #ddd;
}

.post-md ol {
    list-style: decimal;
    padding-left: 24px;
}

.post-md ul {
    list-style: disc;
    padding-left: 24px;
    margin: 8px 0;
}

.post-md img {
    border-radius: 4px;
}

.post-md hr {
    border: none;
    height: 1px;
    background: var(--line-1);
    margin: 24px 0;
}

.post-md p,
.post-md blockquote {
    width: 100%;
    margin: 8px 0;
}

.post-md blockquote {
    border-left: 2px solid var(--line-2);
    padding-left: 12px;
    word-wrap: break-word;
}

.post-md .video-container {
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}

.post-md iframe,
.post-md .video-container iframe {
    width: 100%;
    height: 100vh;
    max-height: 360px;
    margin: 12px 0;
}

.post-md table {
    font-size: 14px;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    text-align: left;
    border-spacing: 0;
    border: 1px solid var(--line-2);
}

.post-md th {
    padding: 8px 12px;
}

.post-md th+th {
    border-left: 1px solid var(--line-2);
}

.post-md td {
    padding: 8px 12px;
    border-top: 1px solid var(--line-2);
}

.post-md td+td {
    border-left: 1px solid var(--line-2);
}

.post-md table tr:nth-child(odd) td {
    background: #f8f8f8;
}

.post-md table tr:nth-child(even) td {
    background: #fff;
}

.post-md pre {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.post-md .hljs {
    overflow: auto;
    padding: 12px;
    width: 100%;
    max-height: 1000px;
    display: block;
    font-family: Consolas, Monaco, monospace;
    background: #282c34;
}

code {
    font-family: Consolas, Monaco, monospace;
    color: var(--font-color-2);
    line-height: 1.5;
    word-wrap: break-word;
    padding: .2em .4em;
    margin: 0;
    border-radius: 6px;
    background-color: rgba(175, 184, 193, 0.2);
}

@media screen and (max-width: 640px) {
    code.hljs {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    code.hljs {
        font-size: 13px;
    }
}