/**
 * AI Partner Finder - Frontend Styles
 * Version: 1.0.0
 * BEM-Stil analog zu AI UseCase Assessment
 */

/* === ROOT VARIABLES === */
:root {
    --ai-primary: #196297;
    --ai-primary-light: #2a7ec0;
    --ai-success: #059669;
    --ai-success-light: #34d399;
    --ai-secondary: #475569;
    --ai-secondary-light: #64748b;
    --ai-danger: #dc2626;
    --ai-danger-light: #ef4444;
    --ai-warning: #f59e0b;
    --ai-info: #0ea5e9;
}

/* === CONTAINER SETTINGS - Volle Breite === */
.ai-partner__container {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    background: white !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    position: relative !important;
}

/* ===== MODUL-ABSCHLUSS ===== */
/* Weißer Abstand zwischen Partner-Finder und Footer */
.ai-partner__container::after{
    content: "";
    display: block;
    height: 40px;
    background: #ffffff;
}

/* Reset für alle Kinder */
.ai-partner__container,
.ai-partner__container * {
    box-sizing: border-box;
}

.ai-partner__container * {
    margin: 0;
    padding: 0;
}

/* === HEADER === */
.ai-partner__header {
    background: linear-gradient(135deg, #196297 0%, #2475b3 100%) !important;
    color: white !important;
    padding: 30px 40px !important;
    text-align: center !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
    border-radius: 15px 15px 0 0 !important;
    box-sizing: border-box !important;
}

.ai-partner__header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.ai-partner__header p {
    font-size: 1.1em;
    opacity: 0.95;
}

/* === CONTENT === */
.ai-partner__content {
    padding: 40px !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* === SECTIONS === */
.ai-partner__section {
    margin-bottom: 40px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ai-partner__section h2 {
    margin-bottom: 15px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8em;
}

/* Section Variants */
.ai-partner__section--search {
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f0ff 100%);
    border-left: 6px solid var(--ai-primary);
}

.ai-partner__section--results {
    background: linear-gradient(135deg, #f0fff4 0%, #e0ffe0 100%);
    border-left: 6px solid var(--ai-success);
}

.ai-partner__section--no-results {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    border-left: 6px solid var(--ai-warning);
}

/* === FORM ELEMENTS === */
.ai-partner__form-group {
    margin-bottom: 20px;
}

.ai-partner__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1em;
}

.ai-partner__textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 150px;
}

.ai-partner__textarea:focus {
    outline: none;
    border-color: var(--ai-primary);
    box-shadow: 0 0 0 3px rgba(25, 98, 151, 0.1);
}

.ai-partner__select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1em;
    font-family: inherit;
    background-color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ai-partner__select:focus {
    outline: none;
    border-color: var(--ai-primary);
    box-shadow: 0 0 0 3px rgba(25, 98, 151, 0.1);
}

.ai-partner__select:hover {
    border-color: #c7d0d9;
}

.ai-partner__description {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* === PRIVACY NOTICE === */
.ai-partner__privacy {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid #f59e0b;
    margin: 20px 0;
    font-size: 0.9rem;
    color: #856404;
}

.ai-partner__char-counter {
    text-align: right;
    font-size: 0.9em;
    color: #6c757d;
    margin-top: 8px;
}

/* === BUTTONS === */
.ai-partner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    color: #fff !important;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    text-decoration: none !important;
    font-size: 1em;
    font-family: inherit;
}

/* Link-Farben explizit ueberschreiben (Theme-Schutz) */
a.ai-partner__btn,
a.ai-partner__btn:link,
a.ai-partner__btn:visited,
a.ai-partner__btn:hover,
a.ai-partner__btn:active,
a.ai-partner__btn:focus {
    color: #fff !important;
    text-decoration: none !important;
}

.ai-partner__btn--primary {
    background: linear-gradient(135deg, var(--ai-primary), var(--ai-primary-light));
}

.ai-partner__btn--success {
    background: linear-gradient(135deg, var(--ai-success), var(--ai-success-light));
}

.ai-partner__btn--secondary {
    background: linear-gradient(135deg, var(--ai-secondary), var(--ai-secondary-light));
}

.ai-partner__btn--danger {
    background: linear-gradient(135deg, var(--ai-danger), var(--ai-danger-light));
}

.ai-partner__btn--small {
    padding: 0.5rem 1.2rem;
    font-size: 0.9em;
}

.ai-partner__btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}

