﻿/* #notaPrensa{
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F2F2F2;
} */
.np-card{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;    
    min-height: 315px;
    box-shadow: 1px 4px 19px -4px rgba(0,0,0,0.25);
    -webkit-box-shadow: 1px 4px 19px -4px rgba(0,0,0,0.25);
    -moz-box-shadow: 1px 4px 19px -4px rgba(0,0,0,0.25);
    border-radius: 30px;
    margin-bottom: 50px;
}
.np-img{   
    background-image: url("/Personas/Paginas/economia-bondad/src/img/NP-economia-bondad.webp"); 
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px 0px 0px 20px;
}
.np-card .body{
    position:relative;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.np-card .body .description{
    padding: 35px 20px 0px 15px;
}
.body .title{
    padding: 15px;
}
.body p{
    padding-top: 15px;
    padding-bottom: 30px;
}
.body .title .share-media{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: end;
}
.body .title .share-media .link-share img{
    width: 20px;
    cursor: pointer;
}
.body .title .share-media .link-share{
    width: 20px;
    cursor: pointer;
}
/*Muestra respectivamente los enlaces sociales, al obtner el foco*/
.body .title .share-media:focus-within .social-links{
    display: flex;
}
.body .title .share-media:not(:focus-within) .social-links{
    display: none;
}
/*Final*/
.body .title .share-media .social-links{
    position: absolute;
    top: 15%;
    right: 4%;    
    display: none;
    flex-direction: row;
    transition: 0.2s ease-in-out;       
}
.body .title .share-media .social-links i{
    font-size: 22px;
    padding: 5px;
}
.body .leer-link{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
}
.shape-container{
    height: auto;
    position: absolute;
    right: 0;
    overflow-x: hidden;
}

@media screen and (width <=992px){
    .circles-shape{
        display: none;
    }
    #notaPrensa {
        height: auto;
        padding: 50px;
    }
    .np-card {
      flex-direction: column;
      max-height: 100%;
    }
    .np-img {
        height: 250px;
    }
}
d-none{
    display: none;
}