.AnchoCompleto {
    width: 100%;
}

.mitad {
    width: 550px;
}

.tercio {
    width: 300px;
}

.AnchoCompleto, .mitad, .tercio {
    margin-top: 25px;
    margin-bottom: 0;
}

img {
    max-width: 100%;
}

.pers {
    width:220px;
}

section > h1 {
    border-bottom:1px solid var(--azul-zev);
    font-size: 26px;
}

#newsContainer {
    width: 100%;
    gap: 5px;
}

.tarjetaNoticia {
    border: 1px solid var(--azul-zev);
    height: 490px;
    padding: 10px;
    position: relative;
    box-shadow: 0 0 3px 3px var(--gris-zev);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tarjetaNoticia h2, .tarjetaNoticia p, .tarjetaNoticia h4 {
    margin: 0;
}

.tarjetaNoticia h4 {
    text-align: end;
}

.tarjetaNoticia p {
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    
}

.tarjetaNoticia h2 {
    height: 100px;
}

.tarjetaNoticia img {
    max-width: 100%;
    max-height: 100%;
}

.tarjetaNoticia > div {
    height: 225px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.tarjetaNoticia button {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    position: absolute;
}

#mostrarMas {
    text-align: center;
    
}

#mostrarMas button {
    font-size:26px;
    padding:10px;

}

.FullArcticle {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(122,122,122, 0.7);
    top: 0;
    left: 0;
    display: none;
}

.FullArcticle > div {
    width: 80%;
    max-width: 950px;
    height: 80%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    position: relative;
}

.FullArcticle > div > div:first-of-type {
    background-color: var(--azul-zev);
    color: var(--gris-zev);
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -15px;
    top: -15px;
    
}

.FullArcticle > div > div:first-of-type:hover {
    color: white;
    cursor: pointer;
}

.articulo {
    overflow-y: scroll;
    height: 100%;
    padding: 20px;
    background-color: white;
    display: none;
}

.FullArcticle h2 {
    margin: 0;
}

.imgContainer {
    width: 500px;
    float: left;
    margin-right: 20px;
    max-width: 100%;
}

.FullArcticle img {
    width: 50%;
    margin-right: 10px;
    margin-bottom: 10px;
    float: left;
}

.FullArcticle p {
    text-align: justify;
}

.esperaContainer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes Girar {
	0% { transform: rotate(0deg); }
	25% { transform: rotate(90deg); }
	50% { transform: rotate(180deg);}
	75% { transform: rotate(270deg);}
	100% { transform: rotate(360deg);}
}

.esperaContainer > div {
    background-color: white;
    background-image: url(../img/icons/arrow-clockwise.svg);
    width: 50px;
    height: 50px;
    background-size: cover;
    animation: Girar 2s infinite linear;
}