/* Skandale.dk v6 - Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&amp;family=Playfair+Display:wght@700&amp;display=swap');

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.heading-font {
    font-family: 'Playfair Display', Georgia, serif;
}

.politician-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.politician-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.scandal-card {
    transition: all 0.2s ease;
}

.severity-star { color: #F59E0B; }

.modal {
    animation: modalPop 0.3s ease forwards;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.media-link {
    transition: all 0.2s ease;
}

.media-link:hover {
    transform: translateX(4px);
    background-color: #F8FAFC;
    border-color: #CBD5E1;
}

.search-input {
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.2);
}

.stat-number {
    font-variant-numeric: tabular-nums;
}

.media-badge {
    font-size: 10px;
    padding: 1px 7px;
    border-radius: 9999px;
    font-weight: 700;
}