/* Author Bio Styles - Refactored Layout */
.hatch-author-card {
    border: 1px solid #EEEEEE;
    padding: 25px;
    box-sizing: border-box;
    background: #fff;
    margin-bottom: 30px;
}

/* Header: Avatar + Titles Side-by-Side */
.hatch-author-card .author-bio-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.hatch-author-card .author-avatar {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
}

.hatch-author-card .author-avatar img {
    box-sizing: content-box !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 5px;
}

.hatch-author-card .author-titles {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hatch-author-card h2.author-name {
    color: #FF5722;
    margin: 0 !important;
    font-size: 26px;
    line-height: 1.2;
}

.hatch-author-card h2.author-name a {
    color: #FF5722;
    text-decoration: none;
}

.hatch-author-card .author-position {
    font-weight: 700;
    color: #333333;
    margin: 10px 0 0 0 !important;
    font-size: 16px;
}

/* Bottom Content: Bio + Icons */
.hatch-author-card .author-description {
    line-height: 1.6;
    color: #444;
    margin: 0 0 20px 0 !important;
}

.hatch-author-card .author-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hatch-author-card .author-social a {
    display: inline-flex;
}

.hatch-author-card .author-social img {
    width: 25px !important;
    height: 25px !important;
    box-sizing: content-box !important;
    transition: opacity 0.2s ease;
}

.hatch-author-card .author-social a:hover img {
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .hatch-author-card {
        padding: 20px;
    }
    
    .hatch-author-card .author-bio-header {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .hatch-author-card .author-avatar {
        width: 80px;
        height: 80px;
    }

    .hatch-author-card h2.author-name {
        font-size: 22px;
    }
}
