/* =========================================================
   Partner Content Block
   ========================================================= */

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

/* ── Two-column row ──────────────────────────────────────── */
.poc-row {
    display: flex;
    align-items: center;
    gap: 190px;
}


/* Right: badge column fixed comfortable width */
.poc-col--badge {
    flex: 0 0 auto;
}

/* ── Title ───────────────────────────────────────────────── */
.poc-title {
    text-align: left !important;
    margin-bottom: 16px !important;
    line-height: 140% !important;
}

/* ── Description ─────────────────────────────────────────── */
.poc-description {
   text-align: left !important;
}

/* ── Optional CTA button ─────────────────────────────────── */
.poc-btn-wrap {
    margin-top: 28px;
}

.poc-btn img {
    flex-shrink: 0;
}

/* ── Badge card (right column) ───────────────────────────── */
.poc-badge-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.poc-badge-img {
    object-fit: contain;
    display: block;
}

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

@media (max-width: 1199.98px) {
    .poc-section {
        padding: 80px 0 0;
    }

    .poc-title {
        margin-bottom: 16px;
        text-align: center !important;
        text-align: none;
    }
    .poc-row {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }
    .poc-col {
        margin: auto;
    }

    /* ── Description ─────────────────────────────────────────── */
    .poc-description {
        text-align: center !important;
    }
}

@media (max-width: 767.98px) {
    .poc-section {
        padding: 60px 0 0;
    }

    /* Stack columns vertically on mobile — badge moves below text */
    

    .poc-col--badge {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .poc-description{
        padding: 0 13px;
    }

}