/* --- WIDGET 9: Spolufinancovanie (Co-financing) --- */
.co-financing-section {
    padding: 80px 20px;
    background: #fff;
    border-top: 1px solid var(--bio-border-color);
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid Layout */
.financing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--bio-border-color);
    background: #fff;
    border-left: 6px solid var(--bio-accent-blue);
}

/* Left: Text Part */
.text-part {
    background: #f8f8f8;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.label-small {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--bio-accent-blue);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.main-info {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--bio-text-main);
    line-height: 1.5;
    margin: 0;
}

/* Right: Image Part */
.image-part {
    background: #fff;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--bio-border-color);
}

.image-part img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    display: block;
}

/* Responsive */
@media (max-width: 800px) {
    .financing-grid {
        grid-template-columns: 1fr;
        border-left: 1px solid var(--bio-border-color);
        border-top: 6px solid var(--bio-accent-blue);
    }

    .image-part {
        border-left: none;
        border-top: 1px solid var(--bio-border-color);
        padding: 30px;
    }

    .text-part {
        text-align: center;
    }
}