.flex-layout.sticky_cards-layout {
    isolation: isolate;
    position: relative;
    background: var(--pk-red);
}

.flex-layout.sticky_cards-layout .pk-wrapper {
    width: 100%;
    display: grid;
    grid-template-areas: "stack";
}
.flex-layout.sticky_cards-layout .flex_container_inner {
    grid-area: stack;
    max-width: var(--site-grid);
    max-width: 100%;
    width: inherit;
    margin-inline: auto;
	padding-inline: max(3rem, calc(3 * var(--su)));
}
.flex-layout.sticky_cards-layout .flex_container::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(-90deg, transparent, rgba(0, 0, 0, 0.8));
}

.sticky_cards-layout .content_wrapper,
.sticky_cards-layout .content_wrapper .pk-heading {
    color: var(--pk-white);
}

.sticky_cards-layout .content_wrapper{
	max-width: max(33.125rem, calc(33.125 * var(--su)));
}

.flex-layout.sticky_cards-layout .image {
    position: sticky;
    height: 100vh;
    top: 0;
    grid-area: stack;
    z-index: -2;
}

.flex-layout.sticky_cards-layout .image .pk-image-inner::before {
    content: "";
    position: absolute;
    top: -0.1rem;
    left: 0;
    width: 30rem;
    aspect-ratio: 621/154;
    background-position: top;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22622%22%20height%3D%22154%22%20viewBox%3D%220%200%20622%20154%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M621.983%200C613.658%200%20605.66%203.24497%20599.688%209.0459L492.715%20112.954C486.743%20118.755%20478.745%20122%20470.419%20122H32C14.3269%20122%209.4062e-06%20136.327%200%20154V32C0%2014.3269%2014.3269%203.2213e-08%2032%200H621.983Z%22%20fill%3D%22%23FF5041%22%2F%3E%3C%2Fsvg%3E");
    z-index: 1;
}
.flex-layout.sticky_cards-layout .image .pk-image-inner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        109.91deg,
        rgba(0, 0, 0, 0.7) 1.93%,
        rgba(0, 0, 0, 0) 68.14%
    );
}
.flex-layout.sticky_cards-layout .image .pk-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: max(2rem, calc(2 * var(--su)));
    overflow: hidden;
}
.flex-layout.sticky_cards-layout .image img {
    position: absolute;
    inset: 0;
    max-width: unset;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.flex-layout.sticky_cards-layout .flex_container_inner .content_container {
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-right: auto;
}

.flex-layout.sticky_cards-layout
    .flex_container_inner
    .content_container
    .content_wrapper {
    margin-block: auto;
    height: fit-content;
}

.flex-layout.sticky_cards-layout .pk-cards-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.flex-layout.sticky_cards-layout .pk-cards-container {
    margin-block: 10vh;
}

.flex-layout.sticky_cards-layout .pk-cards-wrapper {
    margin-block: 50px;
}

.sticky_cards-layout .pk-sticky-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-block: max(2.5rem, calc(2.5 * var(--su)));
    padding-inline: max(3rem, calc(3 * var(--su)));
    border-radius: max(1.5rem, calc(1.5 * var(--su)));
    background: var(--pk-white);
}

.sticky_cards-layout .pk-sticky-card .card-top {
    margin-bottom: max(2.5rem, calc(2.5 * var(--su)));
}

.sticky_cards-layout .pk-sticky-card .card-top .pk-card-image {
    position: absolute;
    top: max(-4rem, calc(-4 * var(--su)));
    top: -3.5rem;
    right: max(3rem, calc(3 * var(--su)));
    width: max(5.5rem, calc(5.5 * var(--su)));
}

.sticky_cards-layout .pk-sticky-card .card-top .pk-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sticky_cards-layout .pk-sticky-card .counter {
    width: fit-content;
    padding: max(0.5rem, calc(0.5 * var(--su)));
    padding-inline: max(0.75rem, calc(0.75 * var(--su)));
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    border-radius: max(0.5rem, calc(0.5 * var(--su)));
    background: rgba(245, 245, 246, 0.8);
}

.sticky_cards-layout.pk-sticky-card .counter::before {
    content: "";
    background-color: var(--pk-red);
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    order: 2;
}

.sticky_cards-layout .pk-sticky-card .counter .total {
    order: 3;
}

.sticky_cards-layout .pk-sticky-card h4,
.sticky_cards-layout .pk-sticky-card .content {
    color: inherit;
    margin-bottom: 0;
    color: var(--pure-black);
}

.sticky_cards-layout .pk-sticky-card h4 div {
    color: var(--pure-black);
}

.sticky_cards-layout .pk-sticky-card .counter {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    color: var(--circuit-blue);
    font-size: var(--body-xl);
}

.sticky_cards-layout .pk-sticky-card .counter::before {
    content: "";
    background-color: var(--pk-red);
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 999px;
    order: 2;
}
.sticky_cards-layout .pk-sticky-card .counter .total {
    opacity: 0.5;
    order: 3;
}

.sticky_cards-layout .pk-sticky-card .pk-points-list {
    display: flex;
    flex-wrap: wrap;
    gap: max(0.5rem, calc(0.5 * var(--su)));
    max-width: max(25.625rem, calc(25.625 * var(--su)));
    margin-top: max(1.5rem, calc(1.5 * var(--su)));
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}

.sticky_cards-layout .pk-sticky-card .pk-point {
    position: relative;
    display: flex;
    padding: max(0.75rem, calc(0.75 * var(--su)));
    margin: 0;
    border: 1px solid rgba(56, 65, 84, 0.6);
    border-radius: max(0.5rem, calc(0.5 * var(--su)));
}

.sticky_cards-layout .pk-sticky-card .pk-point::before {
    font-family: "Material Symbols Outlined";
    content: "\e5ca";
    flex-shrink: 0;
    font-size: max(1rem, calc(1 * var(--su)));
}

@media only screen and (max-width: 767px) {
    .flex-layout.sticky_cards-layout .flex_container_inner {
        flex-direction: column;
    }

    .flex-layout.sticky_cards-layout .pk-cards-container {
        z-index: 2;
        margin-right: 0;
    }

    .flex-layout.sticky_cards-layout .flex_container_inner .content_container {
        z-index: 1;
    }

    .flex-layout.sticky_cards-layout .pk-cards-container,
    .flex-layout.sticky_cards-layout .flex_container_inner .content_container {
        width: 100%;
    }

    .flex-layout.sticky_cards-layout .content_wrapper {
        margin-top: 150px;
    }

    .flex-layout.sticky_cards-layout .pk-sticky-card {
        padding: 1.5rem 2rem;
    }
}
