.section-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.results-info {
    color: rgba(255, 255, 255, 0.8);
}

.sort-dropdown{
    min-width: 170px;
}

.sort-dropdown select {
    max-width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}

/* RESPONSIVE FIX: on small screens stack the controls centered, in order:
   items count → prev/next buttons → sort dropdown. */
@media (max-width: 768px) {
    .section-controls {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
        margin-bottom: 1.25rem;
    }

    .sort-dropdown { min-width: 0; }
    .sort-dropdown:empty { display: none; }
}