/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Author Box - Minimalista con Schema */
.author-box {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.author-box-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.author-info {
    flex: 1;
}

.author-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.author-name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.author-name a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}

.author-name a:hover {
    color: #666;
}

.author-job-title {
    font-size: 0.875rem;
    color: #555;
    font-style: italic;
}

.author-posts-count {
    font-size: 0.875rem;
    color: #888;
}

.author-bio {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 0.75rem;
}

.author-social a {
    color: #666;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}

.author-social a:hover {
    color: #222;
}

/* Responsive */
@media (max-width: 767px) {
    .author-box-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .author-header {
        flex-direction: column;
        gap: 0.25rem;
        align-items: center;
    }
    
    .author-social {
        justify-content: center;
    }
}