.wtn-main-container {
    border: 1px solid #DDD;
    width: 100%;
    min-height: 100px;
    padding: 5px 10px;
}

.wtn-feed-container {
    border-bottom: 1px solid #DDD;
    width: 100%;
    min-height: 50px;
    padding: 5px 0px;
    display: flex;
    padding-bottom: 10px;
}

.wtn-img-container {
    border: 2px solid #DDD;
    width: 200px;
    height: 120px;
    margin-right: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.wtn-img-container .wtn-img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.wtn-img-container:hover .wtn-img,
.wtn-img-container:focus .wtn-img {
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.wtn-img-container .wtn-img:before {
    content: "";
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.wtn-img-container:hover .wtn-img:before,
.wtn-img-container:focus .wtn-img:before {
    display: block;
}

.wtn-feeds {
    flex: 1;
    border: 0px solid #FF0000;
    width: 69.8%;
    min-height: 70px;
    padding: 0;
    margin: 0;
}

.wtn-feeds a.wtn-feeds-title {
    border: 0px solid #000;
    margin: 0!important;
    padding: 0!important;
    font-size: 16px;
    line-height: 22px!important;
    font-weight: 600;
    text-decoration: none!important;
    box-shadow: none;
    -webkit-box-shadow: none;
    color: #242424;
    display: inline-block;
}

.wtn-feeds a.wtn-feeds-title:hover {
    color: #999;
}

.wtn-feeds .wtn-feeds-description {
    border: 0px solid #000;
    margin: 10px 0 10px 0!important;
    padding: 0!important;
    font-size: 14px;
    line-height: 22px;
    color: #242424;
}

.wtn-feeds span {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
    display: block;
    line-height: 12px;
}

a.wtn-powered-by,
a.wtn-powered-by:hover {
    font-size: 11px;
    text-decoration: none;
    color: #CCC;
    box-shadow: none;
    -webkit-box-shadow: none;
    width: 100%;
    text-align: center;
    display: block;
    padding-top: 5px;
}


/* StyleSheet for Grid View */

.wtn-main-wrapper {
    width: 100%;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(2, 1fr);
}

.wtn-main-wrapper .wtn-item {
    border: 1px solid #DDD;
    padding: 5px;
    min-height: 280px;
    text-align: left;
}

.wtn-main-wrapper .wtn-item .wtn-img-container {
    width: 100%;
    height: 200px;
}

.wtn-main-wrapper .wtn-item a {
    font-size: 16px;
    display: inline-block;
    border: 0px solid #000;
    width: 100%;
    outline: none;
    color: #111;
    font-weight: 600;
    line-height: 24px;
    margin: 10px 0px;
    letter-spacing: initial;
}

.wtn-main-wrapper .wtn-item a:active {
    outline: none;
    text-decoration: none!important;
}

.wtn-main-wrapper .wtn-item a:hover {
    color: #999;
}

.wtn-main-wrapper .wtn-item p {
    border: 0px solid #000;
    margin: 0!important;
    margin-bottom: 10px!important;
    padding: 0!important;
    color: #242424;
    line-height: 20px;
    min-height: 70px;
    letter-spacing: initial;
}

.wtn-main-wrapper .wtn-item span {
    font-size: 11px;
    display: inline-block;
    border: 0px solid #000;
    width: 100%;
    margin: 0px!important;
    padding: 0px!important;
    line-height: 20px;
}


/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */

@media(max-width:500px) {
    .wtn-main-wrapper .wtn-item {
        width: 100%;
    }
    .wtn-main-wrapper .wtn-item img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 800px) and (min-width: 501px) {
    .wtn-main-wrapper .wtn-item {
        width: 48.88%;
    }
}

@media only screen and (max-width: 1200px) and (min-width: 801px) {
    .wtn-main-wrapper .wtn-item {
        width: 31.90%;
        min-height: 297px;
    }
}

@media(max-width:500px) {
    .wtn-feed-container {
        display: block;
    }
    .wtn-img-container {
        width: 100%;
        margin-bottom: 10px;
    }
    .wtn-img-container img {
        width: 100%;
    }
    .wtn-feeds {
        width: 100%;
    }
}