.hero__documentation h2 + p{
    padding-bottom: 10px;
}
div#posts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-item {
    background-color: #fff;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
    padding: 20px 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.post-item h3 a {
    color: #000;
    text-align: center;
    display: block;
    font-size: 1rem;
    line-height: 1.5;
    min-height: 50px;
}

.post-item .img {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    min-height: 60px;
}

a.pdf-link {
    border: 2px solid #fd8454;
    height: 35px;
    text-align: center;
    font-weight: 600;
    line-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
    text-decoration: none;
}

.post-item:hover a.pdf-link {
    background-color: #fd8454;
    color: #fff;
}

.post-item:hover a.pdf-link {
    background-color: #fd8454;
    color: #fff;
}
.st-documentation-2 .et_pb_column  {
    margin-right: 75px;
    width: calc(50% - 75px);
}
.st-documentation-2 .et_pb_column + .et_pb_column{
    margin-left: 75px;
    margin-right: 0;
}
  
  
@media screen and (max-width: 1024px){
    .st-documentation-2 h2{
        text-align: center !important;
    }
    .st-documentation-2 .et_pb_column  {
        margin-right: 0;
        width: 100%;
    }
    .st-documentation-2 .et_pb_column + .et_pb_column{
        margin-left: 0;
        margin-right: 0;
    }
    div#posts-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}