.k-htcl-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    height: 620px;
}

.k-htcl-list-left-wrapper {
    width: 35%;
    height: 100%;
}

.k-htcl-list-right-wrapper {
    width: calc(65% - 20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.k-htcl-ll-item-wrapper,
.k-htcl-lr-item-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.k-htcl-list-left-wrapper .k-htcl-ll-item-wrapper {
    height: 100%;
}

.k-htcl-lr-top {
    width: 100%;
    height: calc(50% - 10px);
}

.k-htcl-lr-bottom-wrapper {
    display: flex;
    gap: 20px;
    height: calc(50% - 10px);
}

.k-htcl-lr-bottom-left,
.k-htcl-lr-bottom-right {
    width: calc(50% - 10px);
    height: 100%;
}

.k-htcl-ll-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
}

.k-htcl-ll-item-image {
    width: 100%;
    height: 100%;
    background-color: #eee;
    position: relative;
}


.k-htcl-ll-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.k-htcl-ll-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
}

.k-htcl-content-inner {
    backdrop-filter: blur(15px);
    background-color: #42424245;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #ffffff1a;
}

.k-htcl-content-inner h2 {
    font-size: 20px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.k-htcl-content-inner p {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .k-htcl-list-wrapper {
        height: auto;
    }

    .k-htcl-list-left-wrapper {
        width: 100%;
        height: 400px;
    }

    .k-htcl-list-right-wrapper {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .k-htcl-lr-bottom-wrapper {
        flex-direction: column;
    }

    .k-htcl-lr-bottom-left,
    .k-htcl-lr-bottom-right {
        width: 100%;
        height: 250px;
    }
}