@media only screen and (min-width: 0rem){
    #post{
        padding: 2rem;
        background-color: #fff;
        overflow: hidden;
        padding-right: 15%;
        padding-left: 15%;
    }
    .post-container{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #post img{
        display: block;
        max-width: 70%;
        height: auto;
        margin: 0 auto;
    }

    #post ul, ol {
        list-style-position: inside;
        font-size: 1.3rem;
        line-height: 1.6;
    }

    #pos li {
        margin-bottom: 0.75rem;
    }

    #post li::before {
        content: "•";
        color: var(--secondary);
        font-weight: bold;
        display: inline-block;
        width: 1rem;
    }

    .highlight-section {
        background-color: #ffc107;
        padding: 1.5rem;
        border-radius: 8px;
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 63.9375rem){
    #post img{
        max-width: 100%;
    }
}

