/**
 * @description Styles for bio page
 * @version 1.0
 * @author Tom Cranstoun
 * @mx:status active
 * @mx:contentType stylesheet
 */

body {
    font-family: Georgia, serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
}

.container {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    background-color: white;
}

.header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

h1 {
    font-size: 24px;
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.content {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.image-container {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.caption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.bio-text {
    padding: 0 20px 20px 20px;
    border-top: 1px solid #eee;
}

p {
    margin-bottom: 16px;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.sidebar {
    width: 40px;
    background-color: #f0f0f0;
    border-right: 1px solid #ddd;
}

.bio-image {
    width: 100%;
    height: auto;
}
