/* post-card */
.post-card {
    display: block;
    margin-bottom: 40px;
    border: 0;
    box-shadow: 0 30px 50px -30px rgba(0, 0, 0, 0.25);
    flex: 1;
    min-width: 450px;
    border-bottom-left-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}

@media screen and (max-width: 605px) {
    .post-card {
        min-width: 100%;
    }
}

.post-shadow {
    box-shadow: 0 30px 50px -30px rgba(0, 0, 0, 0.25);
}

.post-card-image {
    width: 100%;
    height: 350px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.zoom-in::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    background-size: cover;
    transform-origin: center;
    transition: transform 1s ease-in-out;
}

.zoom-in:focus::after, .zoom-in:hover::after {
    transform: scale(1.1);
}

.post-card .post-card-body {
    margin-top: 20px;
}

.post-card .post-card-subtitle {
    font-size: 13px;
    opacity: .8;
    font-weight: bold;
    margin-bottom: 3px;
}

.post-card .post-card-title {
    font-size: calc(14px + (22 - 17) * ((100vw - 300px) / (1300 - 300)));
}

.post-card-body {
    min-height: 49px;
}