/* page header */
.page-header {
    background-position: center center;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    padding: 8rem 0 !important;
}
@media all and (min-width: 992px){
    .page-header {
        background-position: center right;
        box-shadow: inset 0 0 0 2000px rgba(1, 30, 38, 0.3);
    }
    .page-header-content {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        border-radius: 0.25rem;
        padding: 0.5rem 2rem;
        width: 50%;
    }
    .page-header-content > * {
        text-align: left;
    }
}
.page-header-content > * {
    color: white;
    
}
.page-header-content h1 {
    font-size: 1.875rem;
}
/* promo tiles */
.responsive-tiles {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat( auto-fit, minmax(min(250px, 100%), 1fr) );
    margin: 2rem 0;
}
.tile {
    background: white;
    border: solid 1px #ccc;
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.tile .tile-image {
    margin: 0;
    width: 100%;
}
.tile .tile-content, .tile.tile-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem;
}
.tile-content h3 {
    font-weight: bold;
}
.tile-content .btn {
    margin: auto 0 0 0;
}
/* banding */
.white-row {
    background: white;
    padding: 2rem 0;
}
.grey-row {
    padding: 2rem 1rem;
}
/* more info links */
ul.linked-list a {
    display: inline;
}
ol, ul {
    font-size: 1.125rem !important;
}
ol {
    padding-left: 1.5rem;
}
ol li {
    padding: 0.5rem;
}

.tile-border-yellow {
    border-left: solid 1rem #f79131;
}

/* used for row with callout and video */

.two-col-video-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
.two-col-video-row .video {
    display: flex;
    flex: 1;
}
.two-col-video-row iframe {
    aspect-ratio: 16 / 9;
    border: solid 1px #ccc;
    border-radius: 0.25rem;
    width: 100%;
}
@media all and (min-width: 768px){
    .two-col-video-row {
        flex-direction: row;
    }
}