.section_list_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-24);
}
.sort_select {
    position: relative;
    width: 180px;
}

.sort_select::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #9ca3af;
    border-bottom: 1.5px solid #9ca3af;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.sort_select:focus-within::after {
    transform: translateY(-35%) rotate(-135deg);
}

.sort_select select {
    width: 100%;
    height: 48px;
    padding: 0 48px 0 20px;
    border: 1px solid #dfe3ea;
    border-radius: 8px;
    background: #fff;
    color: #374151;
    font-size: 15px;
    font-weight: 600;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
}

.sort_select select:focus {
    border: 2px solid #2563eb;
}

@media screen and (max-width: 1024px) {
    .sort_select {
        width: auto;
    }
    .sort_select select {
        height: 35px;
        font-size: 12px;
    }
}