.author-box-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.author-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.author-info {
    flex: 1;
}

.author-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.author-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.5rem 0;
}

.author-name a {
    color: #1a1a2e;
    text-decoration: none;
}

.author-name a:hover {
    color: #667eea;
}

.author-role {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    display: block;
    margin-bottom: 1rem;
}

.author-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 1rem 0;
}

.author-social {
    display: flex;
    gap: 1rem;
}

.author-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s;
}

.author-social a:hover {
    background: #667eea;
    color: #fff;
    transform: translateY(-3px);
}

@media (min-width: 576px) {
    .author-box {
        flex-direction: row;
        align-items: center;
    }
}
