/* 長い作者名でも掲載回数を必ず表示する。名前は縮小限界後にだけ折り返す。 */
.cpl-author-name-line .cpl-author-identity {
    display:grid!important;
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    column-gap:4px;
    width:100%;
    min-width:0;
}
.cpl-author-identity .cpl-author-badge,
.cpl-author-identity .cpl-author-count { position:relative;z-index:2; }
.cpl-author-identity .cpl-author-count { grid-column:3;white-space:nowrap; }
.cpl-author-identity .cpl-name {
    grid-column:2!important;
    min-width:0;
    max-width:100%;
    overflow:hidden;
    text-overflow:clip;
    white-space:nowrap!important;
}
.cpl-author-identity.cpl-fit-wrap .cpl-name {
    overflow:visible;
    white-space:normal!important;
    overflow-wrap:anywhere;
    word-break:break-word;
    line-height:.82!important;
}
