/* Play Abstract Games promo components */

/* Vertical promo rail placed in the free space right of a centered content page.
   Only shown when the gutter is wide enough, so the content is never resized. */
.pag-rail {
    display: none;
    position: fixed;
    top: 50%;
    left: calc(50% + 448px + 1rem);
    transform: translateY(-50%);
    z-index: 1;
}

.pag-rail img {
    display: block;
    max-height: calc(100vh - 2rem);
    width: auto;
    border-radius: var(--radius-m);
}

/* Wide skyscraper (160x600) fits from 1300px, half page (300x600) from 1560px */
@media screen and (min-width: 1300px) {
    .pag-rail {
        display: block;
    }

    .pag-rail .pag-half-page {
        display: none;
    }
}

@media screen and (min-width: 1560px) {
    .pag-rail .pag-half-page {
        display: block;
    }

    .pag-rail .pag-wide-skyscraper {
        display: none;
    }
}

/* Hide the rail when the viewport is too short for a 600px tall creative */
@media screen and (max-height: 640px) {
    .pag-rail {
        display: none;
    }
}

/* Horizontal leaderboard banner (728x90), scales down on narrow screens */
.pag-leaderboard {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 2rem 0;
}

.pag-leaderboard img {
    display: block;
    width: 100%;
    max-width: 728px;
    height: auto;
    border-radius: var(--radius-m);
}
