.channel-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}
.channel-list-item {
    width: 31.2%;
    margin-bottom: 3.2%;
}
.channel-list-item__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    border: solid 4px #f80;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px 0px 5px;
}
.channel-list-item__content:hover {
    text-decoration: none;
    opacity: 1;
    background-color: #fffded;
}
.channel-list-item__icon {
    width: 60px;
}
.channel-list-item__title {
    color: #333;
    font-size: 18px;
    margin-bottom: 5px;
}
.channel-list-item__content:hover .channel-list-item__title {
    color: #f80;
}
.channel-list-item__info {
    display: flex;
    justify-content: space-around;
    width: 86%;
    gap: 10px;
    color: #5A5A5A;
    font-size: 10px;
}
.channel-list-item__info .date:last-child {
    margin-left: auto;
}
.channel-list-item__info .material-icons-round {
    color: #777;
    font-size: 14px;
    vertical-align: text-bottom;
    padding-right: 3px;
}


@media screen and (max-width: 600px) {

.channel-list-item__content {
    padding-top: 15px;
}
.channel-list-item {
    width: 48%;
    margin-bottom: 4%;
}
.channel-list-item__icon {
    width: 50px;
}
.channel-list-item__title {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
}

}