/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/


//single author page (woocommerce block)
.author-products-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-products-list li {
    flex: 1 1 200px;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.author-products-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.author-products-list li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

//single author page (Bio and image styling)

.single-author {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.single-author h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.author-image img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.author-bio {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.author-products ul {
    list-style: none;
    padding: 0;
}

.author-products li {
    margin-bottom: 0.5rem;
}




