.kwa-author-box {
    margin: 30px auto;
    padding: 30px 25px;
    border-radius: 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.kwa-author-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.kwa-avatar-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50% !important;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
}

.kwa-avatar-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    margin: 0 !important;
    display: block;
}

.kwa-avatar-empty {
    color: #333333;
    font-size: 42px;
    font-weight: 800;
}

.kwa-author-role {
    display: inline-block;
    background-color: #ffffff;
    color: #333333;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.kwa-author-name {
    margin: 0 0 12px 0 !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    line-height: 1.3;
}

.kwa-author-bio {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 680px;
}

.kwa-author-bio a {
    color: inherit;
    text-decoration: underline;
    font-weight: bold;
}

.kwa-author-bio p {
    margin: 0 0 10px 0;
    color: inherit;
}

.kwa-author-bio p:last-child {
    margin-bottom: 0;
}

.kwa-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.kwa-social-links a {
    color: inherit;
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: inline-flex;
    padding: 4px;
}

.kwa-social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.kwa-author-button {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.kwa-author-button:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}