.ai-partner__btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.ai-partner__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ai-partner__btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* === SVG ICONS === */
.btn-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-right: 8px;
    vertical-align: middle;
}

.btn-icon--end {
    margin-right: 0;
    margin-left: 8px;
}

.external-link-icon {
    display: inline-block;
    vertical-align: middle;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-left: 5px;
}

/* === LOADING SPINNER === */
.ai-partner__loading {
    text-align: center;
    padding: 40px;
}

.ai-partner__loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--ai-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === RESULTS === */
.ai-partner__results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--ai-success);
}

.ai-partner__results-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ai-partner__result-count {
    font-weight: 600;
    color: var(--ai-primary);
    font-size: 1.1em;
}

.ai-partner__fallback-badge {
    background: var(--ai-warning);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.ai-partner__cache-badge {
    background: var(--ai-info);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
    margin-left: 10px;
}

/* === RESULT CARDS === */
.ai-partner__results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-partner__result-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.ai-partner__result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.ai-partner__result-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
}

.ai-partner__result-rank {
    font-size: 2em;
    font-weight: 700;
    color: var(--ai-primary);
    min-width: 60px;
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ai-partner__result-title {
    flex: 1;
}

.ai-partner__result-title h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
    color: #2c3e50;
}

.ai-partner__result-title h3 a {
    color: var(--ai-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ai-partner__result-title h3 a:hover {
    color: var(--ai-primary-light);
}

.ai-partner__result-category {
    display: inline-block;
    background: var(--ai-info);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: 600;
}

/* Score Display */
.ai-partner__result-score {
    text-align: center;
    min-width: 100px;
}

.ai-partner__score-value {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1;
}

.ai-partner__score-label {
    font-size: 0.8em;
    color: #6c757d;
    margin-bottom: 5px;
}

.ai-partner__score-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 5px;
}

.ai-partner__score-bar-fill {
    height: 100%;
    transition: width 0.5s ease;
    border-radius: 10px;
}

.ai-partner__result-score--high .ai-partner__score-value {
    color: var(--ai-success);
}

.ai-partner__result-score--high .ai-partner__score-bar-fill {
    background: linear-gradient(90deg, var(--ai-success), var(--ai-success-light));
}

.ai-partner__result-score--medium .ai-partner__score-value {
    color: var(--ai-warning);
}

.ai-partner__result-score--medium .ai-partner__score-bar-fill {
    background: linear-gradient(90deg, var(--ai-warning), #fbbf24);
}

.ai-partner__result-score--low .ai-partner__score-value {
    color: var(--ai-danger);
}

.ai-partner__result-score--low .ai-partner__score-bar-fill {
    background: linear-gradient(90deg, var(--ai-danger), var(--ai-danger-light));
}

/* Card Body */
.ai-partner__result-body {
    padding: 20px;
}

.ai-partner__result-description {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ai-partner__result-reason {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 4px solid var(--ai-warning);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.ai-partner__result-reason strong {
    display: block;
    margin-bottom: 8px;
    color: #856404;
}

.ai-partner__result-reason p {
    color: #495057;
    line-height: 1.5;
}

/* Tags */
.ai-partner__result-tags {
    margin-top: 15px;
}

.ai-partner__tag-group {
    margin-bottom: 10px;
}

.ai-partner__tag-group strong {
    display: inline-block;
    margin-right: 8px;
    color: #6c757d;
    font-size: 0.9em;
}

.ai-partner__tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85em;
    margin: 2px;
    font-weight: 500;
}

.ai-partner__tag--topic {
    background: #e7f3ff;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.ai-partner__tag--keyword {
    background: #f0f0f0;
    color: #495057;
    border: 1px solid #dee2e6;
}

/* Card Footer */
.ai-partner__result-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* === RESULTS FOOTER === */
.ai-partner__results-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #dee2e6;
}

.ai-partner__disclaimer {
    background: #fff3cd;
    border-left: 4px solid var(--ai-warning);
    padding: 15px;
    border-radius: 8px;
    color: #856404;
    margin-bottom: 15px;
    line-height: 1.6;
}

.ai-partner__search-meta {
    text-align: center;
    color: #6c757d;
    font-size: 0.9em;
    margin: 15px 0;
}

/* === INFO BOX === */
.ai-partner__info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 6px solid var(--ai-info);
    margin-top: 30px;
}

.ai-partner__info-box h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.ai-partner__info-box ul {
    list-style: none;
    padding: 0;
}

.ai-partner__info-box ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #495057;
}

