/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    font-weight: 400;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

/* Container and layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.left-column, .right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Profile photo */
.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 20px;
}

.placeholder-text {
    font-size: 14px;
    color: #888;
    font-weight: 300;
}

/* Typography */
h1 {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
}

h3 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin: 25px 0 10px 0;
}

.intro {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Work list */
.work-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px 0;
}

.work-list li {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 5px;
}

/* Education */
.education {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    margin: 15px 0;
}

/* Links */
.links {
    margin: 15px 0;
}

.link {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 400;
    font-size: 16px;
}

.link:hover {
    color: #0052a3;
}

/* Work links */
.work-link {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 400;
    font-size: 16px;
}

.work-link:hover {
    color: #0052a3;
}

/* Story section */
.story-section {
    margin-top: 40px;
}

.story-image-placeholder {
    width: 100%;
    height: 200px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    margin: 15px 0 25px 0;
}

.story-content p {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
        max-width: 100%;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    .intro, .work-list li, .education, .link, .story-content p {
        font-size: 15px;
    }
    
    h3 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }
    
    .profile-photo {
        width: 120px;
        height: 120px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    .intro, .work-list li, .education, .link, .story-content p {
        font-size: 14px;
    }
    
    h3 {
        font-size: 14px;
    }
}