.aib-container {
    position: relative;
    padding-bottom: 24px;
    width: 100%;
}
.aib-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #FFB28A, #8C52FF); /* Default fallback */
}
.aib-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.aib-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(135deg, #FFB28A, #8C52FF); /* Default fallback */
    flex-shrink: 0;
}
.aib-info {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.aib-primary {
    display: flex;
    flex-direction: column;
}
.aib-name {
    font-weight: 600;
    font-size: 16px;
    color: #111;
    line-height: 1.2;
}
.aib-role {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
}
.aib-meta-item {
    font-size: 15px;
    color: #777;
    display: flex;
    align-items: center;
}
.aib-meta-item::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 24px;
    background-color: #e5e5e5;
    margin-right: 24px;
}
@media (max-width: 767px) {
    .aib-info {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
    .aib-meta-item::before {
        display: none;
    }
}