.head{
    background-color: #0F4260;
    position: relative;
    padding: 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.head h2{
    color: #ffffff;
    margin: 0;
    padding: 2rem;
    font-size: 2rem;
    line-height: 2.429rem;
}
.head span{
    background-image: url('/static/theme/img/ac.webp');
    background-position: center;
    background-repeat: no-repeat;
    -moz-background-size: cover;
      -o-background-size: cover;
         background-size: cover;
    width: 25vw;
    -webkit-clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.goback{
    margin: 1rem 2rem;
    width: 100%;
    cursor: pointer;
}
.goback:hover{
    color: #0F4260;
}
.postblock{
    background-color: #002339;
    padding: 0 2rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-shadow: 0 0 10px 0 rgba(15, 66, 96, 0.2);
       -moz-box-shadow: 0 0 10px 0 rgba(15, 66, 96, 0.2);
            box-shadow: 0 0 10px 0 rgba(15, 66, 96, 0.2);
}
.postblock .image{
    width: 40%;
    aspect-ratio: 16/9;
    background-position: top center;
    background-repeat: no-repeat;
    -moz-background-size: cover;
      -o-background-size: cover;
         background-size: cover;
}
.postblock .text p, .postblock .text h1, .postblock .text h2, .postblock .text h3, .postblock .text h4, .postblock .text h5, .postblock .text h6{
    color: #ffffff;
}
.postblock .text{
    width: 60%;
    padding: 2rem 0 2rem 2rem;
}
.share{
    padding: 1rem 2rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
    -webkit-box-shadow: 0 0 10px 0 rgba(15, 66, 96, 0.2);
       -moz-box-shadow: 0 0 10px 0 rgba(15, 66, 96, 0.2);
            box-shadow: 0 0 10px 0 rgba(15, 66, 96, 0.2);
}
.share small{
    margin-bottom: 0;
}
#post{
    min-height: 60svh;
}
@media screen and (max-width: 1200px){
    #post {
        min-height: 40svh;
    }
}
@media screen and (max-width: 800px){
.postblock {
    padding: 2rem 0;
}
.postblock .image {
    width: 100%;
}
.postblock .text {
    width: 100%;
    padding: 2rem;
  }
}