.ropcs,
.ropcs * {
    box-sizing: border-box;
}

.ropcs {
    --ropcs-blue: #009ee3;
    --ropcs-blue-dark: #007fba;
    --ropcs-text: #525252;
    --ropcs-headline: #313131;
    --ropcs-muted: #777777;
    --ropcs-soft: #f5f7fa;
    --ropcs-white: #ffffff;
    --ropcs-card-shadow: 0 2px 9px rgba(49, 49, 49, .14);
    --ropcs-card-width: 224px;
    --ropcs-card-gap: 16px;
    --ropcs-image-height: 170px;
    --ropcs-image-fit: cover;
    --ropcs-max-width: 1650px;

    container-name: ropcs;
    container-type: inline-size;
    display: block;
    width: 100%;
    max-width: var(--ropcs-max-width);
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0 !important;
    background: var(--ropcs-white);
    color: var(--ropcs-text);
    font-family: "Open Sans", sans-serif;
    letter-spacing: 0;
}

.ropcs a {
    text-decoration: none;
}

.ropcs__section-head {
    min-width: 0;
    margin-bottom: 8px;
}

.ropcs .ropcs__eyebrow {
    margin: 0 0 7px !important;
    color: var(--ropcs-blue) !important;
    font-family: "Open Sans", sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase;
}

.ropcs .ropcs__section-title {
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--ropcs-headline) !important;
    background: transparent !important;
    font-family: "Aleo", Georgia, "Times New Roman", serif !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.ropcs__slider-frame,
.ropcs__viewport {
    min-width: 0;
}

.ropcs__slider-frame {
    position: relative;
    isolation: isolate;
}

.ropcs__slider-frame::before,
.ropcs__slider-frame::after {
    position: absolute;
    top: 2px;
    bottom: 14px;
    z-index: 2;
    width: 58px;
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity .14s ease;
}

.ropcs__slider-frame::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0));
}

.ropcs__slider-frame::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0));
}

.ropcs__slider-frame.is-scrollable:not(.is-at-start)::before,
.ropcs__slider-frame.is-scrollable:not(.is-at-end)::after {
    opacity: 1;
}

.ropcs--no-gradient .ropcs__slider-frame::before,
.ropcs--no-gradient .ropcs__slider-frame::after {
    display: none;
}

.ropcs__viewport {
    width: 100%;
    overflow: hidden;
}

