/* Base Flex Grid Engine */
	.faq-grid-container {
	    display: flex;
	    width: 100%;
	    margin-top: 20px;
	    box-sizing: border-box;
	}

	/* Column Rules */
	.faq-main-column {
	    flex: 1;
	    padding-right: 25px;
	    box-sizing: border-box;
	}
	.faq-sidebar-column {
	    width: 350px;
	    padding-left: 25px;
	    border-left: 1px solid #e0e0e0;
	    box-sizing: border-box;
	}

	/* Simplified Fluid Iframe Styles */
	.faq-frame-wrapper {
	    width: 100%;
	}
	#faq-frame {
	    width: 100%;
	    height: 800px; /* This acts as your crisp desktop baseline default height */
	    border: none;
	    display: block;
	    transition: height 0.1s ease; /* Makes height updates nice and fluid */
	}

	/* Sidebar Iframe Sizing */
	.testimonial-frame-wrapper iframe {
	    width: 325px;
	    height: 325px;
	    border: none;
	    display: block;
	    margin: 0 auto;
	}

	/* Mobile responsive collapsing block */
	@media screen and (max-width: 992px) {
	    .faq-grid-container {
	        flex-direction: column;
	    }
	    .faq-main-column {
	        padding-right: 0;
	        margin-bottom: 40px;
	    }
	    .faq-sidebar-column {
	        width: 100%;
	        padding-left: 0;
	        border-left: none;
	        border-top: 1px solid #e0e0e0;
	        padding-top: 30px;
	    }
	}