.flex-layout.hero-image-content-layout {
    padding-inline: 0;
}

.flex-layout.hero-image-content-layout .pk-row {
    max-width: 100%;
    padding-block: 0;
}

.flex-layout.hero-image-content-layout .pk-row .pk-grid-container.hero-image-content-container {
    max-width: 100%;
    position: relative;
}

.flex-layout.hero-image-content-layout .hero-image-content-image {
    height: 100%;
}

.flex-layout.hero-image-content-layout .hero-image-content-image-wrapper {
    height: 100%;
    width: 100%;
}

.flex-layout.hero-image-content-layout .hero-image-content-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 2/1;
}

.flex-layout.hero-image-content-layout .hero-image-content-text {
    display: flex;
    align-items: center;
    padding-block: 100px;
}

.flex-layout.hero-image-content-layout .hero-image-content-text .heading-wrapper {
    margin-bottom: 0.5rem;
}

.flex-layout.hero-image-content-layout .hero-image-content-text .heading-wrapper h1 {
    font-size: var(--heading-1-md);
}

.flex-layout.hero-image-content-layout .hero-image-content-text .pk-button-group {
    margin-top: 2rem;
}

.flex-layout.hero-image-content-layout .read_more {
    color: var(--text-main);
    position: absolute;
    right: 24px;
    bottom: 24px;
}

.flex-layout.hero-image-content-layout .read_more svg path {
    stroke: var(--text-main);
}

@media screen and (min-width: 1600px) {
    .flex-layout.hero-image-content-layout .hero-image-content-text {
        grid-column-end: 11;
    }
}

@media screen and (max-width: 992px) {
    .flex-layout.hero-image-content-layout {
        padding-inline: 0;
    }

    .flex-layout.hero-image-content-layout .hero-image-content-image {
        min-height: unset;
        max-height: 400px;
    }

    .flex-layout.hero-image-content-layout .hero-image-content-text {
        padding-block: 40px;
        padding-inline: 1rem;
    }

    .flex-layout.hero-image-content-layout .read_more {
        right: 24px;
        bottom: unset;
        gap: 0.5rem;
    }
}

@media screen and (max-width: 767px) {
    .flex-layout.hero-image-content-layout .pk-row {
        padding-inline: 0;
    }

    .flex-layout.hero-image-content-layout .hero-image-content-image {
        max-height: 300px;
    }

    .flex-layout.hero-image-content-layout .hero-image-content-text .pk-button-group {
        margin-top: 1rem;
    }

    .flex-layout.hero-image-content-layout .read_more {
        right: unset;
        position: relative;
        padding-top: 1rem;

    }
}