.about-author-page { 
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0;
}


.author-profile {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}


.author-image img {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}


.author-info h1 {
    margin: 0 0 10px 0;
    font-size: 2.2rem;
}

.author-bio { margin-bottom: 10px;
    color: #444;
}

.author-social a { margin-right: 12px;
    color: #0077b5;
    text-decoration: none;
    font-weight: 500;
}

.author-social a:hover { text-decoration: underline;
}

.author-blogs-section h2 { margin-bottom: 24px;
    font-size: 1.5rem;
}

.blog-grid { display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card { background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-img img { width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card-content { padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta { font-size: 0.95rem;
    color: #888;
    margin-bottom: 8px;
}

.blog-title { font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-description { font-size: 1rem;
    color: #444;
    margin-bottom: 12px;
}

.read-more a { color: #0077b5;
    text-decoration: none;
    font-weight: 500;
}

.read-more a:hover { text-decoration: underline;
}

.pagination { margin-top: 32px;
    text-align: center;
}

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr;
} }

@media (max-width: 600px) { .author-profile { flex-direction: column;
    align-items: flex-start;
} .blog-grid { grid-template-columns: 1fr;
} }