/* ============================================================
   OVERENÉ ZNAČKY 
   ============================================================ */

.custom-partners-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 128px;
    gap: 48px;
    width: 100%;
    background: #F1F1F6;
    box-sizing: border-box;
}

/* Header */
.custom-partners-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.custom-partners-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    text-transform: uppercase;
    color: #14141F;
    margin: 0;
    width: 100%;
}

/* Grid */
.custom-partners-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    gap: 12px;
    width: 100%;
}

/* Item */
.custom-partners-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    min-width: 128px;
    height: 100px;
    flex: 1;
    background: #FFFFFF;
    border-radius: 12px;
    text-decoration: none;
    transition: box-shadow 0.2s ease;
    box-sizing: border-box;
}

.custom-partners-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.custom-partners-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.custom-partners-placeholder {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #14141F;
    text-align: center;
}

/* ── Responzívnosť ──────────────────────────────────────── */
@media (max-width: 1280px) {
    .custom-partners-section {
        padding: 64px 32px;
    }

    .custom-partners-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .custom-partners-section {
        padding: 48px 16px;
        gap: 32px;
    }

    .custom-partners-title {
        font-size: 24px;
        line-height: 32px;
    }

    .custom-partners-item {
        min-width: 120px;
        height: 80px;
        padding: 16px;
    }
}