.ai-partner__info-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ai-success);
    font-weight: 700;
}

.ai-partner__stats {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #dee2e6;
    color: #495057;
}

/* === ERROR STATE === */
.ai-partner__error {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #f87171;
    color: #7f1d1d;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.ai-partner__error h3 {
    color: var(--ai-danger);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .ai-partner__container {
        width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 0 !important;
    }
    
    .ai-partner__header,
    .ai-partner__content {
        padding: 15px !important;
        max-width: 100% !important;
    }
    
    .ai-partner__header {
        border-radius: 0 !important;
    }
    
    .ai-partner__header h1 {
        font-size: 1.8em !important;
    }
    
    .ai-partner__btn-group {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .ai-partner__result-header {
        flex-wrap: wrap;
    }
    
    .ai-partner__result-rank {
        font-size: 1.5em;
        min-width: 50px;
        padding: 8px;
    }
    
    .ai-partner__result-score {
        width: 100%;
        margin-top: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .ai-partner__results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1199px) {
    .ai-partner__header,
    .ai-partner__content {
        max-width: 100% !important;
        padding: 30px !important;
    }
}

/* Large screens */
@media (min-width: 1920px) {
    .ai-partner__header,
    .ai-partner__content {
        padding: 50px 80px !important;
        max-width: 1800px !important;
    }
}

/* =============================================
   TAB-NAVIGATION + WEBSEARCH STYLES (v1.1.0)
   ============================================= */


/* ============================================== */
/* TAB-NAVIGATION                                 */
/* Version 1.1.0 - Partnersuche + Web-Recherche   */
/* ============================================== */

/* === TAB BUTTONS === */
.ai-partner__tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    border-bottom: 3px solid #e9ecef;
    padding-left: 20px;
    position: relative;
}

.ai-partner__tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #f0f0f0;
    border: none;
    border-radius: 10px 10px 0 0;
    margin-bottom: -3px;
    font-size: 1em;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    white-space: nowrap;
    position: relative;
}

.ai-partner__tab:hover {
    color: #ffffff;
    background: #8a9bae;
}

.ai-partner__tab--active {
    color: #ffffff;
    background: #5a6d80;
    border-bottom-color: #5a6d80;
}

.ai-partner__tab .btn-icon {
    width: 18px;
    height: 18px;
    margin-right: 0;
    flex-shrink: 0;
    transition: stroke 0.25s ease;
}

.ai-partner__tab:hover .btn-icon,
.ai-partner__tab--active .btn-icon {
    stroke: #ffffff;
}

.ai-partner__tab-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7em;
    font-weight: 600;
    margin-left: 6px;
}

.ai-partner__tab-badge--warning {
    background: #fff3cd;
    color: #856404;
}

/* === TAB CONTENT === */
.ai-partner__tab-content {
    display: none;
    animation: ai-partner-fadeIn 0.3s ease;
}

.ai-partner__tab-content--active {
    display: block;
}

@keyframes ai-partner-fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === WEBSEARCH-SPEZIFISCHE STYLES === */

/* Section-Variante fuer Websuche-Formular */
.ai-partner__section--websearch-form {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    border-left: 6px solid #4f46e5;
}

.ai-partner__section--websearch-form h2 {
    color: #4f46e5;
}

