.calls-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.calls-heading {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.calls-heading h2 {
    font-size: 1.3rem;
}

.calls-heading p {
    max-width: 40rem;
    color: var(--muted);
    line-height: 1.7;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.opp-card {
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    background: linear-gradient(180deg, rgba(31, 179, 90, 0.05), transparent 32%), var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.opp-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.card-type-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--accent);
}

.card-type-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: currentColor;
}

.badge-open {
    color: var(--accent);
    background: var(--accent-soft);
}

.badge-soon {
    color: var(--warning);
    background: rgba(208, 162, 61, 0.12);
}

.card-category {
    color: var(--muted);
    font-size: 0.88rem;
}

.card-title {
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.35;
}

.card-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.meta-tag {
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.82rem;
}

.meta-tag.highlight {
    color: var(--text);
    border-color: var(--border-strong);
}

.card-deadline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.card-deadline svg {
    width: 0.95rem;
    height: 0.95rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.card-divider {
    border: none;
    border-top: 1px solid var(--border);
}

.card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
}

.card-action:hover {
    color: var(--accent);
}

.bottom-cta {
    width: min(1180px, 100%);
    margin: 2.8rem auto 0;
}

.bottom-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.4rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.bottom-cta-text h3 {
    font-size: 1.08rem;
    margin-bottom: 0.35rem;
}

.bottom-cta-text p {
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 760px) {
    .bottom-cta-inner {
        flex-direction: column;
        align-items: stretch;
    }
}
