/* Decorative ribbon + title watermark background, reused on standalone
   content pages (Who We Are, Publishers, Creators, Archive). Purely visual -
   sits behind whatever editorial content Ghost renders, never affects it. */

.content-page-decor {
    --ribbon-color: var(--ghost-accent-color, #4a9e6e);
    position: relative;
}

.content-page-decor > *:not(.content-page-ribbon):not(.content-page-watermark) {
    position: relative;
    z-index: 1;
}

.content-page-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: min(760px, 70vh);
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.content-page-ribbon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.content-page-watermark {
    position: absolute;
    top: max(64px, calc(6vw * var(--scale)));
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    display: block;
    max-width: 92vw;
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    font-family: var(--font1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-size: max(56px, calc(6.5vw * var(--scale)));
    line-height: 1;
    color: var(--ribbon-color, #4a9e6e);
    opacity: 0.1;
}

@media screen and (max-width: 767px) {
    .content-page-watermark {
        font-size: max(36px, calc(13vw * var(--scale)));
    }
}
