/**
 * 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: Clienti pe Viata
 * Author URL: https://clientipeviata.ro
 */
#content{
	background-color: black;
    background-image: linear-gradient(180deg, #8A6540 0%, #000000 100%);
}

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

}
.author-page-container *{
	color:white;
}
.author-profile {
    text-align: left;
    margin-bottom: 30px;
}

.author-profile-image {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 15px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

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

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

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

.author-bio {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.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;
    }
}
