/* Author Bio Styles - High Fidelity Clone */
.hatch-author-card {
    border: 1px solid #EEEEEE;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    background: #fff;
    margin: 60px 0;
    width: 100%;
}

.hatch-author-card .author-avatar {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin-right: 25px;
    overflow: hidden;
    border-radius: 8px;
}

.hatch-author-card .author-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.hatch-author-card .author-bio-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hatch-author-card .author-name {
    margin: 0 0 5px 0 !important;
    padding: 0 !important;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: none;
}

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

.hatch-author-card .author-position {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hatch-author-card .author-description {
    font-size: 16px;
    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 {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 4px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hatch-author-card .author-social a:hover {
    transform: translateY(-2px);
    background: #FF5100;
}

.hatch-author-card .hatch-icon-svg svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hatch-author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .hatch-author-card .author-avatar {
        margin: 0 0 20px 0;
        width: 100px;
        height: 100px;
    }
    
    .hatch-author-card .author-name {
        font-size: 24px;
        color: #1a1a1a !important; /* WCAG Contrast for mobile name */
    }
    
    .hatch-author-card .author-name a {
        color: #1a1a1a !important;
    }

    .hatch-author-card .author-social {
        justify-content: center;
    }
}

