﻿/**
 * Estilos Noticia
 */

 .noticia .noticia__cabecera{
    display: flex;
    width: 100%;
    height: 256px;
    justify-content: center;
    align-items: center;
    /*background: green*/;
    background-image: url("/es-co/PublishingImages/encabezados/bg_saladeprensa.png");
    background-repeat: no-repeat;
    background-position: center;
}

.noticia .noticia__titulo-superior{
	font-family: 'Montserrat', sans-serif;
    font-weight: bold;
	color: white;
	font-size: 3em;
    text-align: center;
}

.noticia .noticia__anuncio-contenedor{
    background: #f9f9f9;
}

.noticia .noticia__anuncio{
    max-width: 1140px;
    margin: 0 auto;
    padding: 100px 0 70px;
    display: flex;
}
.noticia .noticia__anuncio-contenido{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 50%;
    padding-right: 40px;
}

.noticia .noticia__fecha{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background-color: #8fb435;
    color: white;
    display: inline-block;
    font-size: 22px;
    line-height: 55px;
    padding: 0 20px;
}

.noticia .noticia__titulo{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: black;
    font-size: 2.2em;
}

.noticia .noticia__imagen{
    margin: 0;
    width: 50%;
    box-sizing: border-box;
    padding: 0 40px;
    position: relative;
}

.noticia .noticia__imagen:before{
    content: "";
    display: block;
    position: absolute;
    width: 70%;
    max-width: 400px;
    top: -60px;
    bottom: -30px;
    right: 0;
    background-color: #b8cf81;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
}

.noticia .noticia__imagen img{
    width: 100%;
    position: relative;
}

.noticia__articulo{
    max-width: 1140px;
    margin: 0 auto;
    font-family: 'Work Sans', sans-serif;
    text-align: justify;
    font-size: 20px;
    line-height: 1.5em;
}