.header{
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header img{
    max-width: 256px;
}

.container-post{
   padding-top: 50px; 
}
.container-post .card{
    margin-bottom: 20px;
}
.container-post .card .card-body{
    padding-top: 40px;
    padding-bottom: 40px;
}
.container-post .card .box{
    display: inline-grid;
    grid-template-columns: 600px 1fr;
    width: 100%;
    gap: 30px;
}
.container-post .card .left .carousel-inner,
.container-post .card .left .carousel-inner .carousel-item img{
    border-radius: 5px;
}
.container-post .card .box .title{
    border-bottom: 1px solid rgba(0, 0, 0, 0.17);
    padding-top: 20px;
}
.container-post .card .box .title h3{
    font-size: 30px;
    font-weight: 600;
}
.container-post .card .box .description span,
.container-post .card .box .description p,
.container-post .card .box .description div{
    margin-bottom: 7px;
}
.container-post .card .box .button-post{
    padding-top: 10px;
    text-align: end;
}
.container-post .card .box .button-post a{
    padding: 13px;
}
@media screen and (max-width:1200px){
    .container-post .card .box{
        grid-template-columns: 500px 1fr;
    }
}
@media screen and (max-width:991px){
    .header{
        height: 100px; 
    }
    .header img{
        max-width: 200px;
    }
    .container-post .card .box{
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
        gap: 5px;
    }
    .container-post .card .box .description {
        padding-top: 10px;
    }
    .container-post .card .box .button-post{
        text-align: center;
        padding-top: 20px;
    }
    .container-post .card .box .button-post a{
        width: 60%;
    }
}
