/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* ============================================
   CUSTOM FONTS - RECOLETA
   ============================================ */



/* ========================================
   AUTHOR ARCHIVE PAGE STYLES
   ======================================== */

/* Author Header Section */
.author-header-section {
    background: #f8f8f8;
    padding: 40px 30px;
    margin-bottom: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Author Image */
.author-image-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.author-image-wrapper .author-avatar {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Author Info */
.author-info {
    padding: 0 15px;
}

.author-name {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Author Meta (Birth year, Nationality) */
.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.95em;
    color: #666;
}

.author-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.author-meta i {
    font-size: 1.1em;
    color: #999;
}

/* Author Bio */
.author-bio {
    font-size: 1.05em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.author-bio p:last-child {
    margin-bottom: 0;
}

/* Product Count */
.author-product-count {
    font-size: 1.1em;
    color: #666;
    padding: 15px 20px;
    background: #fff;
    border-left: 4px solid #446084;
    border-radius: 4px;
    display: inline-block;
}

.author-product-count strong {
    color: #446084;
    font-size: 1.3em;
    font-weight: 700;
}

/* Products Section */
.author-products-section {
    margin-top: 40px;
}

.author-products-section .section-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.author-products-section .section-title span {
    position: relative;
    padding: 0 20px;
    background: #fff;
    z-index: 1;
}

.author-products-section .section-title::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

/* No Products Found */
.no-products-found {
    text-align: center;
    padding: 60px 20px;
    font-size: 1.1em;
    color: #999;
}

/* Tablet Responsive (768px - 1024px) */
@media only screen and (max-width: 64em) {
    .author-header-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .author-name {
        font-size: 2em;
    }

    .author-image-wrapper .author-avatar {
        max-width: 200px;
    }
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

    /* Author Archive Mobile Styles */
    .author-header-section {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .author-name {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .author-image-wrapper .author-avatar {
        max-width: 150px;
        margin: 0 auto 15px;
    }

    .author-info {
        padding: 0;
    }

    .author-meta {
        flex-direction: column;
        gap: 10px;
        font-size: 0.9em;
    }

    .author-bio {
        font-size: 1em;
    }

    .author-product-count {
        font-size: 1em;
        padding: 10px 15px;
        width: 100%;
        text-align: center;
    }

    .author-products-section .section-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

}