article{
    margin-top: 1rem;
}

.post__title{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: "Aspeketa Bold"
}

h2{
    font-family: 'Aspeketa Regular', sans-serif;
    font-weight: normal;
    margin-block-end: 1rem;
}

h3{
    font-size: 1.25rem;
}


h3, h4, h4, h5 ,h6{
    font-family: 'Aspeketa Regular', sans-serif;
    font-weight: normal;
}

strong{
    font-family: "Aspeketa Bold";
    font-weight: 700;
}

.post__img{
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.post__img-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.post__img-caption{
    margin-top: 1rem;
    font-size: 0.85rem;
    text-align: center;
}

p{
    margin-block-start: 1rem;
    margin-block-end: 1rem;
    line-height: 160%;
    max-width: 75ch;
}


/*RESPONSIVE STYLES*/
@media only screen and (max-width: 768px){
    .blog__img{
        height: 75%;
        width: 75%;
    }

    .post__title{
        font-size: 1.5rem;
    }
}