.post {
    width: 100%;
}
.post__container {
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.post__title {
    font-size: 48px;
    text-align: center;
}
.post__date {
    font-size: 24px;
    padding-bottom: 40px;
}
.post__date span{
    font-weight: bold;
}
.post__img {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
}
.post__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.post__content {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
}
.post__content h2{
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 25px;
}
.post__content h3{
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 25px;
}
.post__content h4{
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 25px;
}
.post__content h5{
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 25px;
}
.post__content h6{
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 25px;
}
.post__content p{
    font-size: 18px;
    margin-top: 0;
}
.post__content ul{
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 18px;
}
.post__content ol{
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 18px;
}
.post__content ol li span{
    font-weight: bold;
}
.post__content ul li, 
.post__content ol li{
    margin-bottom: 5px;
}
.post__content img{
    margin: 30px 0;
    width: 80%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    align-self: center;
}
.post__content a{
    margin-bottom: 2px;
    border-bottom: 1px solid #FFF;
    font-style: italic;
}

@media (max-width: 992px){
    .post__content h2{
        font-size: 24px;
    }
    .post__content h3{
        font-size: 20px;
    }
    .post__content h4{
        font-size: 18px;
    }
    .post__content h5{
        font-size: 16px;
    }
    .post__content h6{
        font-size: 16px;
        margin-bottom: 20px;
        margin-top: 25px;
    }
    .post__img{
        height: 350px;
    }
    .post__content img{
        height: 270px;
    }
    .post__content ol,
    .post__content ul{
        font-size: 16px;
    }
    .post__content p{
        font-size: 16px;
    }
}
@media (max-width: 767px){
    .post__content{
        padding-top: 10px;
    }
    .post__title{
        font-size: 32px;
    }
    .post__content h2{
        font-size: 24px;
    }
    .post__content h3{
        font-size: 20px;
    }
    .post__content h4{
        font-size: 18px;
    }
    .post__content h5{
        font-size: 16px;
    }
    .post__content h6{
        font-size: 16px;
        margin-bottom: 20px;
        margin-top: 25px;
    }
    .post__date{
        font-size: 20px;
    }
    .post__content img{
        margin: 20px 0;
        width: 100%;
    }
    .post__content ol,
    .post__content ul{
        padding-inline-start: 20px;
    }
}
@media (max-width: 480px){
    .post__container{
        padding: 50px 5%;
    }
}