/* =========================================================
   Partner Competencies Block
   ========================================================= */

.pco-section {
    padding: 120px 0 0;
}

/* ── Centered section title ──────────────────────────────── */
.pco-section-title {
    margin-bottom: 28px !important;
}

.pco-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.pco-card {
    display: flex;
    align-items: center;
    gap: 32px;
    border-radius: 12px;
    background: #F1F0FD;
    padding: 28px;
    box-sizing: border-box;
    flex: 0 0 calc(33.333% - 14px);
}

/* ── Icon ────────────────────────────────────────────────── */
.pco-card__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
}

.pco-card__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ── Label ───────────────────────────────────────────────── */
.pco-card__label {
    color: #000;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    flex: 1;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1199.98px) {
    .pco-section {
        padding: 80px 0 0;
    }
    .pco-section-title {
        margin-bottom: 32px !important;
    }
    .pco-section-col {
        margin: auto;
    }
    .pco-card {
        flex: 0 0 calc(50% - 10px);
    }
    .pco-card__label {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .pco-section {
        padding: 60px 0 0;
    }
    .pco-card {
        flex: 0 0 100%;
    }
    .pco-card__label {
        font-size: 20px;
    }
}