.channel-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 20px 0;
}

.channel-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 70px;
    border: 1px solid #ccc;
    padding: 5px;
    box-sizing: border-box;
    font-size: 9px;
    text-align: center;
    margin: 10px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.channel-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
    object-fit: contain;
	display: block;
}

.channel-card strong {
    display: block;
    text-align: center;
    line-height: 1.2em;
    max-height: 60px;
    overflow: hidden;
    word-wrap: break-word;
}
