.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
    font-family: "Open Sans";
}


.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    font-family: "Open Sans";
    line-height: 1.25;
    color: #222;
    margin: 15px 0;
}

.post-content h1{font-size: 18px}
.post-content h2{font-size: 16px}
.post-content h3{font-size: 14px}

.post-content a {
    color: #0066cc;
    text-decoration: underline;
}
.post-content a:hover {
    color: #004999;
}

.post-content p {
    margin: 10px 0;
}


.post-content ul,
.post-content ol {
    margin: 1rem 0 1rem 1.5rem;
}
.post-content ul li {
    list-style: disc inside;
}
.post-content ol {
    list-style: decimal inside;
}


.post-content img {
    max-width: 100%;
    height: auto;
    display: block;

}

.post-content figure {
    margin: 1.5rem 0;
    text-align: center;
}
.post-content figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}


.post-content blockquote {
    margin: 1.5rem 1rem;
    padding: 0.75rem 1.25rem;
    border-left: 4px solid #ccc;
    background: #f9f9f9;
    color: #555;
    font-style: italic;
}


.post-content pre {
    background: #2d2d2d;
    color: #eee;
    padding: 1rem;
    overflow-x: auto;
    border-radius: 4px;
    font-family: "Open Sans", monospace;
    margin: 1rem 0;
}
.post-content code {
    background: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family:"Open Sans", monospace;
}


.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.post-content th,
.post-content td {
    border: 1px solid #ddd;
    padding: 0.75rem;
    text-align: left;
}
.post-content th {
    background: #f2f2f2;
}


.post-content hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 2rem 0;
}


.post-content .embed-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin: 1.5rem 0;
}
.post-content .embed-container iframe,
.post-content .embed-container video {
    position: absolute;
    top:0; left: 0;
    width: 100%;
    height: 100%;
}