/* ============ PUBLIC HOME ============ */

.logo-headline {
    display: flex;
    justify-content: center;
    align-items: center;
}
.global-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.global-filters .form-select {
    width: auto;
    min-width: 180px;
}

/* Search autocomplete */
.search-container {
    position: relative;
    min-width: 200px;
    max-width: 280px;
}
.search-results {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    min-width: 400px;
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1050;
    display: none;
}
.search-results.show {
    display: block;
}
.search-result-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
.search-result-item:last-child {
    border-bottom: none;
}
.search-result-item:hover {
    background-color: #f8f9fa;
}
.search-result-item .result-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
}
.search-result-item .result-meta {
    font-size: 0.85rem;
    color: #6c757d;
}
.search-no-results {
    padding: 1rem;
    text-align: center;
    color: #6c757d;
}
