.k-hsh-main-heading-wrapper h3 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #166534;
}

.k-hsh-heading-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-bottom: 16px;
    text-align: left;
}

.k-hsh-sub-heading-wrapper {
    text-align: right;
}

.k-hsh-main-heading-wrapper,
.k-hsh-sub-heading-wrapper {
    width: 50%;
    flex: 1 1 50%;
}

.k-hsh-sub-heading-wrapper span {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.k-hsh-main-heading-wrapper h3 .shine-text {
    background: linear-gradient(to right, #166534 0%, #32b32c 12%, #32b32c 22%, #166534 38%);
    background-size: 200% auto;
    background-position: -100% center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-heading 3.2s linear infinite;
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.k-hsh-main-heading-wrapper h3 .shine-text.is-visible {
    animation-play-state: running;
}

@keyframes shine-heading {
    0% {
        background-position: 100% center;
    }

    85% {
        background-position: -100% center;
    }

    100% {
        background-position: -100% center;
    }
}

@media (max-width: 1025px) {
    .k-hsh-main-heading-wrapper {
        width: 42%;
        flex: 1 1 42%;
    }

    .k-hsh-sub-heading-wrapper {
        width: 58%;
        flex: 1 1 58%;
    }

    .k-hsh-main-heading-wrapper h3 {
        font-size: 26px;
        line-height: 36px;
    }

    .k-hsh-sub-heading-wrapper span {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .k-hsh-heading-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .k-hsh-main-heading-wrapper,
    .k-hsh-sub-heading-wrapper {
        width: 100%;
        flex: 1 1 100%;
    }

    .k-hsh-sub-heading-wrapper {
        text-align: justify;
    }
}