  .youtube_videos {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    aspect-ratio: 16 / 9;
    background-color: var(--gray_20);
    background-size: cover;
    background-repeat: no-repeat;;
    background-position: center center;
  }
.play_button {
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.play_button a {
    display: block;
    cursor: pointer;
    background-color: rgba(255,255,255,.5);
    backdrop-filter: blur(8px);
    margin-top: 32px;
    padding: 7%;
    border-radius: 50%;
    border: 2px solid transparent;
    font-size: 200%;
    font-style: normal;
    color: var(--white);
}
.play_button a::after {
    display: block;
    font-family: "Font Awesome 6 Free";
    font-size: 2.5rem;
    content:'\f04b';
    transform: translateX(4px);
}
.play_button a:hover {
    background-color: var(--royal_10);
    border: 2px solid var(--white);
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .14),
              0 1px 18px 0 rgba(0, 0, 0, .12),
              0 3px 5px -1px rgba(0, 0, 0, .2);
}
.youtube_videos a:hover {
    color: var(--royal);
    scale: 1.125;
}
.video_text {
    padding: 16px;
    color: var(--white);
    font-size: 100%;
    font-weight: bold;
    text-align: center;
    background: rgb(2,0,36);
    background: linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,.7) 80%);
    text-shadow: 0 2px 3px rgba(0,0,0,0.3);
}
.youtube_videos > iframe {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* OTHER EMBEDDED VIDEOS */
.responsive-video iframe,
.responsive-video video {
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  border: unset;
}

@media (max-width: 767.98px) {
.flex-2 .play_button a {
    padding: 4%;
}
.flex-4 .video_text {
    font-size: 150%;
}
}
@media (max-width: 767.98px) {
.video_text {
    font-size: 135%;
}
}
@media (min-width: 576px) and (max-width: 767.98px) {
.flex-4 .video_text {
    font-size: 135%;
}
}
@media (min-width: 768px) and (max-width: 991.98px) {
.video_text {
    font-size: 150%;
}
.flex-4 .video_text {
    font-size: 110%;
}
}
@media (min-width: 992px) {
.flex-4 .video_text {
    padding: 8px;
  }
}
.flex-1 .play_button a {
    padding: 3%;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
.video_text {
    font-size: 130%;
}
.flex-4 .video_text {
    font-size: 100%;
}
}
@media (min-width: 1200px) {
.video_text {
    font-size: 130%;
}
.flex-4 .video_text {
    font-size: 100%;
}
}