/* SolarTech Author Attribution - bio box */
.staa-biobox {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 40px 0;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #EF8B22; /* SolarTech orange accent */
    border-radius: 10px;
    background: #f8fafc;
}
.staa-biobox__photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    flex: 0 0 auto;
}
.staa-biobox__eyebrow {
    margin: 0 0 2px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}
.staa-biobox__name {
    margin: 0 0 4px;
    font-size: 20px;
    line-height: 1.2;
}
.staa-biobox__name a {
    color: #184173; /* SolarTech dark blue */
    text-decoration: none;
}
.staa-biobox__name a:hover {
    text-decoration: underline;
}
.staa-biobox__title {
    margin: 0 0 10px;
    font-weight: 600;
    color: #334155;
}
.staa-biobox__bio {
    margin: 0 0 10px;
    color: #475569;
}
.staa-biobox__links a {
    color: #184173;
    font-weight: 600;
    text-decoration: none;
}
.staa-biobox__links a:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
    .staa-biobox { flex-direction: column; }
}
