.post {
    border: 1px solid var(--secondary);
    max-width: 1000px;
    width: 90%;
    height: 300px;
    display: flex;
    flex-direction: row;
    border-radius: 4px;
    margin-top: 10px;
    align-items: center;
}

.post__image {
    width: 300px;
    height: 100%;
    border-radius: 4px 0 0 4px;
}

.post__info {
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    max-width: 50%;
}

.post__info > h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.post__info > p {
    font-weight: 500;
    color: #525252;
    font-size: .9rem;
    max-height: 68px;
    overflow: hidden;
}

.post-info__button {
    padding: .5rem 2rem;
    background: var(--primary);
    transition: .1s;
    color: var(--white);
    border-radius: 3px;
    display:flex;
    text-decoration: none;
    justify-content: center;
    max-width: 300px;
    margin-top: 10px;
}

.post-info__button:hover {
    background: var(--lightPrimary);
    cursor: pointer;
}

@media screen and (max-width: 850px) {
    .post {
        flex-direction: column;
        height: 400px;
    }

    .post__image {
        width: 100%;
        height: 300px;
    }

    .post__info {
        max-width: 100%;
        height: auto;
    }
}
