.content-wrapper--internal > .content.content--internal_2{
    max-width: 1000px;
    padding: 20px 50px;
}

.title{
    padding-bottom: 20px;
    margin: 20px 0;
    font-size: 2.1em;
    color: #009D91;
    font-family: 'AdventPro-Bold', 'Advent Pro', sans-serif;
}

.title::before{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    width: 100%;
    height: 2px;
    background-color: #009D91;/*color 3 (naranja principal)*/
}

.principal_img {
    width: 100%;
    object-fit: cover;
    height: auto;
    max-height: none;
    margin: 15px auto;
    box-shadow: -1px 1px 16px 5px #ccc;
}
.description {
    font-size: 1.5em;
    margin-bottom: 20px;
    overflow-y: auto;
    max-height: 1000px;
}

.category_new{
    padding: 0 20px;
    margin-right: 10px;
    background-color: #009d91;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.2em;
    color: #fff;
}
.date{
    display: inline-table;
    margin: 5px 0 0 0;
    top: 0;
    color: #444;
    line-height: 1.3;
    padding: 0;
    text-transform: uppercase;
}
.info{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.source_new{
    font-weight: bold;
    font-size: 1.2em;
    color: #009D91;
}
.source_new > span{
    color: #000;
}
.content_new{
    font-size: 1.2em;
}
.share_buttons_2 .float_box_text{
    top: auto;
    bottom: calc(10px + 100%);
    left: 0;
    right: auto;
}
.share_buttons > span{
    font-size: 1.1em;
    margin-right: 15px;
    color: #009D91;
}
.share_buttons a{
    text-decoration: none;
    font-size: 1.5em;
    margin-left: 10px;
}
.share_buttons a span{
    color: #FFF;
}
.share_buttons a i:before{
    color: #009D91!important;
}



.container-columns{
    width: 100%;
    margin: 50px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    /*overflow-y: auto;*/
}
.container-columns::before{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #666;
    top: -10px;
    left: 0;
    margin-bottom: 50px;
}
.columns{
    display: block;
    position: relative;
    width: 100%;
    padding: 20px;
    transition: 0.2s;
    cursor: pointer;
}

.columns:hover,
.columns.hover{
    background-color: #f4f4f4;
}
.columns > div{
    height: 100%;
}
.columns .category_new {
    display: none;
}
.columns div > .title{
    padding: 0;
    margin: 0 0 15px;
    width: 100%;
    font-size: 1.3em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #000;
}
.columns div > .title::before{
    display: none;
}
.columns div > .description{
    max-height: 2.5em;
    overflow: hidden;
    font-size: 1.1em;
    text-align: justify;
}
.columns div > .content_new{
    display: none;
    padding-bottom: 15px;
}
.columns div > .principal_img{
    height: 40%;
    max-height: 200px;
}

.columns div .source_new{
    display: none;
}
.columns > div .share_buttons{
    display: none;
}

.columns::after,
.columns::before{
    content: "";
    display: none;
    position: absolute;
    top: 0;
    margin: 0 auto;
    height: 100%;
    width: 2px;
    background-color: #ccc;
}
.columns::after{
    left: auto;
    right: 0;
}
.columns::before{
    left: 0;
    right: auto;
}
.columns:not(.columns--expand):hover::after,
.columns:not(.columns--expand):hover::before{
    display: block;
}
.columns:hover div > img{
    filter: grayscale(70%);
}