@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@300;400;600;700&display=swap');

.commencement__messages {
    width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}

@media screen and (max-width: 1199px) {
    .commencement__messages {
        width: 940px;
    }
}

@media screen and (max-width: 990px) {
    .commencement__messages {
        width: 720px;
    }
}

@media screen and (max-width: 767px) {
    .commencement__messages {
        width: 100%;
        padding: 2rem 1rem;
    
    }
}

.commencement__messages>span {
    display: block;
    font-family: acumin-pro-semi-condensed;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    
}

.message-group {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    border-top: 1px solid black;
    
}

.message-group h2 {
    margin-top: 0;
}

.message-group>span {
    display: block;
    font-family: acumin-pro-semi-condensed;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.videos-container {
    display: flex;
}

.video-group{
    display: flex;
}

.videos-container.is-multiple {
    flex-wrap: wrap;
    justify-content: space-between;
}

.videos-container.is-multiple .video-group {
    flex-basis: 48.5%;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 990px) {
    .videos-container.is-multiple .video-group {
        flex-basis: 100%;
    }
}

.videos-container.is-multiple iframe {
    width: 100%;
    height: 300px;
    margin-bottom: 0.5rem;
    background: black;
}

@media screen and (max-width: 1199px) {
    .videos-container.is-multiple iframe {
        height: 250px;
    }
}

@media screen and (max-width: 990px) {
    .videos-container.is-multiple iframe {
        height: 390px;
    }
}

@media screen and (max-width: 767px) {
    .videos-container.is-multiple iframe {
        height: 365px;
    }
}

@media screen and (max-width: 600px) {
    .videos-container.is-multiple iframe {
        height: 300px !important;
    }
}

@media screen and (max-width: 460px) {
    .videos-container.is-multiple iframe {
        height: 235px !important;
    }
}

.videos-container.is-quoted .video-group {
    flex-basis: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.videos-container.is-quoted .video-group .video-title {
    flex-basis: 100%;
}

.videos-container.is-quoted .video-group .video-quote {
    flex-basis: 32%;
}

.videos-container.is-quoted iframe {
    width: 100%;
    height: 390px;
    margin-bottom: 0.5rem;
    flex-basis: 65%;
    background: black;
}

@media screen and (max-width: 1199px) {
    .videos-container.is-quoted iframe {
        flex-basis: 75%;
    }
}

@media screen and (max-width: 990px) {
    .videos-container.is-quoted iframe {
        flex-basis: auto;
    }
}

@media screen and (max-width: 767px) {
    .videos-container.is-quoted iframe {
        height: 365px;
    }
}

@media screen and (max-width: 600px) {
    .videos-container.is-quoted iframe {
        height: 300px !important;
    }
}

@media screen and (max-width: 460px) {
    .videos-container.is-quoted iframe {
        height: 235px !important;
    }
}

.video-title {
    margin-top: 0;
}

.video-caption {
    font-family: acumin-pro;
    font-size: 1rem;
    font-style: italic;
    color: #555960;
}

.video-quote {
    border-left: 4px solid #8E6F3E;
    padding: 1.5rem;
    font-family: 'Source Serif Pro';
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.video-quote .quote-source {
    font-family: "United Sans Condensed";
    font-size: 1rem;
    color: #8E6F3E;
    text-transform: uppercase;
}


























