:root{
    --bg-abstrac: #64748B;
    --bg-abstrac2: #64748B66;
    --bg-abstrac3: #64748B22;
    --bg-abstracBlack: #1E293B;
}

.Sect-Noticias{
    padding: 0 3% 2%;
}
.Sect-Noticias h1{
    font-size: calc(2.5rem + 1rem);
    font-weight: bold;
    text-transform: uppercase;
    color: var(--bg-abstrac);
    margin-bottom: 0.5em;
}
.Sect-Noticias-container{
    display: flex;
    flex-direction: row;
    gap: 2em;
}
.Sect-Noticias-card{
    width: 32%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10%;
    padding: 2em;
    border-radius: 30px;
    box-shadow: 0px 0px 5px -2px #000000;
}
.Sect-Noticias-card:hover{
    box-shadow: 0px 0px 8px 2px var();
    scale: 1.03;
    transition: all 0.3s ease-in-out;
}
.Sect-Noticias-card figure{
    width: 100%;
    height: 60%;
}
.Sect-Noticias-card figure img{
    width: 100%;
    height: 100%;
}
.Sect-Noticias-content{
    text-align: left;
    width: 100%;
}
.Sect-Noticias-content h2{
    font-size: calc(1.5rem + 0.4rem);
}
.Sect-Noticias-content p{
    font-size: 1rem;
}
.Sect-Noticias-btn{
    display: flex;
    justify-content: center;
    margin-top: 2em;
}
.Sect-Noticias-btn a{
    text-decoration: none;
    color: #fff;
    background-color: var(--bg-abstracBlack);
    padding: 10px 40px;
    border-radius: 12px;
    font-size: calc(1rem + 0.2rem);
    transition: all 0.4s ease-in-out;
}
.Sect-Noticias-btn a:hover{
    background-color: var(--bg-abstrac);
    color: #fff;
    box-shadow: 0px 0px 10px -2px var(--bg-abstracBlack);
    scale: 1.03;
    font-weight: bold;
}

.Sect-Noticias-modal{
    margin: 2rem auto; 
    max-width: 70%;
}

.Sect-Noticias-compartir{
    gap: 0.5rem;
    display: flex;
}

@media screen and (max-width: 1024px) {
    .Sect-Noticias-container{
        flex-direction: column;
    }
    .Sect-Noticias-card{
        width: 100%;
    }
    .Sect-Noticias-modal{
        max-width: 95%;
    }
    .Sect-Noticias-compartir{
        flex-direction: column;
        align-items: center;
    }
}
