.page-heading {
    width: 100%;
    position: relative;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-page-header);
    background: var(--color-bg-page-header);
}
.page-heading hgroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    z-index: 5;
}
.page-heading .heading-decor {
    width: 100%;
    height: 100%;
    overflow: clip;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.page-heading .heading-decor img {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.05;
    mix-blend-mode: luminosity;
    z-index: 2;
}
.page-heading h1 {
    font-family: "Oswald", "DM Sans", "Helvetica", sans-serif;
    font-weight: 600;
    font-size: 2.25rem;
    line-height: 1.25;
    text-wrap-style: balance;
    text-align: center;
}
.page-heading p {
    display: block;
    font-size: 1.5rem;
    line-height: 1.25;
    text-wrap-style: balance;
    text-align: center;
}

/* FRONT/HOME PAGE ONLY */
#front-page .page-heading {
    color: var(--color-text-heading);
    background: none;
}
#front-page .page-heading hgroup {
    position: relative;
    width: 100%;
    background: var(--color-bg-home-header-cover);
    padding: 1.5rem;
    margin-block: 4rem;
}
#front-page .page-heading h1 {
    font-size: 3rem;
}
#front-page .page-heading img.image-unblurred {
    height: 60vh;
}