/*
 * Styles for the Video Front Page Widget
 */

/* Generic wrapper */
#wazoku-video-showcase-wrapper {
    background: rgba(203, 203, 203, 0.2);
    padding: 1.5em;
}

/* Content wrapper */
#wazoku-video-showcase-content {
    max-width: 1024px;
    display: block;
    overflow: auto;
    margin: 0 auto;
}

/* Main video */
#wazoku-video-active iframe {
    min-height: 20em;
    max-height: 20em;
    width: 100%;
}

/* Video thumbnail */
.wazoku-video-thumb {
    border-radius: 10px;
}

/* Video headline text */
#wazoku-video-textbox h1 {
    font-size: 1.25em;
    color: #003f5d;
    padding: 0.5em 0;
}

/* Video textbox */
#wazoku-video-textbox {
    text-align: justify;
    margin: 0% 1.5%;
    padding: 1.5% 0;
    width: 47%;
}

/* Video textbox text */
#wazoku-video-textbox p {
    font-size: 1em;
}

/* --- Media Queries --- */

@media only screen
and (max-width: 767px) {
    #wazoku-video-active {
        padding: 0;
    }

    #wazoku-video-textbox {
        word-wrap: break-word;
        width: 97.5%;
    }

    .wazoku-video-thumb {
        display: block;
        padding: 1em 0;
    }
}