/* ============================================
   Custom Author-Focused Theme Styles
   Based on Kim Tonnesen's site design
   ============================================ */

/* Hero Section - Large centered design */
.author-hero {
    text-align: center;
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.author-hero-image {
    max-width: 400px;
    margin: 0 auto 40px;
    border-radius: 8px;
    overflow: hidden;
}

.author-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.author-name {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.author-subtitle {
    font-size: 1.6rem;
    color: #738a94;
    font-weight: 400;
    margin-bottom: 0;
}

/* Centered layout with more white space */
.author-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: left;
}

.author-section-centered {
    text-align: center;
}

.author-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.author-section p {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #15171A;
}

/* Book/Content Cards */
.content-card {
    background: #fff;
    border: 1px solid #e3e9ed;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
}

.content-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-card-image {
    max-width: 250px;
    margin: 0 auto 30px;
}

.content-card-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Reviews Section */
.review-quote {
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #15171A;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 4px solid #3eb0ef;
    background: #f7f8f9;
}

.review-author {
    font-size: 1.4rem;
    font-weight: 600;
    color: #15171A;
    margin-bottom: 5px;
}

.review-author-title {
    font-size: 1.3rem;
    color: #738a94;
    font-style: italic;
}

/* Navigation - Simplified */
.gh-head {
    border-bottom: 1px solid #e3e9ed;
}

.gh-head-menu {
    font-size: 1.5rem;
}

/* Reduce blog feed prominence for author sites */
.post-feed {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e3e9ed;
}

/* More generous spacing throughout */
body {
    letter-spacing: -0.01em;
}

.gh-content {
    font-size: 1.8rem;
    line-height: 1.7;
}

/* Homepage customization for author site */
.author-homepage .site-header-content {
    padding: 0;
}

.author-homepage .post-feed {
    display: none; /* Hide blog feed on homepage for pure author site */
}

/* Contact/CTA buttons */
.author-cta {
    display: inline-block;
    padding: 14px 32px;
    background: #15171A;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.5rem;
    transition: background 0.2s ease;
}

.author-cta:hover {
    background: #3eb0ef;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .author-hero {
        padding: 50px 20px;
    }
    
    .author-name {
        font-size: 2.8rem;
    }
    
    .author-subtitle {
        font-size: 1.4rem;
    }
    
    .author-section {
        padding: 40px 20px;
    }
    
    .content-card {
        padding: 30px 20px;
    }
}

/* Profile image styling */
.author-profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
}

.author-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative elements */
.section-divider {
    width: 60px;
    height: 3px;
    background: #3eb0ef;
    margin: 0 auto 40px;
}

.section-divider-left {
    margin: 0 0 40px 0;
}
