/* ==========================================
   WSPÓŁPRACA
========================================== */

.partners-page{

    max-width: 1300px;
    margin: auto;
    padding: 40px 25px 70px;

}

.partners-page h1{

    text-align: center;
    color: #003366;
    margin-bottom: 20px;
    font-size: 2.3rem;

}

.partners-intro{

    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;

}


/* ==========================================
   SEKCJE
========================================== */

.partner-section{

    margin-bottom: 70px;

}

.partner-section h2{

    color: #003366;
    margin-bottom: 35px;
    padding-bottom: 10px;
    border-bottom: 3px solid #0059b3;
    display: inline-block;
}


/* ==========================================
   GRID PARTNERÓW
========================================== */

.partners-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 30px;
}


/* ==========================================
   KARTY
========================================== */

.partner-card{
    background: white;
    border-radius: 14px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 230px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
    transition: .30s;
    border: 1px solid #ececec;
}

.partner-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,.16);
    border-color: #0059b3;
}


/* ==========================================
   LOGA
========================================== */

.partner-card img{
    width: auto;
    height: 85px;
    max-width: 170px;
    object-fit: contain;
    margin-bottom: 25px;
    transition: .3s;
}

.partner-card:hover img{
    transform: scale(1.05);
}

.partner-card span{
    text-align: center;
    color: #003366;
    font-weight: 600;
    line-height: 1.45;
}


/* ==========================================
   MEMBERSHIP BOX
========================================== */

.membership-box{
    margin-top: 45px;
    background: #cae2fa;
    border-left: 6px solid #0059b3;
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.06);
}

.membership-box h3{
    color: #003366;
    margin-bottom: 20px;
}

.membership-box ul{
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.membership-box li{
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.membership-box li::before{
    content: "✔";
    position: absolute;
    left: 0;
    color: #2e8b57;
    font-weight: bold;
}


/* ==========================================
   CTA
========================================== */

.cooperation-box{
    margin-top: 70px;
    background: linear-gradient(135deg,#f39c12,#f6b93b);
    color: white;
    border-radius: 18px;
    padding: 55px 40px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.cooperation-icon{
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cooperation-box h2{
    margin-bottom: 20px;
    font-size: 2rem;
}

.cooperation-box p{
    max-width: 850px;
    margin: auto auto 35px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.cooperation-btn{
    display: inline-block;
    background: white;
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 38px;
    border-radius: 40px;
    transition: .3s;
}

.cooperation-btn:hover{
    background: #003366;
    color: white;
}


/* ==========================================
   RESPONSYWNOŚĆ
========================================== */

@media (max-width:1100px){

    .partners-grid{

        grid-template-columns: repeat(3,1fr);

    }

}


@media (max-width:768px){

    .partners-page{

        padding: 30px 15px 60px;

    }

    .partners-page h1{

        font-size: 2rem;

    }

    .partners-grid{

        grid-template-columns: repeat(2,1fr);

        gap:20px;

    }

    .partner-card{

        min-height: 200px;

        padding:25px 15px;

    }

    .partner-card img{

        height:70px;

    }

    .cooperation-box{

        padding:40px 25px;

    }

}


@media (max-width:500px){

    .partners-grid{

        grid-template-columns: 1fr;

    }

    .partner-card{

        min-height:180px;

    }

    .partner-card img{

        height:65px;

    }

    .membership-box{

        padding:25px 20px;

    }

    .cooperation-box h2{

        font-size:1.5rem;

    }

    .cooperation-btn{

        width:100%;
        box-sizing:border-box;

    }

}