.knowledge-base-search-results-v2 .boxed {
    padding: 64px 64px 0 !important;
}

.knowledge-base-search-results-v2 .items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 64px;
}

.knowledge-base-search-results-v2 .items > .item {
    position: relative;
    border-radius: 8px;
    box-shadow: 2px 4px 12px rgba(163, 177, 204, 0.35);
}

.knowledge-base-search-results-v2 .items > .item img {
    display: block;
    width: 100%;
    height: 197px;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
}

.knowledge-base-search-results-v2 .items > .item > .info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 62px 16px;
    gap: 8px;
}

.knowledge-base-search-results-v2 .items > .item > .info .heading {
    margin-bottom: 0;
    font-family: 'Panton', sans-serif;
    font-size: 28px;
    color: #162032;
    line-height: 36px;
    text-align: center;
}

.knowledge-base-search-results-v2 .items > .item > .info .content {
    font-size: 16px;
    color: #636A75;
    line-height: 28px;
}

.knowledge-base-search-results-v2 > .boxed > .read-more {
    display: flex;
    justify-content: right;
    margin-top: 32px;
}

.knowledge-base-search-results-v2 .items > .item > .read-more {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 8px 0 0 0;
    background: #F4F6FC;
}

.knowledge-base-search-results-v2 .items > .item > .read-more::after {
    display: block;
    width: 24px;
    height: 24px;
    content: '';
    background-color: #636A75;
    mask-image: url('/wp-content/themes/strevon/assets/images/icons/arrow-right.svg');
    -webkit-mask-image: url('/wp-content/themes/strevon/assets/images/icons/arrow-right.svg');
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: cover;
    -webkit-mask-size: cover;
}

.knowledge-base-search-results-v2 .items > .item > .info::after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 152px;
    height: 152px;
    content: '';
    background: url('/wp-content/themes/strevon/assets/images/elements/dots-gray.png') no-repeat;
    background-size: cover;
}

.knowledge-base-search-results-v2 .item {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.knowledge-base-search-results-v2 .cta-button {
    margin-top: 64px;
    display: flex;
    justify-content: center;
}

.knowledge-base-search-results-v2 .cta-button a {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    max-width: max-content;
    padding: 14px 32px;
    background-color: #162032;
    border-radius: 8px;
    text-decoration: none;
    color: #FFF;
    font-size: 18px;
    font-weight: 350;
    line-height: 28px
}

.knowledge-base-search-results-v2 .cta-button a::after {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    content: '';
    mask-image: url('/wp-content/themes/strevon/assets/images/icons/arrow-right.svg');
    -webkit-mask-image: url('/wp-content/themes/strevon/assets/images/icons/arrow-right.svg');
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: cover;
    -webkit-mask-size: cover;
    background-color: #FFF;
}

.knowledge-base-search-results-v2 .search-form {
    margin-bottom: 2rem;
}

.knowledge-base-search-results-v2 .search-form .form-group {
    position: relative;
    max-width: 416px;
    margin-bottom: 0.5rem;
}

.knowledge-base-search-results-v2 .search-form .form-control {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 416px;
    max-width: 100% !important;
    height: 56px;
    padding: 14px 56px 14px 16px;
    border: 1px solid #ADB7CB;
    border-radius: 8px;
    gap: 4px;
    font-size: 1rem;
}

.knowledge-base-search-results-v2 .search-form .search-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: none;
    background: none;
    transform: translateY(-50%);
    cursor: pointer;
}

.knowledge-base-search-results-v2 .search-form .search-icon img {
    width: 24px;
    height: 24px;
}

.knowledge-base-search-results-v2 .search-form .search-icon:hover {
    opacity: 0.8;
}

.knowledge-base-search-results-v2 .search-count {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

@media (max-width: 1100px) {
    .knowledge-base-search-results-v2 .items {
        grid-template-columns: 1fr 1fr;
        column-gap: 32px;
    }

    .knowledge-base-search-results-v2 .items > .item > .info::after {
        background-size: 100%;
        height: calc(100% - 4px);
    }
}

@media (max-width: 992px) {
    .knowledge-base-search-results-v2 .items > .item > .info::after {
        background-size: 150%;
        height: calc(100% - 8px);
    }
}

@media (max-width: 768px) {
    .knowledge-base-search-results-v2 .boxed {
        padding: 64px 16px 0 16px !important;
    }

    .knowledge-base-search-results-v2 .items {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .knowledge-base-search-results-v2 .items > .item img {
        height: 238px;
    }

    .knowledge-base-search-results-v2 .items > .item > .info {
        padding: 38px 16px;
    }
}

@media (max-width: 450px) {
    .knowledge-base-search-results-v2 .items > .item img {
        height: 128px;
    }
}