.small_channel {
    width: 100%;
    min-width: 150px;
    position: relative;
}

.small_channel .channel_banner {
    width: 100%;
    height: 150px;
    padding: 0px;
    cursor: pointer;
    position: relative;
}

.small_channel .channel_banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.small_channel .channel_title {
    position: absolute;
    width: calc(100% - (108px + 16px));
    padding: 16px;
    color: white;
    font-size: 1.5em;
    background-color: rgba(0, 0, 0, 0.5);
    padding-left: 108px;
    left: 0;
    bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-height: 44px;      /* fallback */
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.small_channel .lower_channel {
    width: calc(100% - 32px);
}

.small_channel .channel_avatar {
    position: absolute;
    width: 72px;
    height: 72px;
    top: 80px;
    left: 16px;
    border: solid white 4px;
}

.small_channel .channel_description {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 24px;     /* fallback */
    max-height: 72px;      /* fallback */
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
}

.small_channel .channel_description {
    width: calc(100%);
}

.small_channel:hover {
    z-index: 2;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.12), 0px 6px 6px 0px rgba(0,0,0,0.24);
}
