.post_head {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.7rem 0;
    margin-top: 0.75rem;
}

.post_head h2 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.post_head a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 2rem;
    width: 5rem;
    border-radius: 0.2rem;
    background: var(--theme-color);
    font-size: 0.7rem;
    color: #000;
}

.post_content {
    padding: 1.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.current-position {
    margin-top: 1.5rem;
}

@media (max-width: 959px) {

    .post_head {
        padding: 0.6rem 0;
        margin-top: 0.9rem;
        border-bottom: 3px solid rgba(255, 255, 255, 0.1);
    }

    .post_head h2 {
        font-size: 1.5rem;
        color: #fff;
    }

    .post_head a {
        display: none;
    }

    .post_content {
        padding: 1.2rem 0;
        font-size: 1.3rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.6);
    }
}