/**
 * Author Page Styles
 * 
 * This file contains styles specifically for the Author Page template.
 * It includes styling for the author profile section, social icons, 
 * author bio, and overall page layout.
 * 
 * Edit with caution
 *
 * Author: rankTools
 * Author URL: https://rankTools.ro
 */

.author-page-container {
    max-width: 1170px;
    margin: 50px auto;
    padding: 20px;
}

.author-page-container p{
	line-height:24px;
	margin:25px 0;
}
.author-profile {
    text-align: center;
    margin-bottom: 30px;
}


.author-profile-image {
    max-width: 450px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.author-name {
    font-size: 28px;
    margin-bottom: 15px;
}

.author-social-links {
    margin-bottom: 15px;
    display: flex;
}

.social-icon {
    width: 30px;
    height: 30px;
    margin: 0 8px;
}

.author-bio {
font-size: 16px;
  line-height: 1.7;
  color: #555;
  text-align: justify;
  width: 700px;
  margin: 30px auto;
}

.author-bio li{
	list-style:disc;
}

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

.blog-grid-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.entry-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.entry-excerpt {
    height: 100px;
    overflow: hidden;
    margin-bottom: 15px;
}

.read-more {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
}

@media(max-width:992px) {
    .blog-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }
}

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