.search-form .search-input {
    border: 2px solid var(--border-mid);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: var(--bg-card);
    color: var(--text-dark);
    transition: border-color 0.2s;
}

.search-form .search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: none;
}

.search-form .btn-gold {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1.1rem;
}

/* Extra bottom space for search form under title strip */
.page-title-area.search-hero {
    padding-bottom: 1rem;
}

.search-hero-title {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 1.25rem;
}

.search-hero-title i {
    color: var(--gold);
}

.search-hero-query {
    color: var(--gold-light);
}

.search-input-group {
    position: relative;
}

.search-suggestions-footer {
    padding: 8px 12px;
    background: var(--grey-50, #f8f9fa);
    font-size: 0.7rem;
    color: var(--grey-400, #6c757d);
    border-top: 1px solid var(--grey-100, #e9ecef);
    text-align: center;
}

.search-feedback-line {
    font-size: 0.82rem;
}
