/* ─── Commitments: numbered proof + image ─── */

.ocf-commitments {
    background: var(--ocf-bg-alt);
    overflow: hidden;
}

.ocf-commitments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .ocf-commitments-grid {
        grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
        gap: 5rem;
        align-items: stretch;
    }
}

.ocf-commitments-content .eyebrow {
    color: var(--ocf-label);
}

.ocf-commitments-content .heading-section {
    color: var(--ocf-heading);
    max-width: 34rem;
    margin-bottom: 2rem;
}

.ocf-commitments-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--ocf-border-light);
}

.ocf-commitment {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--ocf-border-light) 55%, transparent);
}

.ocf-commitment-num {
    font-family: var(--ocf-font-heading), Georgia, serif;
    font-size: var(--text-3xl);
    font-weight: 300;
    color: var(--ocf-accent);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.65;
    min-width: 2.5rem;
}

.ocf-commitment h3 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--ocf-heading);
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}

.ocf-commitment p {
    font-size: var(--text-sm);
    color: var(--ocf-body);
    line-height: 1.65;
    max-width: 32rem;
}

.ocf-commitments-image-wrap {
    position: relative;
}

.ocf-commitments-image {
    height: 100%;
    min-height: 24rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--ocf-border-light);
    background: var(--ocf-bg);
}

.ocf-commitments-image img {
    width: 100%;
    height: 100%;
    min-height: 24rem;
    object-fit: cover;
}

@media (max-width: 767px) {
    .ocf-commitment {
        gap: 1rem;
    }

    .ocf-commitment-num {
        font-size: var(--text-2xl);
        min-width: 2rem;
    }

    .ocf-commitments-image,
    .ocf-commitments-image img {
        min-height: 18rem;
    }
}
