.pm-container-1c4b4e15 {
    display: flex;
    overflow: hidden;
}

.pm-left-col-1c4b4e15 {
    flex: 0 0 40%;
    position: sticky;
    top: 40px;
    align-self: flex-start;
}

.pm-right-col-1c4b4e15 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.pm-right-col-1c4b4e15.has-gradients::before,
.pm-right-col-1c4b4e15.has-gradients::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}
.pm-right-col-1c4b4e15.has-gradients::before {
    left: 0;
}
.pm-right-col-1c4b4e15.has-gradients::after {
    right: 0;
}

.pm-eyebrow-1c4b4e15 {
    display: inline-block;
}

.pm-heading-1c4b4e15 {
    margin: 0;
}

.pm-desc-1c4b4e15 p {
    margin: 0;
}

.pm-marquee-row-1c4b4e15 {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.pm-marquee-track-1c4b4e15 {
    display: flex;
    width: max-content;
}

.pm-ltr-1c4b4e15 .pm-marquee-track-1c4b4e15 {
    animation: scrollLTR var(--scroll-speed, 28s) linear infinite;
}

.pm-rtl-1c4b4e15 .pm-marquee-track-1c4b4e15 {
    animation: scrollRTL var(--scroll-speed, 28s) linear infinite;
}

@keyframes scrollLTR {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - (var(--gap, 12px) / 2))); } /* Gap adjustment is handled dynamically by JS for seamless loops, but fallback here */
}

@keyframes scrollRTL {
    from { transform: translateX(calc(-50% - (var(--gap, 12px) / 2))); }
    to { transform: translateX(0); }
}

.pm-card-1c4b4e15 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pm-card-bg-1c4b4e15 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
}

.pm-card-bg-1c4b4e15::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.pm-card-1c4b4e15:hover .pm-card-bg-1c4b4e15 {
    opacity: 1;
}

.pm-card-content-1c4b4e15 {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pm-logo-wrap-1c4b4e15 {
    display: flex;
    align-items: center;
}

.pm-logo-1c4b4e15 {
    object-fit: contain;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.pm-card-1c4b4e15:hover .pm-logo-1c4b4e15 {
    filter: brightness(0) invert(1);
}

.pm-partner-name-1c4b4e15 {
    transition: color 0.3s ease;
}

.pm-category-1c4b4e15 {
    transition: color 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    align-self: flex-start;
}

@media (max-width: 960px) {
    .pm-container-1c4b4e15 {
        flex-direction: column;
    }
    .pm-left-col-1c4b4e15 {
        position: static;
        flex: auto;
    }
}