.ropcs__track {
    display: flex;
    align-items: stretch;
    gap: var(--ropcs-card-gap);
    width: 100%;
    margin: 0;
    padding: 2px 0 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.ropcs__track::-webkit-scrollbar {
    display: none;
}

.ropcs__card {
    display: flex;
    min-width: 0;
    min-height: 0;
    flex: 0 0 var(--ropcs-card-width);
    flex-direction: column;
    overflow: hidden;
    border: 0 !important;
    border-radius: 0 !important;
    background: var(--ropcs-white) !important;
    box-shadow: var(--ropcs-card-shadow) !important;
    scroll-snap-align: start;
}

.ropcs--fixed-items .ropcs__card {
    flex-basis: calc(
        (100% - (var(--ropcs-visible-items) - 1) * var(--ropcs-card-gap)) /
        var(--ropcs-visible-items)
    );
}

.ropcs__link {
    display: flex;
    height: 100%;
    min-width: 0;
    flex-direction: column;
    color: inherit !important;
}

.ropcs__link:hover,
.ropcs__link:focus {
    color: inherit !important;
    text-decoration: none !important;
}

.ropcs__link:focus-visible {
    outline: 3px solid rgba(0, 158, 227, .35);
    outline-offset: -3px;
}

.ropcs__media {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: var(--ropcs-image-height);
    flex: 0 0 var(--ropcs-image-height);
    overflow: hidden;
    background: var(--ropcs-soft);
}

.ropcs .ropcs__image {
    position: absolute !important;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    object-fit: var(--ropcs-image-fit) !important;
    object-position: center !important;
    transition: transform .2s ease;
}

.ropcs__link:hover .ropcs__image {
    transform: scale(1.025);
}

.ropcs__placeholder {
    position: relative;
    display: block;
    width: 48px;
    height: 38px;
    border: 2px solid #b8c4cc;
}

.ropcs__placeholder::before,
.ropcs__placeholder::after {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: #b8c4cc;
    content: "";
}

.ropcs__placeholder::before {
    top: 12px;
}

.ropcs__placeholder::after {
    top: 21px;
}

.ropcs__content {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 15px 16px 17px;
}

.ropcs .ropcs__name {
    min-height: 44px;
    margin: 0 !important;
    color: var(--ropcs-headline) !important;
    font-family: "Open Sans", sans-serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.28 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.ropcs__cta {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 10px;
    color: var(--ropcs-blue);
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.ropcs__link:hover .ropcs__cta,
.ropcs__link:focus-visible .ropcs__cta {
    color: var(--ropcs-blue-dark);
}

.ropcs .ropcs__nav-button {
    appearance: none;
    position: absolute;
    top: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 76px;
    margin: 0;
    padding: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(245, 247, 250, .94) !important;
    color: var(--ropcs-blue) !important;
    box-shadow: none !important;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%);
    transition: background-color .14s ease, color .14s ease, opacity .14s ease;
}

.ropcs .ropcs__nav-button--prev {
    left: 0;
}

.ropcs .ropcs__nav-button--next {
    right: 0;
}

.ropcs__slider-frame:hover .ropcs__nav-button,
.ropcs__slider-frame:focus-within .ropcs__nav-button {
    opacity: 1;
    pointer-events: auto;
}

.ropcs .ropcs__nav-button:hover:not(:disabled),
.ropcs .ropcs__nav-button:focus-visible:not(:disabled) {
    background: var(--ropcs-blue) !important;
    color: var(--ropcs-white) !important;
    outline: none;
}

.ropcs .ropcs__nav-button:disabled {
    opacity: 0;
    cursor: default;
    pointer-events: none;
}

.ropcs__slider-frame:hover .ropcs__nav-button:disabled,
.ropcs__slider-frame:focus-within .ropcs__nav-button:disabled {
    opacity: .22;
}

.ropcs__nav-icon {
    display: block;
    width: 11px;
    height: 11px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.ropcs__nav-button--prev .ropcs__nav-icon {
    transform: rotate(135deg);
}

.ropcs__nav-button--next .ropcs__nav-icon {
    transform: rotate(-45deg);
}

.ropcs__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    min-height: 24px;
    margin-top: 8px;
}

.ropcs .ropcs__dot {
    appearance: none;
    width: 10px;
    height: 10px;
    margin: 0;
    padding: 0;
    border: 0 !important;
    border-radius: 50% !important;
    background: #e7e7e7 !important;
    cursor: pointer;
}

.ropcs .ropcs__dot.is-active {
    width: 12px;
    height: 12px;
    background: #9d9d9d !important;
}

.ropcs .ropcs__dot:focus-visible {
    outline: 2px solid var(--ropcs-blue);
    outline-offset: 3px;
}

@container ropcs (max-width: 1040px) {
    .ropcs--fixed-items .ropcs__card,
    .ropcs__card {
        flex-basis: 246px;
    }
}

@container ropcs (max-width: 760px) {
    .ropcs .ropcs__section-title {
        font-size: 30px !important;
    }

    .ropcs--fixed-items .ropcs__card,
    .ropcs__card {
        flex-basis: min(84cqw, 320px);
    }

    .ropcs .ropcs__nav-button {
        width: 32px;
        height: 64px;
        opacity: 1;
        pointer-events: auto;
    }

    .ropcs .ropcs__nav-button:disabled {
        opacity: .2;
    }
}

@container ropcs (max-width: 480px) {
    .ropcs .ropcs__section-title {
        font-size: 26px !important;
    }

    .ropcs--fixed-items .ropcs__card,
    .ropcs__card {
        flex-basis: calc(100cqw - 28px);
    }

    .ropcs__media {
        height: min(var(--ropcs-image-height), 180px);
        flex-basis: min(var(--ropcs-image-height), 180px);
    }
}

@supports not (container-type: inline-size) {
    @media (max-width: 1040px) {
        .ropcs--fixed-items .ropcs__card,
        .ropcs__card {
            flex-basis: 246px;
        }
    }

    @media (max-width: 760px) {
        .ropcs--fixed-items .ropcs__card,
        .ropcs__card {
            flex-basis: min(84vw, 320px);
        }

        .ropcs .ropcs__nav-button {
            opacity: 1;
            pointer-events: auto;
        }
    }
}

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

    .ropcs__image,
    .ropcs .ropcs__nav-button,
    .ropcs__slider-frame::before,
    .ropcs__slider-frame::after {
        transition: none;
    }
}

/* Responsive stability layer */

.ropcs {
    max-width: min(var(--ropcs-max-width), 100%);
    min-width: 0;
    overflow: hidden;
}

.ropcs__section-head {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.ropcs__slider-frame,
.ropcs__viewport,
.ropcs__track {
    min-width: 0;
    min-height: 0 !important;
    height: auto !important;
}

.ropcs__track {
    align-items: flex-start;
    padding-bottom: 7px;
}

.ropcs__card {
    height: auto !important;
    align-self: flex-start;
}

.ropcs__media {
    background: var(--ropcs-soft);
}

.ropcs .ropcs__image {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center !important;
}

.ropcs .ropcs__section-title,
.ropcs .ropcs__name,
.ropcs__cta {
    max-width: 100%;
    overflow-wrap: anywhere;
}

@media (max-width: 760px) {
    .ropcs {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .ropcs__section-head {
        margin-bottom: 6px;
    }

    .ropcs .ropcs__section-title {
        font-size: 24px !important;
        line-height: 1.16 !important;
    }

    .ropcs .ropcs__eyebrow {
        margin-bottom: 4px !important;
        font-size: 10px !important;
    }

    .ropcs__track {
        gap: 12px;
        padding: 2px 2px 6px;
        overscroll-behavior-inline: contain;
    }

    .ropcs--fixed-items .ropcs__card,
    .ropcs__card {
        flex-basis: min(82vw, 310px);
        max-width: calc(100% - 28px);
    }

    .ropcs__media {
        height: 220px;
        flex-basis: 220px;
    }

    .ropcs__content {
        padding: 12px 14px 14px;
    }

    .ropcs .ropcs__name {
        min-height: 0;
        font-size: 16px !important;
    }

    .ropcs__cta {
        margin-top: 8px;
        font-size: 12px;
    }

    .ropcs .ropcs__nav-button {
        display: none !important;
    }

    .ropcs__dots {
        gap: 14px;
        min-height: 16px;
        margin-top: 2px;
    }

    .ropcs .ropcs__dot {
        width: 8px;
        height: 8px;
    }

    .ropcs .ropcs__dot.is-active {
        width: 10px;
        height: 10px;
    }

    .ropcs__slider-frame::before,
    .ropcs__slider-frame::after {
        width: 26px;
        bottom: 7px;
    }
}

@supports (width: 1cqw) {
    @media (max-width: 760px) {
        .ropcs--fixed-items .ropcs__card,
        .ropcs__card {
            flex-basis: min(82cqw, 310px);
        }
    }
}

/* Neutral, uncropped category media */

.ropcs__track {
    align-items: stretch;
}

.ropcs__card {
    height: auto !important;
    align-self: stretch;
}

.ropcs__media {
    background: var(--ropcs-white) !important;
}

.ropcs .ropcs__image {
    display: block;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center bottom !important;
}

@media (max-width: 760px) {
    .ropcs { padding-inline: 16px; }
    .ropcs__section-head,
    .ropcs .ropcs__eyebrow,
    .ropcs .ropcs__section-title,
    .ropcs .ropcs__name,
    .ropcs__cta { text-align: left !important; }
    .ropcs__section-head { width: 100%; }
}
