.k-hos-item-link {
    display: block;
    height: 100%;
    text-decoration: none !important;
    color: inherit;
}

.k-hos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 30px;
}

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

.k-hos-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;
    font-weight: 700;
}

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

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

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

.k-hos-desc-wrapper {
    text-align: right;
}

.k-hos-desc-wrapper p {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin: 0;
    color: #000;
}

.k-hos-services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.k-hos-item {
    background: #EFFFF1;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.k-hos-item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.k-hos-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.k-hos-item-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #166534;
    margin: 0;
    padding-right: 15px;
}

.k-hos-arrow-icon {
    width: 40px;
    height: 40px;
    background-color: #55A630;
    border: 1px solid #55A630;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.k-hos-item:hover .k-hos-arrow-icon {
    transform: rotate(45deg);
    background-color: #fff;
}

.k-hos-item:hover .k-hos-arrow-icon svg path {
    stroke: #55A630;
    transition: all 0.3s ease;
}

.k-hos-arrow-icon svg {
    width: 20px;
    height: 20px;
}

.k-hos-item-body {
    margin-bottom: 30px;
}

.k-hos-item-body p {
    font-size: 16px;
    color: #000;
    line-height: 1.4;
    margin: 0;
}

.k-hos-item-footer {
    margin-top: auto;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    padding-top: 75%;
    position: relative;
}

.k-hos-item-footer img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease;
}



@media (max-width: 1024px) {
    .k-hos-services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .k-hos-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .k-hos-services-list {
        grid-template-columns: 1fr;
    }

    .k-hos-heading-wrapper h3 {
        font-size: 28px;
    }
}