/* ==========================================================================
   CSS: Perfil Individual de Homenaje (homenaje-post.css)
   Diseñado de forma fluida y scannable para pantallas estrechas.
   ========================================================================== */

.profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Navegación de Retorno */
.profile-back-nav {
    margin-bottom: 30px;
}

.btn-back {
    display: inline-block;
    color: #7f8c8d;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.btn-back:hover {
    color: #2c3e50;
}

/* Envoltorio Principal del Perfil */
.profile-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 40px;
}

/* Encabezado del Memorial */
.profile-header {
    text-align: center;
    border-bottom: 1px solid #f2f4f4;
    padding-bottom: 35px;
    margin-bottom: 35px;
}

/* Contenedor de la Foto de Perfil (Cuadrada con bordes suavizados) */
.profile-avatar-box {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    background: #f8f9fa;
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 2.2rem;
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.profile-timeline {
    font-size: 1.2rem;
    color: #34495e;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.profile-origin {
    font-size: 0.95rem;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Epitafio o Frase de Honor */
.profile-epitaph {
    font-style: italic;
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Títulos de las Secciones Internas */
.body-title {
    font-size: 1.3rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Cuerpo de la Semblanza (Obituario) */
.profile-body {
    margin-bottom: 40px;
}

.body-text {
    font-size: 1.05rem;
    color: #444444;
    line-height: 1.8;
    text-align: justify;
}

/* Contenedor de Video Adaptativo (16:9) */
.profile-video-wrapper {
    border-top: 1px solid #f2f4f4;
    padding-top: 35px;
    margin-bottom: 40px;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background: #000;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- SECCIÓN DE CONDOLENCIAS --- */
.profile-condolences-wrapper {
    border-top: 1px solid #f2f4f4;
    padding-top: 35px;
}

.no-condolences {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: italic;
}

.condolences-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.condolence-item {
    background: #fdfefe;
    border-left: 4px solid #34495e;
    padding: 18px 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.condolence-author {
    margin: 0 0 4px 0;
    color: #2c3e50;
    font-size: 1.05rem;
    font-weight: 600;
}

.condolence-date {
    font-size: 0.8rem;
    color: #95a5a6;
    display: block;
    margin-bottom: 12px;
}

.condolence-text {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Media Queries: Ajustes para pantallas estrechas (Dispositivos Móviles)
   ========================================================================== */
@media (max-width: 600px) {
    .profile-wrapper {
        padding: 25px 15px;
    }

    .profile-avatar-box {
        width: 140px;
        height: 140px;
    }

    .profile-name {
        font-size: 1.75rem;
    }

    .profile-timeline {
        font-size: 1.1rem;
    }

    .profile-epitaph {
        font-size: 1rem;
    }

    .body-text {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    .condolence-item {
        padding: 15px;
    }
}
