.cta_grid-layout {
    position: relative;
    padding: 0 20px;
    padding-bottom: 200px;
    background: var(--pk-white);
    --after-top: 0px;
	overflow: hidden;
}

.cta_grid-layout::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;

    top: var(--after-top);
    height: 100%;
    background-image: url(./texture.png);
    mix-blend-mode: multiply;
    z-index: 0;
}

.cta_grid-layout .pk-grid-container {
    position: relative;
    gap: 20px;
    z-index: 1;
}

.cta_grid-layout .pk-item-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 250px;
    background: var(--pk-purple);
}

.cta_grid-layout .pk-item-inner.bg-green {
    background: var(--pk-green);
}

.cta_grid-layout .pk-item-inner.bg-orange {
    background: var(--pk-orange);
}

.cta_grid-layout .pk-cta-item .pk-item-link {
    text-decoration: none;
}

.cta_grid-layout .pk-cta-item .pk-item-content_wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(./texture.png);
    mix-blend-mode: multiply;
    z-index: 0;
}

.cta_grid-layout .pk-cta-item .pk-item-content_wrap {
    position: relative;
}

.cta_grid-layout .pk-cta-item .pk-item-image {
    max-width: fit-content;
    width: auto;
    height: 40px;
    margin-bottom: 40px;
}

.cta_grid-layout .pk-cta-item .pk-item-content {
    position: relative;
    display: flex;
    gap: 26px;
    padding: 30px;
    padding-bottom: 50px;
    z-index: 2;
}

.cta_grid-layout .pk-cta-item .pk-item-content .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--pk-purple);
}

.cta_grid-layout .pk-cta-item .pk-item-content .icon svg {
    transition: transform 0.5s ease;
}

/* Hover state */
.cta_grid-layout .pk-cta-item .pk-item-link:hover .icon svg {
    transform: translateX(3px);
}

.cta_grid-layout .pk-item-inner.bg-orange .icon {
    background: var(--pk-orange);
}

.cta_grid-layout .pk-item-inner.bg-green .icon {
    background: var(--pk-green);
}

.cta_grid-layout .pk-cta-item .pk-item-heading {
    font-size: var(--heading-lg);
    font-weight: 400;
    text-transform: lowercase;
    line-height: 100%;
    color: var(--pk-white);
    margin: 0;
}

@media screen and (max-width: 767px) {
    .cta_grid-layout .pk-grid-container {
        gap: 60px;
    }

    .cta_grid-layout .pk-cta-item .pk-item-content {
        padding: 30px 20px;
    }
}
