.search-result {
    display: flex;
    text-decoration: none;
}
.search-result:hover {
    color: black;
}

.search-result h3 {
    text-decoration: underline;
}

.search-thumbnail-wrapper {
    width: 200px;
    height: 140px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 38px 70px 43px 38px;
    flex-shrink: 0;
    margin-right: 32px;
}

.searchform > div {
    width: 100%;
    display: flex;

}

.searchform {
    width: 100%;
}

#searchsubmit {
    display: none;
}

.searchform .screen-reader-text {
    display: none;
}

.searchform input {
    width: 100%;
    border: none;
    height: 53px;
    padding: 0 22px;
    outline: none;
    box-shadow: 1px 4px 7px -5px rgba(0, 0, 0, 0.14);
    border-radius: 50px;
    background-color: #fafafa;
}

.searchform input:focus {
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

