.data-author {
    position: sticky;
    top: 49px;
    z-index: 1000;
    background: #f1f5f9;
    box-sizing: border-box;
    box-shadow: var(--boxShadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.1s ease-in-out;
}

.clip-text-preview__additional .data-author {
    position: static;
    max-height: none;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.data-author.sticky-active {
    max-height: 100px;
}

.data-author .fence {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    padding: 10px;
    width: 89%;
    height: 70px;
}

.data-author .g {
    flex: 0 0 auto;
    height: 100%;
}

.data-author .g img {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadow);
}

.data-author .i {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.data-author .i h2 {
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.data-author .i .f {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
}

.data-author .i .f img {
    max-height: 100%;
}

@media (max-width: 480px) {
    .data-author {
        top: 4px;
    }

    .data-author .i h2 {
        margin: 0;
        padding: 5px 0 0 0;
        font-size: 0.7rem;
    }
}
