.channel_block {
    box-sizing: border-box;
    float: left;
    height: 250px;
    padding: 10px;
    position: relative;
    width: 20%;
}

.logo {
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid #dedede;
    border-radius: 50%;
    height: 150px;
    margin: 5px auto;
    width: 150px;
    display: block;
    text-decoration: none;
}

.channel_block .logo:hover{
    -webkit-box-shadow: 0 0 20px -2px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 0 20px -2px rgba(0,0,0,0.5);
    box-shadow: 0 0 20px -2px rgba(0,0,0,0.5);
}

.channel_block h2 {
    color: #3b485e;
    font-size: 1.8em;
    text-align: center;
    margin-top: 152px;
}

/* Single channel page */
.column_wrapper{
    width: 100%;
    display: flex;
    flex-wrap: row;
}

.column_wrapper .column{
    width: 50%;
    min-width: 400px;
    overflow: hidden;
}

.column_wrapper .column.right{
    padding-top: 180px;
}

.column_wrapper .column .section{
    width: calc(100% - 20px);
    padding: 10px;
    font-size: 1.4em;
    line-height: 1.4em;
    min-height: 50px;
}

.column_wrapper .column.right .section{
    border-left: none;
}

.column_wrapper .column .section img{
    width: 100%;
    margin-top: 1.2em;
}

.column_wrapper .column .section h1{
    color: #3b485e;
    font-size: 2.4em;
}

.column_wrapper .column .section.header{
    height: 160px;
}

.column_wrapper .column .section.header .logo{
    margin: 0;
    display: inline-block;
    float: left;
}

.column_wrapper .column .section.header h1{
    color: #3b485e;
    font-size: 4.0em;
    line-height: 150px;
    float: left;
    margin-left: 40px;
    width: 100%;
}


@media screen and (max-width:1346px){
    .channel_block {
        width: 25%;
    }
}

@media screen and (max-width:760px){
    .channel_block {
        width: 50%;
    }
}

@media screen and (max-width:860px){
    .column_wrapper{
        display: block;
    }

    .column_wrapper .column{
        width: 100%;
    }

    .column_wrapper .column.right{
        padding-top: 0;
    }
}