.qrise-video-text-block {
    display: flex;
    align-items: center;
    padding: 50px 0;
    gap: 50px;
}

.qrise-video-container {
    flex: 1;
    position: relative;
    padding-bottom: 45%; /* Adjusted from 56.25% for less height */
    height: 0;
}

.qrise-youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.qrise-youtube-embed iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.qrise-text-container {
    flex: 1;
}

.qrise-text-container h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .qrise-video-text-block {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .qrise-video-container {
        width: 100%;
    }

    .qrise-text-container h3 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
} 