/* Portadas con watermark para Ciudad de Artistas y Hashtag x Fest */
.gestor-cover{
    position: relative;
    display: block;
    width: 300px;
    max-width: 100%;
    aspect-ratio: 550 / 700;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 8px var(--overlay-shadow-strong);
}

.gestor-cover--list{
    width: 200px;
}

.gestor-cover-image,
.gestor-cover-watermark{
    position: absolute;
    inset: 0;
}

.gestor-cover-image{
    z-index: 1;
}

.gestor-cover-watermark{
    z-index: 2;
    pointer-events: none;
}

.gestor-cover img,
.page-multiverso-wrapper .gestor-cover img,
.page-content-item-wrapper .gestor-cover img{
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
}

.gestor-cover-info{
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 1rem;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    pointer-events: none;
}

.gestor-cover-title,
.gestor-cover-type{
    display: block;
    color: var(--text-on-dark-strong);
    font-weight: 600;
    text-shadow: var(--shadow-deep) 1px 4px 11px;
}

.gestor-cover-title{
    font-size: 14px;
    line-height: 1rem;
}

.gestor-cover-type{
    font-size: 12px;
    line-height: 1.6rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .gestor-cover--list{
        width: 35vw;
    }

    .gestor-cover--detail{
        width: 75vw;
        margin-inline: auto;
    }

    .gestor-cover--list .gestor-cover-title{
        font-size: 0.8rem;
        line-height: 0.9rem;
    }

    .gestor-cover--list .gestor-cover-type{
        font-size: 0.6rem;
        line-height: 0.8rem;
    }
}
