.destacado-card {
    display: inline-block;
    position: relative;
    width: 72px;
    height: 92px;
    margin: 2px;
    vertical-align: top;
    border-radius: 10px;
    overflow: hidden;
    background: #ddd;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.destacado-card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.destacado-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.destacado-nombre {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 4px 2px;
    background: rgba(0,0,0,0.58);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}