/* Author Page */
.author-box { display: flex; gap: 35px; padding: 40px; background: #ffffff; border: 1px solid #eaeaea; border-radius: 12px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); margin-top: 40px; margin-bottom: 50px; align-items: flex-start; }
.author-img-wrap { flex-shrink: 0; }
.author-img-wrap img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); border: 3px solid #fff; }
.author-info-content { flex: 1; }
.author-name { font-size: 2rem; font-weight: 800; margin-bottom: 12px; color: var(--text-main); letter-spacing: -0.5px; }
.author-bio { font-size: 1.05rem; color: #555; line-height: 1.7; margin-bottom: 24px; }
.author-social { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.social-link { display: inline-flex; align-items: center; gap: 8px; background: #f8f9fa; padding: 8px 16px; border-radius: 20px; color: var(--text-main); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: background-color 0.2s, border-color 0.2s; border: 1px solid #eaeaea; }
.social-link svg { fill: var(--accent); }
.social-link[href] svg[stroke] { stroke: var(--accent); fill: none; }
.social-link:hover { background: #f0f0f0; border-color: #ddd; }
.social-link span { font-size: 0.8rem; color: var(--text-main); text-transform: capitalize; }
.author-stats { display: flex; gap: 25px; font-size: 0.95rem; color: var(--text-muted); border-top: 1px solid #f0f0f0; padding-top: 20px; margin-top: 5px; }
.author-stats strong { color: var(--text-main); font-weight: 700; }
.section-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 25px; color: var(--text-main); border-bottom: 3px solid var(--accent); display: inline-block; padding-bottom: 6px; letter-spacing: -0.3px; }

@media (max-width: 768px) {
    .author-box { flex-direction: column; align-items: center; text-align: center; padding: 30px 20px; gap: 20px; }
    .author-social { justify-content: center; flex-wrap: wrap; }
    .author-stats { justify-content: center; }
}
