.eu-funding-section {
    background: var(--bg-main); /* Lekko inne tło niż główna sekcja dla wyróżnienia */
    width: 100%;
    padding: 4rem 0;
    -webkit-box-shadow: 2px -3px 18px 12px rgba(11,16,32,0.88); 
    box-shadow: 2px -3px 18px 12px rgba(11,16,32,0.88);
}

.eu-funding-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
    max-width: 1400px;
}

/* Animacja na najechanie */
.eu-funding-card:hover {
    transform: scale(1.01);
    border-color: rgba(255, 255, 255, 0.15);
}

.eu-content-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    text-decoration: none;
}

.eu-text-col {
    flex: 1.5 1 4px;
}

.eu-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.eu-project-details .small {
    color: var(--text-primary);
    opacity: 0.7;
    font-size: 0.85rem;
    font-style: italic;
}

/* Kontener na logotypy - kluczowy dla wymogów UE */
.eu-logos-col {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.eu-logo-display-box {
    background: #ffffff; /* Białe tło pod logo jest zazwyczaj wymagane */
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.eu-official-banner {
    max-width: 100%;
    height: auto;
    display: block;
    /* mix-blend-mode: multiply; -> usuń jeśli logo ma własne białe tło */
}

/* Focus state dla WCAG */
.eu-funding-card:focus-within {
    outline: 3px solid #ffcc00;
    outline-offset: 8px;
}

/* Responsywność */
@media (max-width: 992px) {
    .eu-content-layout {
        flex-direction: column;
        text-align: center;
    }
    
    .eu-logos-col {
        width: 100%;
    }
}