/* ============================================================
   multiplanetario.css - Estilos específicos del cuento "Multiplanetario"
   ============================================================ */

/* === DOS IMÁGENES FLOTANTES === */
.imagenes-dobles {
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.imagenes-dobles img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    display: block;
}

@media (max-width: 700px) {
    .imagenes-dobles {
        float: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 0;
    }
    .imagenes-dobles img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}

/* === PILARES (navegación entre capítulos) === */
.pilares {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 25px;
    margin: 20px 0;
    padding: 12px 0;
    border-top: 1px solid rgba(136, 170, 136, 0.3);
    border-bottom: 1px solid rgba(136, 170, 136, 0.3);
}

.pilares a {
    color: #d4a843;
    text-decoration: none;
    white-space: nowrap;
}

.pilares a:hover {
    color: #f0d080;
}

@media (max-width: 768px) {
    .pilares {
        flex-direction: column;
        gap: 8px;
    }
    .pilares a {
        white-space: normal;
    }
}

/* === ENTREVISTA - 2 COLUMNAS (FOTO + TEXTO) === */
.entrevista {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(136, 170, 136, 0.2);
    padding: 25px 30px;
    margin: 20px 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.entrevista:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ccc;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.entrevista .foto {
    flex: 0 0 auto;
    width: 350px;
    max-width: 40%;
}

.entrevista .foto img {
    width: 100%;
    height: auto;
    display: block;
    border: 3px solid #efefef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.entrevista .foto img:hover {
    transform: scale(1.02);
}

.entrevista .curriculum {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.entrevista .curriculum p {
    margin: 8px 0;
    padding: 6px 0;
    border-bottom: 1px solid rgba(136, 170, 136, 0.15);
    line-height: 1.6;
    color: var(--text-color);
}

.entrevista .curriculum p:last-child {
    border-bottom: none;
}

.entrevista .curriculum strong {
    display: inline-block;
    min-width: 120px;
    color: var(--heading-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .entrevista {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 20px;
    }
    .entrevista .foto {
        width: 100%;
        max-width: 100%;
    }
    .entrevista .foto img {
        max-width: 300px;
        margin: 0 auto;
    }
    .entrevista .curriculum {
        width: 100%;
    }
    .entrevista .curriculum strong {
        display: block;
        min-width: auto;
        margin-bottom: 2px;
    }
}

@media (max-width: 480px) {
    .entrevista {
        padding: 15px;
        gap: 15px;
    }
    .entrevista .foto img {
        max-width: 100%;
    }
    .entrevista .curriculum p {
        font-size: 0.9rem;
        padding: 4px 0;
    }
    .entrevista .curriculum strong {
        font-size: 0.75rem;
    }
}