.l1-authorbox {
    margin: 5% 0;
    font-family: Arial, sans-serif;
    color: #333;
}

.l1-authorbox-intro {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    color: #444;
}

.l1-authorbox-inner {
    display: flex;
    align-items: flex-start;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
}

.l1-authorbox-avatar {
    flex-shrink: 0;
    margin-right: 20px;
}

.l1-authorbox-avatar img {
    width: 133px;
    height: 133px;
}

.l1-authorbox-personal-info {
    flex: 1;
}

.l1-authorbox-name {
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

.l1-authorbox-name:hover {
    color: #005177;
}

.l1-authorbox-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    word-break: break-word;
}

@media (max-width: 600px) {
    .l1-authorbox-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .l1-authorbox-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .l1-authorbox-avatar img {
        width: 115px;
        height: 115px;
    }

    .l1-authorbox-name {
        font-size: 20px;
    }

    .l1-authorbox-description {
        font-size: 15px;
    }
}