.pb-video-lite {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(244, 63, 94, 0.45);
    border-radius: 0.875rem;
    background: #0e0815;
    box-shadow: 0 0.75rem 2.125rem rgba(0, 0, 0, 0.24);
}

.pb-video-lite__trigger,
.pb-video-lite__stage {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #09060d;
}

.pb-video-lite__trigger {
    border: 0;
    padding: 0;
    color: #fff;
    cursor: pointer;
}

.pb-video-lite__trigger::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 68%, rgba(8, 5, 13, 0.2) 100%);
}

.pb-video-lite__poster,
.pb-video-lite__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pb-video-lite__poster {
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.pb-video-lite__trigger:hover .pb-video-lite__poster {
    transform: scale(1.018);
    filter: saturate(1.06);
}

.pb-video-lite__trigger:focus-visible {
    outline: 3px solid #fb7185;
    outline-offset: -3px;
}

.pb-video-lite__play {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    width: 4.25rem;
    height: 4.25rem;
    transform: translate(-50%, -50%);
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    background: #f43f5e;
    box-shadow: 0 0.5625rem 1.625rem rgba(225, 29, 72, 0.32);
    transition: transform 0.2s ease, background 0.2s ease;
}

.pb-video-lite__trigger:hover .pb-video-lite__play {
    transform: translate(-50%, -50%) scale(1.055);
    background: #fb2c55;
}

.pb-video-lite__play svg {
    width: 1.625rem;
    height: 1.625rem;
    margin-left: 0.2rem;
    fill: #fff;
}

.pb-video-lite__caption {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8125rem 1rem 0.8125rem 1.3125rem;
    background: #100817;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8125rem;
    line-height: 1.35;
}

.pb-video-lite__caption::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0.25rem;
    background: #fb2c55;
}

.pb-video-lite__caption-links {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.375rem 1rem;
}

.pb-video-lite__caption a {
    color: #ff5c7d;
    font-weight: 700;
    text-decoration: none;
}

.pb-video-lite__caption a:hover {
    color: #fda4af;
}

.pb-video-lite--article {
    margin: 2rem 0;
}

@media (max-width: 640px) {
    .pb-video-lite {
        border-radius: 0.875rem;
    }

    .pb-video-lite__play {
        width: 3.5rem;
        height: 3.5rem;
    }

    .pb-video-lite__play svg {
        width: 1.3125rem;
        height: 1.3125rem;
    }

    .pb-video-lite__caption {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: stretch;
        padding: 0;
        font-size: 0.75rem;
    }

    .pb-video-lite__caption > span:first-child {
        display: flex;
        min-width: 0;
        align-items: center;
        overflow: hidden;
        padding: 0 0.75rem 0 1.0625rem;
        font-size: 0;
        white-space: nowrap;
    }

    .pb-video-lite__caption > span:first-child::after {
        content: "4:52";
        color: rgba(255, 255, 255, 0.64);
        font-size: 0.75rem;
    }

    .pb-video-lite__caption-links {
        display: flex;
        width: auto;
        gap: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .pb-video-lite__caption-links a {
        display: inline-flex;
        min-width: 6rem;
        min-height: 2.625rem;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 0.75rem;
    }

    .pb-video-lite__caption-links a + a {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.pb-cross-sell-inline {
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    margin: 1.875rem 0 2.375rem;
    border: 1px solid rgba(244, 63, 94, 0.28);
    border-left: 0.25rem solid #fb2c55;
    border-radius: 0.75rem;
    padding: 1.0625rem 1.125rem 1.0625rem 1rem;
    background: rgba(28, 13, 38, 0.72);
}

.pb-cross-sell-inline__icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: 0.625rem;
    background: rgba(244, 63, 94, 0.11);
    color: #fb7185;
}

.pb-cross-sell-inline__icon svg {
    width: 1.5625rem;
    height: 1.5625rem;
    fill: none;
}

.pb-cross-sell-inline__body {
    min-width: 0;
}

.pb-cross-sell-inline__eyebrow {
    margin-bottom: 0.1875rem;
    color: #fb7185;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
}

.pb-cross-sell-inline__title {
    display: block;
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
}

.pb-cross-sell-inline__text {
    margin: 0.3125rem 0 0 !important;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.75rem;
    line-height: 1.45;
}

.pb-cross-sell-inline__actions {
    display: flex;
    min-width: 8.875rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4375rem;
}

.pb-cross-sell-inline__primary {
    display: inline-flex;
    min-height: 2.375rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: #f43f5e;
    padding: 0.5rem 0.875rem;
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 800;
    text-decoration: none !important;
}

.pb-cross-sell-inline__primary:hover {
    background: #fb2c55;
}

.pb-cross-sell-inline__guide {
    color: #fb7185 !important;
    font-size: 0.6875rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
}

@media (max-width: 640px) {
    .pb-cross-sell-inline {
        grid-template-columns: 2.5rem minmax(0, 1fr) 4.75rem;
        gap: 0.625rem;
        margin: 1.25rem 0 1.75rem;
        padding: 0.75rem;
    }

    .pb-cross-sell-inline__icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .pb-cross-sell-inline__icon svg {
        width: 1.3125rem;
        height: 1.3125rem;
    }

    .pb-cross-sell-inline__title {
        font-size: 0.875rem;
    }

    .pb-cross-sell-inline__eyebrow {
        display: none;
    }

    .pb-cross-sell-inline__text {
        margin-top: 0.1875rem !important;
        font-size: 0;
        line-height: 1.3;
    }

    .pb-cross-sell-inline__text::after {
        content: "One pair · Separate from Trending.";
        font-size: 0.6875rem;
    }

    .pb-cross-sell-inline__actions {
        grid-column: auto;
        display: flex;
        min-width: 0;
        gap: 0.25rem;
    }

    .pb-cross-sell-inline__primary {
        min-height: 2.125rem;
        padding: 0.375rem 0.5rem;
        font-size: 0.6875rem;
    }

    .pb-cross-sell-inline__guide {
        padding: 0.125rem;
        font-size: 0.625rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pb-video-lite__poster,
    .pb-video-lite__play {
        transition: none;
    }
}
