@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

figure {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    
    border-radius: 0.6rem;
}

figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

figcaption {
    background-color: rgba(48, 48, 48, 0.3);
    color: #fff2de;
    padding: 10px 15px;
    margin: none;
    position: absolute;
    bottom: -3em;/*-40px;/*original : 0 - quita el salto de margen de la sombra desde arriba*/
    width: 100%;
    height: 42px;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

/*.banderas {
    max-width: 100%;
    width: 50%;
    height: 50%;
    position: static;
    border-radius: 0.6rem;
    margin-left: 0.1em;
}*/

.caption-title {
    font-size: 1.2em;
}
/* original 27-08-23
.caption-full {
    font-size: 0.9em; /*agregado para que todo quede en una linea y no se salte
    opacity: 0;
    margin-top: 10px;
    margin-left: 1.2em;
}*/

.caption-full { 
    font-size: 1em; 
    opacity: 0;
    margin-top: 10px;
    margin-left: -0.3em;
}

.expanded {
    height: 120%;/*original : height: 100%; aumenta el tamaño de la sombra*/
    transition: 0.5s ease-in-out;
    background-color: rgba(48, 48, 48, 0.7);
}

.visible {
    opacity: 100;
}

.image-filter {
    filter: blur(5px) contrast(90%);
}
