/* * [B] Elementor Easy Author and Share - Base Styles 
 * Note: Colors and spacing can be fully overridden via Elementor Widget Settings.
 */

.bdw-eeas-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0;
    /* Base fallbacks, easily overridden by Elementor style tab */
    border-top: 1px solid rgba(120, 120, 120, 0.2);
    border-bottom: 1px solid rgba(120, 120, 120, 0.2);
    background-color: transparent; 
}

/* Author Section */
.bdw-eeas-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bdw-eeas-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.bdw-eeas-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bdw-eeas-name {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 2px;
}

.bdw-eeas-bio {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.3;
}

/* Share Section */
.bdw-eeas-share {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bdw-eeas-share-label {
    margin-right: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.bdw-eeas-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid rgba(120, 120, 120, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
    color: inherit; /* Inherits from parent or elementor control */
}

.bdw-eeas-share a svg {
    fill: currentColor;
    transition: all 0.3s ease;
}

.bdw-eeas-share a:hover {
    background-color: rgba(120, 120, 120, 0.1);
    border-color: rgba(120, 120, 120, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .bdw-eeas-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .bdw-eeas-share {
        width: 100%;
        justify-content: flex-start;
        margin-top: 10px;
    }
}