/* BUTTONS INSIDE POST */

.card button {
    border: none;
    cursor: pointer;
    transition: .2s;
}

.card button:hover {
    transform: translateY(-2px);
}

.card > button,
.card > p + button {
    position: relative;
    margin-top: 12px;
    background: rgba(255,255,255,.17);
    color: white;
    border: 1px solid rgba(255,255,255,.23);
    border-radius: 14px;
    padding: 10px 13px;
    font-weight: 700;
}

.card > button:nth-of-type(1) {
    position: absolute;
    right: 22px;
    bottom: 215px;
}

.card > button:nth-of-type(2) {
    position: absolute;
    right: 22px;
    bottom: 150px;
}

.card > button:nth-of-type(3),
.card > button:nth-of-type(4) {
    position: static;
    margin-right: 8px;
}