
.shape-wrapper {
    filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.133));
    /* 6px 2px 53px -34px rgba(0, 0, 0, 0.5) */
}
.post-box {
    background: #fff;
    display: flex;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    align-items: stretch;
}

.post-box .post-thumb {
    width: 50%;
}

.post-box .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-box .post-content {
    width: 50%;
    padding: 60px 80px;
}

.post-box .post-content h3 {
    color: #252262;
    font-size: 35px;
    font-family: "epilogue", Sans-serif;
}

.post-box .post-content p {
    font-size: 14px;
    font-family: 'Sora', sans-serif;
}

@media (max-width: 900px) {
    .post-box {
        flex-direction: column;
    }

    .post-box .post-thumb {
        width: 100%;
    }

    .post-box .post-content {
        width: 100%;
        padding: 30px 40px;
    }
}

.post-box .post-content .post-action {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-box .post-content .post-action .post-date {
    font-family: 'Sora', sans-serif;
    color: #9bd4c0;
}