/* Hero form suggestions dropdown */
.hero-form__suggestions {
    scrollbar-width: thin;
    scrollbar-color: #c4c4c4 transparent;
}

.hero-form__suggestions::-webkit-scrollbar {
    width: 6px;
}

.hero-form__suggestions::-webkit-scrollbar-track {
    background: transparent;
}

.hero-form__suggestions::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 3px;
}

.hero-form__suggestion {
    border-bottom: 1px solid #f0f0f0;
}

.hero-form__suggestion:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.hero-form__suggestion:hover,
.hero-form__suggestion--highlighted {
    background: rgba(26, 60, 94, 0.08) !important;
}

.hero-form__suggestion-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-form__suggestion-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hero-form__suggestion-label {
    font-weight: 500;
    color: #1f2933;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-form__suggestion-context {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 400;
}
