.author-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #007bff 0%, #0099ff 100%);
    color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    flex-wrap: wrap;
    gap: 20px;
}
.author-info {
    flex: 1 1 60%;
}
.author-info h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}
.author-info .description {
    margin-top: 15px;
    line-height: 1.6;
    text-align: justify;
}
.author-avatar {
    flex: 1 1 30%;
    text-align: center;
}
.author-avatar img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.author-social {
    margin-top: 15px;
}
.author-social a {
    color: white;
    margin: 0 8px;
    font-size: 20px;
    transition: all 0.3s ease;
}
.author-social a:hover {
    color: #ffd700;
}