/* ================================================ */
/* UNIVERSAL VIDEO SECTION STYLES */
/* ================================================ */

/* Base Video Section Layout */
.whats-new-video-left,
.whats-new-video-right {
    padding: 65px 0;
    display: flex;
    justify-content: center;
}

.whats-new-video-left .whats-new-content-wrapper {
    display: flex;
    width: 100%;
}

.whats-new-video-right .whats-new-content-wrapper {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
}

/* Video and Text Containers */
.whats-new-video-container {
    width: 60%;
}

.whats-new-text-container {
    width: 40%;
}

/* Video Player Styling */
.whats-new-video-player {
    width: 100%;
    display: block;
}

.whats-new-video-left .whats-new-video-player {
    border-radius: 0 15px 15px 0;
}

.whats-new-video-right .whats-new-video-player {
    border-radius: 15px 0 0 15px;
}

/* Text Content Styling */
.whats-new-text-content {
    width: 75%;
    margin: 0 auto;
}

.whats-new-video-caption {
    font-size: 14px;
    font-style: italic;
    text-align: center;
    margin: 0;
    padding: 0 20px;
    font-weight: lighter;
    color: #ccc;
}

.whats-new-title {
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    padding-top: 0;
    font-size: 2rem;
    text-align: left;
}

.whats-new-subtitle {
    color: #fff;
    margin: 0;
    padding-top: 0;
    font-size: 1.125rem;
    text-align: left;
}

.whats-new-subtitle a {
    color: #0093fe;
    text-decoration: none;
}

.whats-new-subtitle a:hover {
    text-decoration: underline;
}

.whats-new-title-divider {
    width: 50%;
    padding: 1px 0 20px 0;
}

.whats-new-title-divider hr {
    display: block;
    border-color: #0093fe;
    border-bottom-width: 1px;
    box-sizing: border-box;
    border-top: 0;
    margin: 0;
}

.whats-new-description {
    color: #fff;
    font-size: 1.375rem;
    font-weight: lighter;
    line-height: 1.5;
    margin: 0 0 20px 0;
    text-align: left;
}

.whats-new-mobile-title-container {
    display: none;
    padding: 0 20px;
}

.whats-new-button {
    margin-top: 20px;
}

.whats-new-button .trial-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #0093fe;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.whats-new-button .trial-button:hover {
    background-color: #0080e6;
}

/* ================================================ */
/* RESPONSIVE DESIGN */
/* ================================================ */

/* Tablet and Mobile */
@media only screen and (max-width: 1240px) {
    .whats-new-video-left,
    .whats-new-video-right {
        padding: 35px 0 5px 0;
    }

    .whats-new-video-left .whats-new-content-wrapper,
    .whats-new-video-right .whats-new-content-wrapper {
        flex-direction: column !important;
    }

    .whats-new-video-container,
    .whats-new-text-container {
        width: 100%;
    }

    .whats-new-text-container {
        padding-bottom: 20px;
        text-align: center;
    }

    .whats-new-text-content {
        width: 90%;
    }

    .whats-new-video-player {
        border-radius: 0 !important;
    }

    .whats-new-title-divider {
        width: 100%;
    }

    .whats-new-title {
        display: none;
    }

    .whats-new-subtitle {
        display: none;
    }

    .whats-new-mobile-title-container {
        display: block;
    }
}

@media only screen and (max-width: 600px) {
    .whats-new-description {
        font-size: 1rem;
    }
}

@media only screen and (min-width: 601px) and (max-width: 1240px) {
    .whats-new-description {
        font-size: 1.1rem;
    }
}

@media only screen and (min-width: 781px) and (max-width: 1240px) {
    .whats-new-text-content {
        width: 75%;
        padding: 0;
    }
}
