

.hingerl_relational_post {
    display: grid;
    grid-gap: 45px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
}

.hingerl_relational_post .post-item .post-content-box {
    text-align: center;
    padding: 25px;
}

.hingerl_relational_post .post-item .post-content-box .post-title h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hingerl_relational_post .post-item .post-content-box .post-title h2:hover {
    color: #c2976b;
}

.hingerl_relational_post .post-item .post-media {
    position: relative;
    overflow: hidden;
}

.hingerl_relational_post .post-item .post-media img {
    width: 100%;
}

.hingerl_relational_post .post-item .post-media .post-readmore-button {
    font-size: 16px;
    line-height: 23px;
    font-weight: 700;
    position: absolute;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    bottom: 35px;
    width: 100%;
    background-color: #00446E;
    display: block;
    max-width: 250px;
    padding: 14px 25px;
    color: #fff;
    right: -250px;
}

.hingerl_relational_post .post-item .post-media .post-readmore-button svg {
    position: absolute;
    right: 25px;
    top: calc(50% - 6px);
}

.hingerl_relational_post .post-item .post-media .post-readmore-button:hover,
.hingerl_relational_post .post-item .post-media .post-readmore-button:focus {
    background-color: #fff;
    color: #00446E;
}

.hingerl_relational_post .post-item .post-media .post-readmore-button:hover svg path,
.hingerl_relational_post .post-item .post-media .post-readmore-button:focus svg path {
    fill: #00446E;
}

.hingerl_relational_post .post-item:hover .post-media .post-readmore-button, 
.hingerl_relational_post .post-item:focus .post-media .post-readmore-button {
    right: 0;
}


@media only screen and (max-width: 992px) {
    .hingerl_relational_post {
        grid-gap: 25px;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 60px !important;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media only screen and (max-width: 620px) {
    .hingerl_relational_post {
        display: block;
        margin-top: 10px !important;
    }

    .hingerl_relational_post .post-item:not(:last-child) {
        margin-bottom: 15px;
    }

    .hingerl_relational_post .post-item .post-content-box {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 420px) {
    .hingerl_relational_post .post-item .post-content-box .post-title h2 {
        font-size: 20px;
    }
}