/* --- Biography Specific Styles --- */

.bio-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

/* --- REVISED ANIMATION: "Slow Burn" --- */
/* Replaced the jittery strobe with a smooth 2-second pulse */
@keyframes voltage-flicker {
    0% { 
        box-shadow: 0 0 4px rgba(210, 200, 184, 0.1); 
        border-color: #5a4a3a; /* Start Darker */
    }
    50% { 
        box-shadow: 0 0 15px rgba(210, 200, 184, 0.25); 
        border-color: #8c7a6b; /* Pulse lighter (Muted Sepia) */
    }
    100% { 
        box-shadow: 0 0 4px rgba(210, 200, 184, 0.1); 
        border-color: #5a4a3a; /* Return to Dark */
    }
}

/* The Individual Chapter "Card" */
.bio-chapter {
    display: flex;
    align-items: center;
    border: 1px solid #5a4a3a;
    padding: 15px 25px;
    background-color: rgba(15, 10, 10, 0.6);
    
    /* Smoother transition for the initial hover engagement */
    transition: background-color 0.3s ease, transform 0.3s ease;
    
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

/* HOVER STATE - Static Glow */
.bio-chapter:hover {
    /* Lighten background */
    background-color: rgba(90, 74, 58, 0.3); 
    
    /* Brighten Border */
    border-color: #d2c8b8; 
    
    /* Add Static Glow (No flickering) */
    box-shadow: 0 0 15px rgba(210, 200, 184, 0.25); 
    
    cursor: pointer;
}

/* The Roman Numeral (Left Side) */
.bio-numeral {
    font-family: 'Baksheesh', serif;
    font-size: 2.5em;
    color: #5a4a3a;
    margin-right: 30px;
    min-width: 60px;
    text-align: center;
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Numeral Glow on Hover */
.bio-chapter:hover .bio-numeral {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* The Text Content (Right Side) */
.bio-content {
    display: flex;
    flex-direction: column;
}

.bio-title {
    font-family: 'Baksheesh', serif;
    font-size: 1.4em;
    color: #d2c8b8;
    margin: 0;
    text-decoration: none !important;
    border-bottom: none !important;
    transition: color 0.3s ease;
}

/* Title Glow on Hover */
.bio-chapter:hover .bio-title {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(210, 200, 184, 0.5);
}

.bio-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 1em;
    color: #8c7a6b;
    margin: 5px 0 0 0;
    font-style: italic;
    text-decoration: none !important;
}