#search-page .body{
    padding: 50px 0 100px 0;
}
.search{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search__container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 100px;
}
.search__searchBar{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.searchBar__header{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 40px;
    border-bottom: 2px solid #6E6E6E;
    padding-bottom: 10px;
}
.searchBar__header label{
    width: 100%;
}
.searchBar__header input{
    width: 100%;
    background: transparent;
    color: #282828;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px; /* 165% */
}
.searchBar__body{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    padding: 42px 0;
    gap: 50px;
}
.searchBar__results-text{
    color: #282828;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
}
.searchBar__results{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
}
.searchBar__result{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    max-width: 943px;
}
.searchBar__result-title{
    width: 100%;
    color: #282828;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.2px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.searchBar__result-text{
    width: 100%;
    color: #B4B4B4;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 167.523%; /* 26.804px */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}
.searchBar__result-link{
    width: 100%;
    color: #6E6E6E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 167.523%; /* 26.804px */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}



@media screen and (max-width: 730px) {
    .search__container{
        gap: 70px;
    }
    .searchBar__body{
        flex-direction: column;
        padding: 30px 0;
    }
    .searchBar__results-text{
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
    }
    .searchBar__results{
        gap: 30px;
    }
    .searchBar__result{
        gap: 24px;
    }
    .searchBar__result-title{
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
    }
    .searchBar__result-text{
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
    }
    .searchBar__result-link{
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
    }
}