.title-search-wrapper {
    background: #ffffff;
    border-radius: 8px;
    padding: 12px 32px;
    border: 1px solid #CFD4EA;
}

.title-search-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    text-decoration: none;
    color: #242473;
    transition: color 0.3s ease 0s;
}
.title-search-item:hover {
    color: #4532AD;
}

.title-search-item + .title-search-item {
    border-top: 1px solid #CFD4EA;
}

.title-search-image {
    position: relative;
    width: 64px;
    height: 64px;
    margin-right: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 8px;
}
.title-search-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
    background: #CFD4EA;
    border-radius: 8px;
    opacity: 0.2;
}
