.flex-layout.hero-content-layout .pk-row {
    padding-block: 180px;
    position: relative;
}

.flex-layout.hero-content-layout:last-child .pk-row {
    height: calc(100vh - var(--pk-header-height));
    display: flex;
    align-items: center;
}

.flex-layout.hero-content-layout .subheading,
.flex-layout.hero-content-layout .heading-wrapper h1,
.flex-layout.hero-content-layout .heading-wrapper h4,
.flex-layout.hero-content-layout .hero-content-buttons .secondary {
    color: var(--white);
}

.flex-layout.hero-content-layout .heading-wrapper {
    padding-bottom: 2rem;
}

.flex-layout.hero-content-layout .heading-wrapper h1 {
    font-size: var(--heading-1-sm);
    line-height: 1.3;
    letter-spacing: -0.7px;
    max-width: 736px;
    width: fit-content;
}

.flex-layout.hero-content-layout .heading-wrapper h3 {
    line-height: 1.3;
    letter-spacing: -0.7px;
}

.flex-layout.hero-content-layout .subheading {
    text-align: center;
}

.flex-layout.hero-content-layout .read-more-link-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: absolute;
    right: 0;
    bottom: 20px;
}

.flex-layout.hero-content-layout.blue-100 {
    color: var(--text-main);
}

.flex-layout.hero-content-layout.blue-100 .heading-wrapper h1,
.flex-layout.hero-content-layout.blue-100 .subheading,
.flex-layout.hero-content-layout.blue-100 .pk-button.secondary span,
.pk-page .flex-layout.hero-content-layout.blue-100 .read_more {
    color: var(--text-main);
}

.pk-page .flex-layout.hero-content-layout.blue-100 .read_more svg path {
    stroke: var(--text-main);
}

.flex-layout.hero-content-layout.show-shape .pk-row {
    position: relative;
}

.flex-layout.hero-content-layout.show-shape .pk-row::before {
    position: absolute;
    content: '';
    bottom: 0;
    right: 240px;
    background-image: url('/wp-content/uploads/2025/12/shape_square_white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 185px;
    height: 185px;
    z-index: 0;
    pointer-events: none;
}

.flex-layout.hero-content-layout.show-shape.blue-400 .pk-row::before,
.flex-layout.hero-content-layout.show-shape.blue-100 .pk-row::before {
    background-image: url('/wp-content/uploads/2025/12/shape_square_blue.svg');
}


@media screen and (max-width: 1200px) {
    .flex-layout.hero-content-layout .subheading {
        text-align: left;
    }

    .flex-layout.hero-content-layout.show-shape .pk-row::before {
        right: -24px;
        top: 0;
    }
}

@media screen and (max-width: 992px) {
    .flex-layout.hero-content-layout .pk-row {
        padding-block: 100px;
    }

    .flex-layout.hero-content-layout .subheading {
        padding-bottom: 1.5rem;
    }

    .flex-layout.hero-content-layout .read-more-link-wrapper {
        padding-top: 1rem;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .flex-layout.hero-content-layout.show-shape .pk-row::before {
        height: 140px;
        width: 140px;
    }
}

@media screen and (max-width: 767px) {
    .flex-layout.hero-content-layout .pk-row {
        padding-block: 100px 60px;
    }

    .flex-layout.hero-content-layout .read-more-link-wrapper {
        position: initial;
    }

    .flex-layout.hero-content-layout.show-shape .pk-row::before {
        right: 0;
    }
}