/* Style - Ficha Técnica Walter Owens */
.ficha-container {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    font-family: sans-serif;
}

.title-obra {
    color: #001f3f;
    font-size: 2.2em;
    margin: 0;
}

.subtitle-autor {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

/* Contenedor para las dos fotos a la izquierda */
.fotos-stack {
    float: left;
    width: 300px;
    margin: 0 20px 10px 0;
}

.fotos-stack img {
    width: 100%;
    display: block;
    margin-bottom: 1cm;
    /* Separación de 1cm entre fotos */
    border-radius: 15px;
    cursor: pointer;
}

.dato-titulo {
    color: #001f3f;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 15px;
    display: block;
}

.dato-info {
    font-weight: 500;
    color: #333;
    margin: 0 0 10px 0;
    text-align: justify;
    line-height: 1.5;
}

.ficha-container::after {
    content: "";
    display: table;
    clear: both;
}

/* Modal fondo gris */
.modal-foto {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.9);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal-foto img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
}

/* Style - Ajuste fotos móvil */
.foto-movil {
    width: 100%;
    /* Ocupa todo el ancho del cel */
    height: auto;
    border-radius: 15px;
    cursor: pointer;
    display: block;
    margin-bottom: 15px;
}

.ficha-container {
    padding: 15px;
    font-family: sans-serif;
}

.title-obra {
    font-size: 1.8em;
    /* Un poco más chico para el cel */
}