@import url('comunes.min.css');
body {
    font-family: 'Didonesque Stencil';
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 1.1rem;
    position: relative;
    z-index: -2;
}
/* N A V B A R */
nav {
    position: fixed;
    height: 100%;
    width: 120px;
    top: 0; left:0;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    position: fixed;
}
nav ul {
    width: 120px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
nav ul li {
    height: 100%;
    width: 60px;
    text-align: center;
    padding-top: 1rem;
}
nav ul li a{
    display: block;
    width: 100%;
    height: 100%;
}
nav ul img {
    width: 90%;
}
nav ul a span {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: normal;
    display: block;
    transform-origin: center;
    transform: translateY(110%) translateX(0%) rotate(90deg);
    color: var(--primary-color);
}
/* N O T I C I A  */
#noticia {
    position: relative;
    padding:0 0 0 120px;
    background-color: var(--primsec-color);
    z-index: -1;
    /* margin-bottom: 2rem; */
}
#noticia .cabecera {
    position: relative;
    padding:9rem 0 1rem 0rem;;
    background-image: url('../images/noticiasFondoIzq.png');
    background-repeat: no-repeat;
    background-position: 5rem 1rem;
}
#noticia .cabecera a {
    position: absolute;
    top:0;
    left:0;
    width: 280px;
    height: 110px;
}
.nota {
    max-width: 1100px;
    width: 95%;
    border:1px solid balck;
    margin:0 auto 2rem auto;
}
.nota article {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.nota article div {
    margin-left: 1rem;
}
.nota article div h1 {
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 1rem;
    text-align: right;
    padding-right: 2rem;
}
.nota article div h2 {
    font-family: 'Catamaran';
    font-size: 1rem;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 1rem;
    text-align: right;
    padding-right: 2rem;
}
.nota article div p {
    font-family: 'Catamaran';
    font-weight: 200;
    padding-right: 2rem;
    text-align: justify;
}
@media screen and (max-width:1150px) {
}
@media screen and (max-width:780px) {
    #noticia .cabecera {
        background-position: 2rem 1rem;
    }
    .nota article {
        grid-template-columns: 1fr;
    }
    .nota article div p {
        margin-bottom: 1rem;
    }
    .nota article div img {
        width: 90%;
    }
}
@media screen and (max-width:589px) {
    nav.menuIzquierda{
        display: none;
    }
    #noticia {
        padding: 0;
        margin: auto;
    }
    .nota article div h1 {
        font-size: 2rem;
        text-align: justify;
    }
    .nota article div h2 {
        text-align: left;
    }
    .nota article div p {
        padding-right: 1.5rem;
    }
    .nota article div img {
        display: none;
    }
    .nota article div img:first-child {
        display: inline-block;
    }
    .nota article div:first-child {
        order:2;
    }
}

.ck-reset_all{
    display:none;
}