/*reproductor youtube sobre vista*/
.post_columna_noticias .views-row:not(.post_columna_noticias .views-row:nth-child(1))
{
    margin: 15px 0;
}

.post_columna_noticias .views-row 
{
    cursor: pointer;
}

.post_columna_noticias .views-row>.views-field-title
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.post_columna_noticias .views-row>.views-field-title>span>a 
{
    color: white;
    font-size: 0.7vw;
}

.post_columna_noticias .views-row>.views-field-title>span 
{
    background: rgba(0,0,0,0.75);
    width: 100%;
    padding: 0 5%;
}

.reproductor 
{
    width: 15%!important;
    margin-bottom: -5px;
    margin-left: 5px;
    z-index: 1;
}





.seccion_noticias_inicio
{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding: 0 2vw 0 2vw;
}

.seccion_noticias_inicio>div:nth-of-type(1)
{
    width: 90%;
    height: auto;
    overflow: hidden;
}

.seccion_noticias_inicio>div:nth-of-type(2)
{
    width: 30%;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div, .seccion_noticias_inicio>div:nth-of-type(1)>article
{
    width: 100%;
    /*height: 600px;*/
}

.seccion_noticias_inicio>div:nth-of-type(2)>div:not(.post_columna_noticias)
{
    height: 600px;
}

/* PRIMER ARTICULO SUPERIOR IZQUIERDO*/
.seccion_noticias_inicio>div:nth-of-type(1)>article
{
    background-image: url("https://www.utu.edu.uy/sites/www.utu.edu.uy/files/styles/styles_noticias_home/public/noticia/imagenes/2023/05/Foto%2023.jpg?h=547c1f25&itok=AdkClccs");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.seccion_noticias_inicio>div:nth-of-type(1)>article>div 
{
    width: 40%;
    height: auto;
    background-color: rgba(0,0,0,0.6);
    padding: 30px;
}

.seccion_noticias_inicio>div:nth-of-type(1)>article>div>h3, .seccion_noticias_inicio>div:nth-of-type(1)>article>div>p
{
    font-family:'Montserrat', sans-serif;
    /*color: white;
    font-size: 1.7rem;
    font-weight: 700;*/
}

.seccion_noticias_inicio>div:nth-of-type(1)>article>div>p
{
    color:#999999;
    font-size: 0.9rem;
    font-weight: 500;
}

.seccion_noticias_inicio>div:nth-of-type(1)>article>div>p:nth-of-type(3)
{
    color: #06d6a0;
}

.botones_noticias 
{
    display: block;
    width: 200px;
    height: 50px;
    font-family: 'Montserrat';
    border: none;
    background-color: var(--azul-utu-dos);
    color: white;
    box-sizing: border-box;
    cursor: pointer;
    margin: 5px 0;
}

.botones_noticias:hover 
{
    transition: all ease 0.5s;
    background-color: white;
    color: var(--azul-utu-dos);
    border: 1px solid var(--azul-utu-dos);
}


/*ALFA + ALFA*/
/* galeria de noticias (grilla de 3x4) */
.seccion_noticias_inicio>div:nth-of-type(1)>div
{
    height: auto;
    display: grid;
    padding: 30px 0;
   
    grid-template-areas:
        "uno uno dos tres"
        "cuatro cinco cinco seis"
        "siete ocho nueve seis"
        "diez once doce doce";

    grid-template-columns: 15vw 15vw 15vw 15vw;
    grid-template-rows: 25vw 25vw 25vw 25vw;
    
    column-gap: 25px;
    row-gap: 20px;
    justify-content: center;
    align-items: start;
    align-content: center;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article 
{
    height: 100%;
    width:100%;
    cursor: pointer;
    padding: 10px;
    box-sizing: content-box;
    overflow: hidden;
}

/*ELEMENTOS CON HEIGHT DIFERENTES (CHIMENEAS)*/
.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(6) 
{
    height: 50vw;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(4)>img, .seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(2)>img,.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(3)>img
{
    aspect-ratio: 16 / 11;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(6)>img
{
    aspect-ratio: 16 / 16;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(1) 
{
    grid-area: uno;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(2) 
{
    grid-area: dos;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(3) 
{
    grid-area: tres;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(4) 
{
    grid-area: cuatro;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(5) 
{
    grid-area: cinco;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(6) 
{
    grid-area: seis;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(7) 
{
    grid-area: siete;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(8) 
{
    grid-area: ocho;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(9) 
{
    grid-area: nueve;
}



.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(10) 
{
    grid-area: diez;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(11) 
{
    grid-area: once;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(12) 
{
    grid-area: doce;
}
/*NO DISPONIBLES*/
/*FIN NO DISPONIBLES*/

.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(13) 
{
    grid-area: trece;
    display: none;
}




.seccion_noticias_inicio>div:nth-of-type(1)>div>article:hover 
{
    transition: all ease 0.5s;
    transform: scale(1.1);
    /*background-color: rgba(240, 240, 240, 0.95);*/
    background-color: #fbecd8a1;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article>h3, .seccion_noticias_inicio>div:nth-of-type(1)>div>article>p
{
    font-family:'Montserrat', sans-serif;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article>.testimonio
{
    font-size: 0.9rem;
    font-weight: 700;
    color: #696767;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article>h3
{
    height: auto;
    text-overflow: ellipsis;
    font-size: 1.1rem;
    overflow: hidden;
    color: #4a0f0f;
    text-shadow: -0.00005px -0.00005px 1px rgba(26,56,100,0.84);
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article>p
{
    color: #000;
    font-size: 0.8rem;
    font-weight: 500;
}

.seccion_noticias_inicio>div:nth-of-type(1)>div>article>img 
{
    aspect-ratio: 16 / 9;
    width: 100%;
    margin: 5px 0;
    object-fit: cover;
}

/*p.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(4)>img, .seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(6)>img 
{
    aspect-ratio: 16 / 16!important;
}
*/
.seccion_noticias_inicio>div:nth-of-type(1)>div>article>p:nth-child(1)
{
    margin-bottom: 0;
}

/*NOTICIAS DEBAJO AGENDA*/
.post_columna_noticias>div>.views-row img 
{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9!important;
    height: auto!important;
}

/* agenda */
.agenda_inicio_noticias
{
    width: 100%;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #f2f2f2;
    overflow-y: auto;
}

.agenda_inicio_noticias>h3, .agenda_inicio_noticias>ul>li 
{
    font-family:'Montserrat', sans-serif;
    color: var(--azul-utu-uno);
    font-weight: 600;
    font-size: 1.3rem;
}

.agenda_inicio_noticias>h3
{
    border-bottom: 1px solid #999999;
}

.agenda_inicio_noticias>ul 
{
    padding: 0;
    margin: 0;
}

.agenda_inicio_noticias>ul>li
{
    color: var(--azul-utu-dos);
    font-size: 0.7rem;
    text-align: justify;
    list-style: none;
    margin-bottom: 20px;
    transition: background-color 0.6s ease, color 0.6s ease;
    cursor: pointer;
    
}

.agenda_inicio_noticias>ul>li:hover 
{
    background-color: #1A3864;
    color: #ffffff; /* Opcional: Cambia el color del texto al hacer hover */
    padding: 5px 5px;
}

.agenda_inicio_noticias>ul>li>span 
{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #E4C351;
    width: 30px;
    height: 30px;
    font-size: 1rem;
    text-align: center;
}


/* noticias columna derecha inferior */
.post_columna_noticias
{
    /*height: calc(100vw - 6vh)!important;*/
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.post_columna_noticias>article 
{
    height: 10vw;
    width: 100%;
    display: flex;
    background-color: #f2f2f2;
}

.post_columna_noticias>article:nth-child(1)>img, .post_columna_noticias>article:nth-child(2)>img, .post_columna_noticias>article:nth-child(3)>img
{
    width: 15vw;
    height: 10vw;
    object-fit: cover;
}

.post_columna_noticias>article>h4 
{
    color: #1A3864;
    display: inline;
    font-family:'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    max-width: calc(100% - 15vw);
    padding: 10px;
}

.post_columna_noticias>article>h4>span 
{
    background-color: white;
}

.post_columna_noticias>article:nth-child(4),.post_columna_noticias>article:nth-child(5), .post_columna_noticias>article:nth-child(6)
{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.post_columna_noticias>article:nth-child(4)
{
    background-image: url("https://www.utu.edu.uy/sites/www.utu.edu.uy/files/styles/styles_noticias_home/public/noticia/imagenes/2023/05/funcionarios_21.jpg?h=09aa5902&itok=irQGTdYV");
}

.post_columna_noticias>article:nth-child(5)
{
    background-image: url("https://www.utu.edu.uy/sites/www.utu.edu.uy/files/styles/styles_noticias_home/public/noticia/imagenes/2023/05/1_0.jpeg?h=e189a5d0&itok=9_55CseL");
}

.post_columna_noticias>article:nth-child(6)
{
    background-image: url("https://www.utu.edu.uy/sites/www.utu.edu.uy/files/styles/styles_noticias_home/public/noticia/imagenes/2023/05/01.jpg?h=126f7e01&itok=FVL0dPrn");
}

.post_columna_noticias>article:nth-child(4)>h4, .post_columna_noticias>article:nth-child(5)>h4, .post_columna_noticias>article:nth-child(6)>h4
{
    max-width: 50%;
    color: #06d6a0;
}

@media (min-width:769px) and (max-width:1300px)
{
    .seccion_noticias_inicio>div:nth-of-type(1)>div
    {
        grid-template-rows: repeat(4, 35vw);
        row-gap: 45px;
    }

    .seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(6)>img, .seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(4)>img, .seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(2)>img,.seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(3)>img
    {
        aspect-ratio: 16 / 9!important;
    }

    .seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(1)>img, .seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(5)>img
    {
        aspect-ratio: 16 / 5!important;
    }

    .seccion_noticias_inicio>div:nth-of-type(1)>div>article>h3 
    {
        font-size: 0.8rem!important;
    }

    .seccion_noticias_inicio>div:nth-of-type(1)>div>article>p 
    {
        font-size: 0.6rem!important;
    }

    /*.post_columna_noticias 
    {
        height: calc(152vw - 725px)!important;
    }*/
}

@media (max-width:768px) 
{

    .seccion_noticias_inicio>div:nth-of-type(1)>div>article>p
    {
        display: none!important;
    }

    .seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(6)
    {
        height: unset;
    }
    .seccion_noticias_inicio>div:nth-of-type(1)>div>article:nth-child(6)>.pharraf
    {
        display: none;
    }

    .botones_noticias
    {
        display: inline;
        width: 45vw;
        margin: 1vw;
    }

    .seccion_noticias_inicio>div:nth-of-type(1)>div>article>h3
    {
        font-size: 0.8rem!important;
    }

    .seccion_noticias_inicio
    {
        flex-direction: column;
    }
    
    .seccion_noticias_inicio>div:nth-of-type(1), .seccion_noticias_inicio>div:nth-of-type(1)>article>div
    {
        width: 100%;
    }

    .seccion_noticias_inicio>div:nth-of-type(1)>div
    {
        row-gap: 25px;
        grid-template-columns: repeat(2,45vw);
        grid-template-rows: repeat(6, auto);
        grid-template-areas:
        "uno dos"
        "tres cuatro"
        "cinco seis"
        "siete ocho"
        "nueve diez"
        "once doce";
    }

    .seccion_noticias_inicio>div:nth-of-type(1)>div>article>img 
    {
        aspect-ratio: 16 / 9!important;
    }

    .seccion_noticias_inicio>div:nth-of-type(1)>div>article
    {
        width: 45vw!important;
        height: auto;
        padding: 0!important;
    }

    .seccion_noticias_inicio>div:nth-of-type(2)
    {
        width: 100%;
        margin-left: 0;
    }
    
    .post_columna_noticias
    {
        display: none;
        /*grid-template-rows: repeat(3, 20vh);*/
    }
    /*
    .post_columna_noticias>article
    {
        height: 20vh;
    }

    .post_columna_noticias>article>img
    {
        height: 20vh!important;
        width: 50%!important;
    }*/
}   


