/* static/css/ausbildung/employer_list.css */

.text-gradient {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.employer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 2rem;
}

.employer-card {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.employer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.international-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--success);
    color: #fff;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
}

.employer-logo {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: var(--light);
    border-radius: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-placeholder {
    color: var(--secondary);
}

.results-summary {
    font-size: 0.9rem;
}

.pagination .page-link {
    color: var(--primary);
}

.pagination .active .page-link {
    background: var(--gradient-2);
    border: none;
    color: #fff;
}

.no-results {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .search-filters-section {
        padding: 1.5rem;
    }
    .employer-grid {
        grid-template-columns: 1fr;
    }
}
