/* Presenting partners — standalone; does not rebuild screen.css */

.pp-section {
    padding-top: 48px;
    padding-bottom: 48px;
    margin-top: 0;
    border-top: 1px solid var(--color-light-gray, #e6e6e6);
    background: var(--color-lighter-gray, #f6f6f6);
}

.pp-section + .gh-foot {
    margin-top: 0;
}

.pp-heading {
    margin: 0 0 1.6rem;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-secondary-text, #999);
    text-align: center;
}

.pp-stage {
    min-height: 7.2rem;
}

.pp-fallback {
    margin: 0;
    text-align: center;
    color: var(--color-secondary-text, #999);
    font-size: 1.4rem;
}

.pp-carousel {
    position: relative;
    display: block;
    padding: 0 4.4rem;
}

.pp-viewport {
    overflow: hidden;
    width: 100%;
    min-width: 0;
}

.pp-track {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.4rem 0.2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pp-track::-webkit-scrollbar {
    display: none;
}

.pp-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 6.4rem;
    padding: 0.4rem 0.8rem;
    box-sizing: border-box;
}

.pp-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.pp-item img {
    display: block;
    max-width: 100%;
    max-height: 4.8rem;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.pp-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid var(--color-light-gray, #e6e6e6);
    border-radius: 999px;
    background: var(--color-white, #fff);
    color: var(--color-darker-gray, #15171a);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}

.pp-control-prev {
    left: 0;
}

.pp-control-next {
    right: 0;
}

.pp-control:hover,
.pp-control:focus-visible {
    border-color: var(--ghost-accent-color, #15171a);
    outline: 2px solid var(--ghost-accent-color, #15171a);
    outline-offset: 2px;
}

.pp-control:disabled {
    opacity: 0.35;
    cursor: default;
}

.pp-random {
    display: flex;
    justify-content: center;
}

.pp-random .pp-item {
    width: min(70vw, 22rem);
}

@media (min-width: 768px) {
    .pp-item {
        flex-basis: calc((100% - 2.4rem) / 2);
        width: calc((100% - 2.4rem) / 2);
    }
}

@media (min-width: 1100px) {
    .pp-item {
        flex-basis: calc((100% - 4.8rem) / 3);
        width: calc((100% - 4.8rem) / 3);
    }
}

@media (max-width: 359px) {
    .pp-control {
        width: 2.4rem;
        height: 2.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pp-track {
        scroll-behavior: auto;
    }
}
