.adel-jobs-wrap { max-width: 1180px; margin: 0 auto; padding: 24px 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; }

.adel-jobs-controls { display: flex; gap: 16px; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; }
.adel-jobs-search { flex: 1; min-width: 280px; max-width: 480px; padding: 12px 16px; border: 1px solid #d0d5dd; border-radius: 10px; font-size: 15px; background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
.adel-jobs-search:focus { outline: none; border-color: #002147; box-shadow: 0 0 0 3px rgba(0, 33, 71, .1); }
.adel-jobs-count { color: #6b7280; font-size: 14px; font-weight: 500; }

.adel-jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }

.adel-jobs-card {
    display: flex; flex-direction: column;
    padding: 22px;
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    min-height: 240px;
}
.adel-jobs-card:hover {
    border-color: #002147;
    box-shadow: 0 8px 24px rgba(0, 33, 71, .1);
    transform: translateY(-2px);
}
.adel-jobs-card:visited { color: inherit; }

.adel-jobs-card-header { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.adel-jobs-card-logo-wrap { width: 48px; height: 48px; flex-shrink: 0; }
.adel-jobs-card-logo { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; background: #f9fafb; padding: 4px; box-sizing: border-box; }
.adel-jobs-card-logo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #002147, #1e3a5f);
    color: #fff; font-weight: 700; font-size: 18px;
    border-radius: 8px;
}
.adel-jobs-card-org { flex: 1; min-width: 0; }
.adel-jobs-card-employer { font-weight: 600; font-size: 14px; color: #111827; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adel-jobs-card-location { font-size: 12px; color: #6b7280; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.adel-jobs-card-title {
    font-size: 16px; font-weight: 600; line-height: 1.35;
    margin: 0 0 10px;
    color: #002147;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.adel-jobs-card-desc {
    font-size: 13px; line-height: 1.55; color: #4b5563;
    margin: 0 0 14px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden;
}

.adel-jobs-card-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: auto; padding-top: 14px;
    border-top: 1px solid #f3f4f6;
    min-height: 28px;
}
.adel-jobs-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.adel-jobs-card-tag {
    font-size: 11px; padding: 3px 8px;
    background: #eff6ff; color: #1d4ed8;
    border-radius: 4px; text-transform: uppercase;
    letter-spacing: .03em; font-weight: 600;
}
.adel-jobs-card-tag-salary { background: #ecfdf5; color: #047857; }
.adel-jobs-card-date { font-size: 12px; color: #9ca3af; }

.adel-jobs-card-cta {
    margin-top: 12px;
    font-size: 13px; font-weight: 600; color: #002147;
    align-self: flex-end;
    transition: transform .15s ease;
}
.adel-jobs-card:hover .adel-jobs-card-cta { transform: translateX(3px); }

.adel-jobs-loading, .adel-jobs-empty {
    padding: 60px 20px; text-align: center;
    color: #6b7280; font-size: 15px;
    background: #f9fafb; border-radius: 12px;
}

@media (max-width: 600px) {
    .adel-jobs-grid { grid-template-columns: 1fr; gap: 14px; }
    .adel-jobs-card { padding: 18px; min-height: 0; }
}
