.author-info-box-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.author-avatar img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.author-name {
    margin: 0;
}

.author-bio p {
    margin: 0;
}

.author-social-icons-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.author-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.author-social-link:hover {
    opacity: 0.8;
}

.author-social-link svg {
    width: 20px;
    height: 20px;
    fill: #333;
    transition: all 0.3s ease;
}