﻿
/* ============ cover-photo ============ */
header.cover-photo {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: top right;
    background-attachment: scroll;
    background-size: cover;
    background-image: var( --cover-photo-image-url);
}

    header.cover-photo .spacer {
        height: 25rem;
    }

/* ============ inline list separators ============ */
.list-inline-w-separators {
    display: block;
}

    .list-inline-w-separators li {
        display: inline-block;
    }

        .list-inline-w-separators li:after {
            content: '|';
            margin: 0 10px;
        }

        .list-inline-w-separators li:last-child:after {
            content: '';
        }
