#post-container h1 {
    color: #137d7a;
    text-align: center;
    font-size: 28px;
    padding: 12px 0 15px 0;
    border-top: 1px solid #137d7a;
    border-bottom: 1px solid #137d7a;
    margin-bottom: 20px;
    margin-top: 0;
}

.post-meta {
    display: flex;
    justify-content: space-between;
}

.post-date {
    color: #137d7a;
    font-size: 16px;
}

.post-image-container {
    float: left;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
}

.post-image {
    width: auto;
    max-width: 100%;
    max-height: 300px;
}

.post-content {
    max-width: 100%;
    overflow: hidden;
}

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

.post-content ul {
    list-style: none !important;
    padding-left: 0;
}

.post-content p,
.post-content ul li {
    line-height: 1.5;
}

@media (max-width: 768px) {
    #post-container h1 {
        font-size: 24px;
        text-align: left;
    }

    .post-meta {
        justify-content: flex-start;
        flex-direction: column;
    }

    .post-image-container {
        float: none;
    }

    .post-content p,
    .post-content ul li {
        text-align: left !important;
    }
}