.author-box-763 {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    gap: 20px;
}

.author-box-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.author-box-content {
    flex: 1;
}

.author-box-name {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    color: #333;
}

.author-box-title {
    margin: 0 0 15px 0;
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.author-box-links {
    display: flex;
    gap: 15px;
}

.author-box-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.author-box-link.linkedin {
    background-color: #0077b5;
    color: #fff;
}

.author-box-link.linkedin:hover {
    background-color: #005582;
}

.author-box-link.know-more {
    background-color: #333;
    color: #fff;
}

.author-box-link.know-more:hover {
    background-color: #111;
}

@media (max-width: 600px) {
    .author-box-763 {
        flex-direction: column;
        text-align: center;
    }
    
    .author-box-links {
        justify-content: center;
    }
}