.post-card__content {
    color: var(--text-color);
    padding-bottom: 30px;
}

.post-card__content .sub-heading {
    color: var(--colo-primary);
}

.post-cards {
    background: transparent;
    border: none;
    display: block;
    text-decoration: none;
    transition: transform .2s linear;
}

.post-card__image {
    width: 100%;
    height: 135px;
    overflow: hidden;
}

.post-card__image.no-img {
    background: #e7e7e7;
}

.post-card__image.no-img img {
    object-fit: contain;
}

.post-card__info {
    padding-top: 0;
}

.post-cards__top p {
    margin: 0;
    padding: 14px 0 8px 0;
    font-size: 18px;
    line-height: 1.27em;
    font-weight: normal;
    color: var(--color-dark-gray);
}

.post-card__col {
    padding-bottom: 30px;
}

.post-card__col:last-child {
    padding-bottom: 0;
}

.post-card__image img {
    transition: transform .5s linear;
}

.post-cards:hover img {
    transform: scale(1.1);
}

.post-cards p {
    transition: all .5s linear;
}

@media (min-width: 768px) {
    .post-card__col {
        padding-bottom: 0;
    }

    .post-cards {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        height: 100%;
    }

    .post-card__content .sub-heading {
        color: var(--text-color);
    }

}

@media (min-width: 1200px) {
    .post-card__wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
    }

    .post-card__content {
        padding-bottom: 0;
        width: 390px;
    }

    .post-card__list {
        width: calc(100% - 390px);
        padding-left: 25px;
    }
    
    .post-cards__top p {
        padding: 12px 0 15px 0;
        font-size: 20px;
        line-height: 1.27em;
    }

    .post-cards:hover p {
        color: var(--color-primary);
    }

    .post-cards:hover .btn-tertiary::after {
        right: -5px;
    }

}

@media (min-width: 1600px) {
    .post-card__content {
        width: 540px;
    }

    .post-card__list {
        width: calc(100% - 540px);
        padding-left: 36px;
    }
    
    .post-cards__top p {
        padding: 12px 0 10px 0;
        font-size: 30px;
        line-height: 1.133em;
    }

    .post-card__image {
        height: 177px;
    }

}














