@media (min-width: 1025px) {
    .site-footer .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .site-footer .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.company-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .company-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        border-color: #00247d;
    }

    .company-card h4 {
        color: #1e293b;
        font-size: 1.25rem;
        margin-bottom: 1rem;
        font-family: 'Playfair Display', serif;
    }

    .company-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .company-card li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        color: #64748b;
        display: flex;
        gap: 0.5rem;
    }

        .company-card li::before {
            content: '→';
            color: #cf142b;
            font-weight: bold;
        }

.salary-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: auto;
    border: 1px solid #e2e8f0;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: #cf142b;
    display: block;
    margin-bottom: 0.5rem;
}

.uk-accent {
    color: #cf142b;
}

.uk-bg-accent {
    background: #00247d;
    color: white;
}

