/* POST CARD REGULAR */

.post-card__regular{
    padding: 0 10px;

    display: flex;
    flex-direction: column;

}

.post-card-regular__link{
    display: flex;
    flex-direction: row;

    height: 80px;

    margin-bottom: 20px;
}

.post-card-regular__image-content{
    width: 30%;
    max-height: 80px;

    display: flex;
    flex-direction: column;
}

.post-card-regular__image-content img {
    max-width: 100%;
    height: 80px;

    object-fit: cover;
    object-position: top;
}

.post-card-regular__main-info{
    width: 68%;
    height: 80px;
    margin-left: 2%;

    display: flex;
    flex-direction: column;
    justify-content:space-between;
}

.post-card-regular_category{
    width: 100%;
    height: 18px;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin: 0;
}

.post-card-regular_title{
    width: 100%;

    font-family: var(--orelega);
    font-size: 18px;
    line-height: 22px;
}

.post-card-regular__link-linha {
    width: 33%;
    display: block;
    border-bottom: 3px solid var(--vermelho);
}




/* POST CARD FULL */

.post-card__full{
    padding: 0 10px;
    margin-top: 10px;
    margin-bottom: 20px;

    max-width: 100%;
    height: 180px;

    display: flex;
    flex-direction: column;

}

.post-card-full__link {
    position: relative;
    text-align: center;
    color: var(--branco);
    height: 180px;

}

.post-card-full__image-content img{
    width: 100%;
    height: 180px;
    
    object-position: top;
    object-fit: cover;

    /* filter: brightness(30%); */
    filter: grayscale(30%);
    opacity: 90%;

}

.post-card-full___main-info {
    width: 50%;

    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);

    font-family: var(--orelega);
    font-size: 22px;
    letter-spacing: -.02em;

    text-shadow: 1px 2px 2px rgb(0 0 0 / 70%);

    text-align:end
}

.post-card-full__linha{
    width: 33%;
    display: block;
    align-items: flex-end;
    border-bottom: 3px solid var(--branco);
}




/* POST CARD MEDIUM */

.post-card-medium{
    padding: 0 10px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.post-card-medium__link{
    display: flex;
    flex-direction: column;
}

.post-card-medium__image-content{
    width: 400px;
    height: 400px;
}

.post-card-medium__image-content img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.post-card-medium__main-info{
    margin-top: 5px;

    width: 100%;
    height: 100px;
    
    display: flex;
    flex-direction: column;
}

.post-card-medium_category{
    color: var(--category-laranja);

    text-transform: uppercase;
    font-weight: 700;
    margin-top: 5px;
}

.post-card-medium__title{
    margin-top: 5px;

    font-family: var(--orelega);
    font-size: 24px;
}

.post-card-medium__linha{
    width: 66%;
    display: block;
    align-items: flex-end;
    border-bottom: 3px solid var(--category-laranja);
}



/* CARREGAR MAIS */

.aligner{
    padding: 0 10px;
    width: 100%;

    display: block;
    text-align: center;
}


.btn-default{
    font-size: 18px;
    font-weight: 700;

    margin-top: 30px;
    margin-bottom: 30px;
    padding: 10px 30px 12px;

    text-transform: uppercase;
    display: inline-block;
    text-align: center;

    color: var(--branco);
    background-color: var(--verde);
    border-radius: 20px;
    
}