/**
 * Thought Leadership
 *
 */
 
/* Custom class for Thought Leadership */
.thought-leadership {}

/* Accent Image */
.thought-leadership .image-accent > img {
	width: 100%;
    height: auto;
}

/* Accent image text column */
.thought-leadership .image-text {
	padding: 0px 0px 0px 30px;
}

/* Video container */
.thought-leadership.video-wrapper {
	margin-bottom: 40px;
}
.thought-leadership .video-container {
	margin-bottom: 0px;
}

/* Video text column */
.thought-leadership .video-text {
	padding: 0px 0px 0px 30px;
}

/* WCM 768 Breakpoint */
@media (max-width: 1023px) {
    /* Adjust video containers */
    .thought-leadership.video-wrapper {
    	-webkit-flex-wrap: wrap; /* Safari/iOS Support */
        -ms-flex-wrap: wrap; /* IE Support */
        flex-wrap: wrap; /* Standard */
    }
    .thought-leadership.video-wrapper > .flex-item {
        width: 100%;
    }
    
    /* Adjust video text */
    .thought-leadership .video-text {
        padding: 15px 0px 0px 0px;
    }
}

/* WCM 640 Breakpoint */
@media (max-width: 767px) {
    /* Adjust image container */
    .thought-leadership.image-wrapper {
    	-webkit-flex-wrap: wrap; /* Safari/iOS Support */
        -ms-flex-wrap: wrap; /* IE Support */
        flex-wrap: wrap; /* Standard */
    }
    .thought-leadership.image-wrapper > .flex-item {
        width: 100%;
    }
    
    /* Adjust image text */
    .thought-leadership .image-text {
        padding: 15px 0px 0px 0px;
    }
}