.search-bar {
    max-width: 300px;
}

.search-results {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
    padding-right: 2px;
}

.search-result {
    border: 1px solid #f5f6f7;
    border-radius: 0.75rem;
    padding: 0.5rem;
    box-shadow: 1px 1px 1px 1px #dbdada;
    margin-top: 0.75rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.search-result:first-child {
    margin-top: 0;
}

.search-result:last-child {
    margin-bottom: 0.75rem;
}

.search-result-image {
    border-radius: 0.75rem;
    width: 135px;
    height: 135px;
    overflow: hidden;
}

.search-result-image img {
    display: block;
    height: auto;
    width: 100%;
}

.search-result-content {
    margin-left: 0.75rem;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.search-result-content-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.search-result-title {
    font-weight: 700;
    font-size: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-subtitle {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: hsl(221, 14%, 48%);
}