/**
 * Page Cover
 * Shared cover for all inner pages
 */

.page-cover {
    position: relative;
    width: 100%;
    height: 128px; /* 88px + 40px extra height */
    margin-top: 38px; /* height of fixed header */
    overflow: hidden;
}

.page-cover__image {
    position: absolute;
    top: -16px; /* extra height for parallax movement */
    left: 50%;
    width: 100vw;
    height: 160px; /* increased to match taller cover */
    transform: translate3d(-50%, 0, 0);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    will-change: transform;
    pointer-events: none;
}

@media (max-width: 768px) {
    .page-cover {
        height: 128px; /* keep same visual height as desktop */
    }

    .page-cover__image {
        height: 160px;
    }
}
