:root {
    --brand: #176063;
    --ink: #0f3f41;
    --bg: #f6f8f9;
    --card: #ffffff;
    --muted: #6b7280;
    --border: rgba(2,6,23,.08);
    --radius: 16px;
}

/* Search & Filters */
.filters {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 18px;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.topbar {
    margin-bottom: 16px;
}

.form-control, .custom-select {
    border-radius: 12px;
    height: 42px;
    font-weight: 600;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media(min-width: 992px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

.box {
    background: rgb(223 216 206 / 15%);
    padding: 2.5rem;
    z-index: 1;
    position: relative;
}

/* Job Card */
.job-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    transition: all .15s ease;
}

    .job-card:hover {
        border-color: rgba(23,96,99,.25);
        box-shadow: 0 10px 26px rgba(16,24,40,.08);
    }

.job-title {
    font-weight: 800;
    margin: 0;
    font-size: 1.05rem;
}

.job-meta {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .85rem;
    font-weight: 600;
    color: #374151;
}

.chip {
    padding: .28rem .6rem;
    border-radius: 999px;
    border: 1px solid rgba(2,6,23,.12);
    background: #f9fafb;
    font-size: .75rem;
    font-weight: 700;
}

    .chip.open {
        background: #ecfdf5;
        color: #065f46;
        border-color: #a7f3d0;
    }

    .chip.hold {
        background: #fffbeb;
        color: #92400e;
        border-color: #fde68a;
    }

    .chip.closed {
        background: #fef2f2;
        color: #991b1b;
        border-color: #fecaca;
    }

.job-desc {
    margin-top: 10px;
    color: #111827;
    font-size: .9rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-footer {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-link {
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
}

    .job-link:hover {
        text-decoration: underline;
    }

.empty {
    border: 1px dashed rgba(2,6,23,.18);
    border-radius: var(--radius);
    padding: 18px;
    color: var(--muted);
    font-weight: 600;
}
