/* Moved verbatim from resources/views/sections/our_contribution.blade.php */
.oc-section {
    padding: 72px 0 90px;
    background: #fff;
}

.oc-head {
    text-align: center;
    margin-bottom: 48px;
}

.oc-head h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.oc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.oc-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px 18px;
    transition: box-shadow .2s ease, transform .2s ease;
}

.oc-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.oc-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.oc-icon i {
    color: #fff;
    font-size: 15px;
}

.oc-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--ink-muted);
}

.oc-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #9ca3af;
}

@media (max-width: 600px) {
    .oc-grid {
        grid-template-columns: 1fr;
    }
}
