

article.post > h1.title {
    font-family: 'Noto Serif Display', serif;
    color: black;
    font-weight: bold;
    line-height: 3rem;
    font-size: 2.6rem;
}


article.post > div.categories-post > ul.post-categories{
    display: flex;
    list-style: none;
    margin: 1rem 0px;
}

article.post > div.categories-post > ul.post-categories li > a{
    background-color: black;
    color: azure;
    margin-right: 2rem;
    padding: 0.2rem 1.8rem;
    font-size: 1.4rem;
    border-radius: 1rem;
}

article.post > div.post-excerpt > p{
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: #444444;
    margin-bottom: 1rem;

}

/* -----share buttons--- */
ul.social-share{
    line-height: 2.5rem;
    margin-left: 0;
}
ul.social-share > li{
    width: 3rem;
    height: 3rem;
    
}
ul.social-share > li > a{
    color:white;
    font-size: 1.1rem;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
    text-shadow: 0 1px 0 hsla(0, 0%, 59%, 0.2);
}



ul.social-share > li > a:active{
    -webkit-transform: translateY(7px);
    -moz-transform: translateY(7px);
    -o-transform: translateY(7px);
    transform: translateY(7px);
}

ul.social-share > li > a.share-facebook{
    background-color:#1877f2;
    color:white;
    padding: 1rem 1em;
    box-shadow: 0 2px 0 #1877f2,
                0 5px 5px hsla(0, 0%, 0%, 0.5);
    
}
ul.social-share > li > a.share-facebook:hover{
    box-shadow: 0 2px 0 #1877f2,
                0 2px 5px hsla(0, 0%, 0%, 0.5);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
    
}
ul.social-share > li > a.share-twitter{
    background-color:#1d9bf0;
    color:white;
    padding: 1rem 0.812em;
    box-shadow: 0 2px 0 #1d9bf0,
                0 5px 5px hsla(0, 0%, 0%, 0.5);
}
ul.social-share > li > a.share-twitter:hover{
    box-shadow: 0 2px 0 #1d9bf0,
                0 2px 5px hsla(0, 0%, 0%, 0.5);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}
ul.social-share > li > a.share-whatsapp{
    background-color:#29a71a;
    color:white;
    padding: 1rem 0.88em;
    box-shadow: 0 2px 0 #29a71a,
                0 5px 5px hsla(0, 0%, 0%, 0.5);
}
ul.social-share > li > a.share-whatsapp:hover{
    box-shadow: 0 2px 0 #29a71a,
                0 2px 5px hsla(0, 0%, 0%, 0.5);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}
ul.social-share > li > a.share-mail{
    background-color:#939598;
    color:white;
    padding: 0.9rem 0.82em;
    box-shadow: 0 2px 0 #939598,
                0 5px 5px hsla(0, 0%, 0%, 0.5);
}
ul.social-share > li > a.share-mail:hover{
    box-shadow: 0 2px 0 #939598,
                0 2px 5px hsla(0, 0%, 0%, 0.5);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}

#font-ctrl > button{
    background-color: black;
    color: white;
    border-radius: 4px;
    padding: 10px 14px;
    margin-right: 10px;
    font-family: serif;
    font-size: 18px;
}

div.the-content > p{
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1.2rem;
    color: black;
}

/* -----Imagen principal--- */
figure#figure-primary > a > img{
    aspect-ratio: 16/9;
    width: 100%;
    object-fit: cover;
    font-size: 15px;
    line-height: 15px;
}

@media only screen and (max-width: 500px) {
    article.post > h1.title {
        line-height: 2.4rem;
        font-size: 2rem;
    }

    article.post > div.post-excerpt > p{
        font-size: 1.45rem;
        line-height: 1.5rem;
    }
}