/* Hide native browser clear button on search inputs */
.header-search-input::-webkit-search-cancel-button,
.header-search-input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

#search-results {
    background-color: #000;
    padding: 140px 0 100px;
}

.search-results__heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 60px;
    line-height: 1.2;
}

.search-results__heading span {
    color: var(--yellow);
    font-weight: 600;
}

/* ---- Two-column layout ---- */
.search-results__body {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .search-results__body--two-col {
        flex-direction: row;
        gap: 60px;
    }

    .search-results__body--two-col .search-results__section {
        flex: 1;
        min-width: 0;
    }
}

/* ---- Sections ---- */
.search-results__section {
    margin-bottom: 60px;
}

.search-results__section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 16px;
}

/* ---- Result list ---- */
.search-results__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-results__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.search-results__list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    text-decoration: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 400;
    transition: color 0.2s ease;
}

.search-result-item svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease, transform 0.2s ease;
}

.search-result-item:hover {
    color: var(--yellow);
}

.search-result-item:hover svg {
    color: var(--yellow);
    transform: translate(3px, -3px);
}

/* ---- Empty state ---- */
.search-results__empty {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 40px 0;
}

.search-results__empty strong {
    color: var(--yellow);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    #search-results {
        padding: 110px 0 70px;
    }

    .search-result-item {
        padding: 18px 0;
    }
}
