/* assets/author-style.css */
.custom-author-page { max-width: 1200px; margin: 40px auto; padding: 0 20px; font-family: inherit; }
.author-profile-card { display: flex; align-items: center; background: #ffffff; border-radius: 12px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 50px; gap: 40px; border: 1px solid #eaeaea; }
.author-avatar img { border-radius: 50%; width: 180px; height: 180px; object-fit: cover; border: 4px solid #0056b3; }
.author-info h1 { margin: 0 0 5px 0; font-size: 2.5rem; color: #111; }
.author-title { display: inline-block; font-weight: bold; color: #0056b3; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.author-bio { font-size: 1.1rem; line-height: 1.6; color: #444; margin-bottom: 20px; }
.author-website-btn { display: inline-block; background: #0056b3; color: #fff; padding: 10px 24px; border-radius: 6px; text-decoration: none; font-weight: bold; transition: background 0.3s ease; }
.author-website-btn:hover { background: #003d82; }
.author-content-section h2 { font-size: 2rem; margin-bottom: 30px; border-bottom: 2px solid #eaeaea; padding-bottom: 10px; }
.author-post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.grid-post-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.04); transition: transform 0.3s ease; border: 1px solid #eaeaea; display: flex; flex-direction: column; }
.grid-post-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.post-card-image img { width: 100%; height: 200px; object-fit: cover; display: block; }
.post-card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.post-card-content h3 { margin: 0 0 10px 0; font-size: 1.25rem; line-height: 1.4; }
.post-card-content h3 a { color: #222; text-decoration: none; transition: color 0.3s ease; }
.post-card-content h3 a:hover { color: #0056b3; }
.post-meta { font-size: 0.85rem; color: #888; margin-bottom: 15px; }
.read-more-link { margin-top: auto; display: inline-block; color: #0056b3; font-weight: bold; text-decoration: none; padding-top: 15px; }
.author-pagination { margin-top: 40px; text-align: center; }
.author-pagination .page-numbers { padding: 10px 15px; border: 1px solid #eaeaea; margin: 0 5px; text-decoration: none; color: #222; border-radius: 5px; }
.author-pagination .current { background: #0056b3; color: #fff; border-color: #0056b3; }
@media (max-width: 768px) { .author-profile-card { flex-direction: column; text-align: center; padding: 30px 20px; } }