/* Container for Image and Text */
.about-flex {
    display: flex;
    gap: 60px; /* More breathing room between image and text */
    align-items: flex-start;
    margin-top: 40px;
}

/* Image Column */
.author-image-container {
    flex: 1.2; /* Increased from 0.7 to give it real presence */
}

.bio-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    /* Ensuring no shadow remains as requested previously */
}

/* Text Column */
#author-bio {
    flex: 2; /* Adjusting ratio so text remains the primary focus */
}

/* Responsive Mobile View */
@media (max-width: 800px) {
    .about-flex {
        flex-direction: column; /* Stacks image on top of text on phones */
        gap: 30px;
    }
    
    .author-image-container {
        position: static;
        max-width: 100%;
    }
	
	.bio-section-header {
        white-space: normal; /* Allows wrapping only on small mobile screens */
        font-size: 1.4rem;   /* Slightly smaller for mobile */
    }
}

/* Container for the whole page section */
#author-page-content {
    padding: 120px 20px;
    background-color: #fdfcf9; /* A light, warm paper-like color */
    min-height: 60vh;
}

/* Restricts the width for readability */
.about-wrapper {
    max-width: 1200px; /* Increased from 850px to fill the screen better */
    margin: 0 auto;
    padding: 0 40px;
}

.about-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

/* Bio Text Styling */
#author-bio p {
    text-align: left;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem; /* Space between paragraphs */
}

/* Style for the Section Headers */
.bio-section-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; /* Slightly larger to match the bigger image scale */
    color: #ae0000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}
