/* Editable footer and normalised links to imported PDF documents. */
.site-footer {
    position: relative;
    background: linear-gradient(90deg, rgba(10, 8, 7, 0.96), rgba(31, 23, 16, 0.94), rgba(10, 8, 7, 0.96));
    border-top: 0;
}

.site-footer::before {
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 188, 111, 0.8), transparent);
    content: '';
}

.site-footer > * {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem 2rem;
    width: min(calc(100% - 4rem), var(--content));
    margin: 0 auto;
    padding: 1.35rem 0;
}

.site-footer .moduletable {
    padding: 1.35rem 0;
}

.site-footer p {
    margin: 0;
    color: rgba(237, 221, 182, 0.72);
    font-size: 0.8rem;
    letter-spacing: 0.015em;
}

.site-footer p + p {
    color: var(--gold);
    font-size: 0.88rem;
    white-space: nowrap;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
    text-decoration: underline;
}

.site-content a.pdf-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    width: min(100%, 48rem);
    margin: 2rem 0;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(214, 179, 108, 0.48);
    background: linear-gradient(100deg, rgba(226, 188, 111, 0.14), rgba(255, 255, 255, 0.035));
    color: var(--gold-bright);
    text-decoration: none;
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.site-content a.pdf-card:hover,
.site-content a.pdf-card:focus-visible {
    border-color: var(--gold);
    background: rgba(226, 188, 111, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.site-content .pdf-card__icon {
    display: grid;
    place-items: center;
    width: 2.8rem;
    height: 3.2rem;
    border: 1px solid currentColor;
    color: var(--gold);
    font: 600 0.66rem/1 var(--sans);
    letter-spacing: 0.09em;
}

.site-content .pdf-card__label {
    min-width: 0;
    font-family: var(--serif);
    font-size: 1.1em;
    line-height: 1.28;
}

.site-content .pdf-card__action {
    color: var(--gold);
    font: 600 0.76rem/1 var(--sans);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .site-footer > *,
    .site-footer .moduletable {
        display: block;
        width: calc(100% - 2rem);
        padding: 1.05rem 0;
    }

    .site-footer p + p {
        margin-top: 0.35rem;
        white-space: normal;
    }

    .site-content a.pdf-card {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.85rem;
    }

    .site-content .pdf-card__action {
        grid-column: 2;
    }
}
