/* Authors List Template Styles */

.authors-wrap {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.authors-wrap .author-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    overflow: hidden;
}

.authors-wrap .author-avatar {
    float: left;
    margin-right: 20px;
}

.authors-wrap .author-avatar img {
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.authors-wrap .author-description {
    overflow: hidden;
    margin-bottom: 15px;
}

.authors-wrap .author-description h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    line-height: 1.3;
}

.authors-wrap .author-description h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.authors-wrap .author-description h3 a:hover {
    color: #0073aa;
}

.authors-wrap .author-description p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.authors-wrap .author-social {
    clear: both;
    padding-top: 10px;
    border-top: 1px solid #e5e5e5;
}

.authors-wrap .author-social a {
    display: inline-block;
    margin-right: 10px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.authors-wrap .author-social a:hover {
    color: #0073aa;
}

.authors-wrap .author-social .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.authors-wrap .clear {
    clear: both;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .authors-wrap .author-avatar {
        float: none;
        margin: 0 auto 15px;
        text-align: center;
        display: block;
    }
    
    .authors-wrap .author-description {
        text-align: center;
    }
    
    .authors-wrap .author-social {
        text-align: center;
    }
}
