.app-newsevents-carousel-news .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    background-color: #F4F4F4;
    overflow: hidden;
}

.articulo-box-carousel {
    background-color: #F4F4F4;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: block;
    padding-bottom: 60px;
}

.articulo-box-carousel figure{
    position: relative;
    margin: 0;
    background-color: #AAAAAA;
    overflow: hidden;
    z-index: 0;
    aspect-ratio: 16 / 9; /* o 4/3, 1/1, etc */
}

.articulo-box-carousel figure .article-tag {
    position: absolute;
    top: 20px;
    right: auto;
    bottom: auto;
    left: 20px;
    z-index: auto;
    margin: 0;
}

.articulo-box-carousel .article-tag {
    display: table;
    z-index: 10;
    line-height: 1rem;
    padding: 0.3rem 0.8rem;
    margin: 20px 0 0 20px;
    background-color: #fff;
    color: #333132;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none !important;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}

.articulo-box-carousel figure img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: auto;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transform: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 5;
}

.articulo-box-carousel:hover figure img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.articulo-box-carousel header {
    background-color: #F4F4F4;
    position: relative;
    padding: 0 25px;
    z-index: 10;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transform: all 0.3s ease;
    transition: all 0.3s ease;
}

.articulo-box-carousel:hover header {
    -webkit-transform: translateY(-15%);
    transform: translateY(-15%);
}

.articulo-box-carousel header h5, .articulo-box-carousel header h6 {
    margin: 25px 0 15px 0;
    padding: 0;
}

.articulo-box-carousel header p {
    margin: 0 0 30px 0;
    padding: 0;
}

.articulo-box-carousel footer {
    border-top-color: #c4c4c4;
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: auto;
    height: 60px;
    border-top: 1px solid #F4F4F4;
}

.articulo-box-carousel footer, .articulo-box-carousel summary {
    margin: 0 25px;
}

.articulo-box-carousel footer time {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}