.results-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    margin-top: 32px;
    margin-bottom: 16px;
}

.results-toolbar__count {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    color: #0f263b;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.results-toolbar__sort {
    display: flex;
    position: relative;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
    min-height: 44px;
    padding: 10px 12px 10px 0;
    color: #37506e;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.results-toolbar__sort-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.results-toolbar__sort-icon img {
    width: 24px;
    height: 24px;
}

.results-toolbar__sort-label {
    white-space: nowrap;
}

.results-toolbar__sort select {
    max-width: 320px;
    padding: 0 22px 0 0;
    border: 0;
    background: transparent;
    color: #37506e;
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    appearance: none;
    cursor: pointer;
}

.results-toolbar__chevron {
    width: 14px;
    height: 14px;
    margin-left: -18px;
    background: currentColor;
    pointer-events: none;
    -webkit-mask: url("../images/figma/cke-nav/chevron-down.svg") center / contain no-repeat;
    mask: url("../images/figma/cke-nav/chevron-down.svg") center / contain no-repeat;
}

.results-toolbar__sort select:focus-visible {
    outline: 3px solid #f2b84b;
    outline-offset: 4px;
    border-radius: 4px;
}

@media (max-width: 700px) {
    .results-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .results-toolbar__sort {
        align-self: flex-end;
        max-width: 100%;
    }
}
