body {
    animation: fadeInPage 1s ease-in-out;
}

.writing-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    padding: 5rem 2rem 2rem;
    gap: 2rem;
    align-items: flex-start;
    flex: 1;
}

.left-column {
    flex: 1;
    padding-right: 2rem;
}

.left-column h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
}

.left-column blockquote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    border-left: 3px solid #ccc;
    padding-left: 1.5rem;
    margin-left: 0;
}

.left-column cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    text-align: right;
}

.right-column {
    flex: 2;
}

.story {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.story:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.story h3 {
    font-size: 1.3rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.story img {
    max-width: 250px;
    height: auto;
    display: block;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.story p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

.story a {
    color: #333;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.story a:hover {
    color: #000;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive design */
@media (max-width: 768px) {
    .writing-container {
        flex-direction: column;
        padding: 1rem;
    }

    .left-column {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .right-column {
        flex: 1;
    }
} 