.search-input-wrapper {
    border: 1px solid #999;
    height: 50px;
    width: 100%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}
.search-form__input {
    border: none;
    border-radius: 15px;
    height: 100%;
    width: 100%;
}
.search-form__submit {
    height: 100%;
    width: 50px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.result-list {
    margin: 2rem 0;
    /* border: 1px solid #eee; */
}
.result-item {
    list-style-type: none;
    /* background-color: #fff; */
    padding: .8rem;
}
.result-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.result-item h4 {
    margin: 0;
    display: block;
    height: 100%;
}
.result-item a {
    font-size: 1rem;
    width: 100%;
    height: 100%;
    display: block;
}
.result-item a:hover,
.result-pages-nav a:hover {
    color: #555;
}