/* Websearch-Ergebnisse Section */
.ai-partner__section--websearch {
    background: linear-gradient(135deg, #f5f0ff 0%, #ede5ff 100%);
    border-left: 6px solid #7c3aed;
}

/* Input-Feld */
.ai-partner__input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
}

.ai-partner__input:focus {
    outline: none;
    border-color: var(--ai-primary);
    box-shadow: 0 0 0 3px rgba(25, 98, 151, 0.1);
}

/* Filter-Grid */
.ai-partner__ws-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}

.ai-partner__ws-filters {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.ai-partner__ws-note {
    font-size: 0.85em;
    color: #6c757d;
    margin-top: 12px;
    font-style: italic;
}

/* Loading-Steps */
.ai-partner__loading-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.ai-partner__loading-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.95em;
    color: #9ca3af;
    transition: all 0.4s ease;
}

.ai-partner__loading-step .btn-icon {
    margin-right: 0;
    flex-shrink: 0;
}

.ai-partner__loading-step--active {
    background: #eff6ff;
    color: var(--ai-primary);
    font-weight: 600;
}

/* Websearch Badges */
.ai-partner__websearch-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.ai-partner__websearch-badge .btn-icon {
    width: 14px;
    height: 14px;
    margin-right: 0;
}

.ai-partner__websearch-badge--live {
    background: #dcfce7;
    color: #166534;
}

.ai-partner__websearch-badge--cache {
    background: #fef3c7;
    color: #92400e;
}

/* Ergebnis-Metadaten-Zeile */
.ai-partner__result-meta-line {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.ai-partner__result-location,
.ai-partner__result-size {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85em;
    color: #6c757d;
}

.ai-partner__result-location .btn-icon,
.ai-partner__result-size .btn-icon {
    width: 14px;
    height: 14px;
    margin-right: 0;
}

/* Referenzen-Box */
.ai-partner__result-references {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    border-left: 4px solid #4f46e5;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.ai-partner__result-references strong {
    display: block;
    margin-bottom: 8px;
    color: #4f46e5;
}

.ai-partner__result-references p {
    color: #495057;
    line-height: 1.5;
}

/* Citations */
.ai-partner__citations {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 2px solid #e9ecef;
}

.ai-partner__citations-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
}

.ai-partner__citations-toggle:hover {
    background: #e5e7eb;
}

.ai-partner__citations-toggle .btn-icon {
    width: 14px;
    height: 14px;
    margin-right: 0;
}

.ai-partner__citations-list {
    display: none;
    list-style: none;
    padding: 12px 0 0;
    margin: 8px 0 0;
}

.ai-partner__citations-list--visible {
    display: block;
}

.ai-partner__citations-list li {
    padding: 6px 0;
    font-size: 0.85em;
    border-bottom: 1px solid #f0f0f0;
}

.ai-partner__citations-list li:last-child {
    border-bottom: none;
}

.ai-partner__citations-list a {
    color: var(--ai-primary);
    text-decoration: none;
    word-break: break-all;
}

.ai-partner__citations-list a:hover {
    text-decoration: underline;
}

/* === RESPONSIVE ANPASSUNGEN TABS === */

@media (max-width: 768px) {
    .ai-partner__tabs {
        flex-direction: column;
        border-bottom: none;
        gap: 6px;
        padding-left: 0;
    }
    
    .ai-partner__tab {
        border-bottom: none;
        border-radius: 8px;
        border-left: 3px solid transparent;
        margin-bottom: 0;
        padding: 12px 16px;
        border-radius: 0 8px 8px 0;
    }
    
    .ai-partner__tab--active {
        border-left-color: #5a6d80;
        border-bottom-color: transparent;
        background: #5a6d80;
        color: #ffffff;
    }
    
    .ai-partner__ws-filter-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .ai-partner__ws-filter-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-partner__tab {
        font-size: 0.9em;
        padding: 10px 14px;
    }
}

/* === PLZ FIELD HINT === */
.ai-partner__field-hint {
    display: block;
    font-size: 0.8em;
    color: #6c757d;
    margin-top: 4px;
}
