/* Gallery */
.gallery-center {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-text {
    max-width: min(70ch, 80vw);
    font-size: var(--h6-fontSize);
    line-height: 1.5;
    text-wrap: balance;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-align: justify;
    margin: 0;
    user-select: none;
    -webkit-user-drag: none;
}

.intro-text a {
    text-decoration: underline;
    color: var(--bg-Colour);
}

mark {
    background-color: var(--b-Colour);
    color: var(--bg-Colour);
}

.hero-image {
    display: none;
    width: 33.33vw;
    max-width: 92vw;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.hero-image-vertical {
    display: none;
    height: 33.33vw;
    max-height: 92vw;
    width: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.back-container {
    display: none;
}

@media screen and (max-width: 786px) {
    .back-container {
        display: flex;
        justify-content: left;
    }

    .back-container a {
        font-size: var(--h6-fontSize);
        text-decoration: none;
        color: var(--b-Colour);
        margin: 1rem;
        z-index: 1000;
    }

    .hero-image {
        width: 75%;
    }

    .hero-image-vertical {
        height: 75%;
    }

    .intro-text {
        max-width: min(70ch, 80vw);
        font-size: var(--r-fontSize);
    }
}