/**
 * THIQLA Intranet – People & Culture Page Styles
 * Covers: static card layouts + admin CRUD overlay UI
 */

/* ─── Page Loader ─────────────────────────────────────────────────────────── */
#pcPageLoader {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.85);
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 14px;
    color: #64748b;
}
#pcPageLoader .spinner {
    width: 44px;
    height: 44px;
    border: 4px solid #e2e8f0;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Admin Toolbar ───────────────────────────────────────────────────────── */
#adminToolbar {
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
#adminToolbar i { font-size: 16px; color: #93c5fd; }
#adminToolbar .toolbar-hint { opacity: 0.8; font-size: 12px; }
.hidden { display: none !important; }

/* ─── Tabs ────────────────────────────────────────────────────────────────── */
.pc-tabs {
    display: flex;
    gap: 4px;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.pc-tab-btn {
    flex: 1;
    min-width: 120px;
    padding: 10px 14px;
    border: none;
    background: transparent;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    white-space: nowrap;
}
.pc-tab-btn:hover { background: #e2e8f0; color: #1e293b; }
.pc-tab-btn.active {
    background: #fff;
    color: #2563eb;
    font-weight: 700;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── Policy Cards (Kebijakan HR) ─────────────────────────────────────────── */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}
.policy-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.policy-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.policy-card-top {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 12px;
}
.policy-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.policy-accordion { margin-top: 8px; }
.accordion-toggle {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    color: #2563eb;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.accordion-toggle:hover { background: #eff6ff; }
.accordion-toggle i { transition: transform 0.3s; }
.accordion-content { padding: 12px 4px 0; }
.policy-detail { font-size: 13px; color: #374151; line-height: 1.7; }
.policy-detail ul { padding-left: 18px; margin: 4px 0; }
.policy-detail table { width: 100%; border-collapse: collapse; font-size: 13px; }
.policy-detail table th, .policy-detail table td {
    border: 1px solid #e2e8f0;
    padding: 6px 10px;
    text-align: left;
}
.policy-detail table th { background: #f1f5f9; font-weight: 600; }
.policy-meta {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
    font-size: 12px;
    color: #64748b;
    display: flex;
    gap: 8px;
    align-items: center;
}
.pc-inactive-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fee2e2;
    color: #dc2626;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

/* ─── Program Cards ───────────────────────────────────────────────────────── */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.program-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.program-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.program-banner {
    height: 80px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 12px 16px;
}
.program-banner-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.program-icon-wrap {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.program-status-badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-green  { background: #dcfce7; color: #16a34a; }
.badge-blue   { background: #dbeafe; color: #2563eb; }
.badge-yellow { background: #fef9c3; color: #b45309; }
.badge-gray   { background: #f1f5f9; color: #64748b; }
.program-body { padding: 16px; }
.program-body h3 { font-size: 15px; font-weight: 700; margin: 0 0 8px; color: #1e293b; }
.program-body p  { font-size: 13px; color: #64748b; margin: 0 0 12px; line-height: 1.6; }
.program-benefits { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 13px;
    color: #374151;
}
.benefit-item i { color: #22c55e; margin-top: 2px; flex-shrink: 0; }
.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}
.program-target { font-size: 12px; color: #64748b; display: flex; align-items: center; gap: 5px; }
.btn-program-cta {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-program-cta:hover { background: #1d4ed8; }

/* CTA sebagai link eksternal */
a.btn-program-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    line-height: 1;
}
a.btn-program-cta-link:hover {
    background: #1d4ed8;
    color: #fff;
}

/* URL input field */
.url-input-wrap {
    position: relative;
}
.url-prefix-icon {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 12px;
    pointer-events: none;
}
.url-input-wrap input[type="url"] {
    width: 100%;
    box-sizing: border-box;
}
.field-hint {
    font-size: 11.5px;
    color: #94a3b8;
    margin-top: 2px;
    display: block;
}
.admin-overlay-btns {
    position: absolute;
    top: 8px; right: 8px;
    display: flex;
    gap: 4px;
}

/* ─── Benefit Cards ───────────────────────────────────────────────────────── */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.benefit-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.benefit-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.benefit-icon-wrap {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.benefit-card-header h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}
.benefit-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
}
.benefit-list li i { margin-top: 2px; flex-shrink: 0; }

/* ─── Pengembangan Cards ──────────────────────────────────────────────────── */
.pengembangan-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pengembangan-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}
.pengembangan-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.pengembangan-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.pengembangan-body { flex: 1; }
.pengembangan-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.pengembangan-title-row h3 { font-size: 16px; font-weight: 700; margin: 0; }
.pengembangan-duration {
    font-size: 12px;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 10px;
    border-radius: 20px;
    display: flex; align-items: center; gap: 4px;
}
.pengembangan-body p { font-size: 13px; color: #64748b; margin: 0 0 10px; line-height: 1.6; }
.pengembangan-list {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 6px;
}
.pengembangan-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #374151;
}
.pengembangan-list li i { font-size: 10px; flex-shrink: 0; }

/* ─── Rekrutmen Cards ─────────────────────────────────────────────────────── */
.rekrutmen-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 820px;
}
.rekrutmen-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
}
.rekrutmen-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px 12px;
    background: #f8fafc;
}
.rekrutmen-icon { font-size: 20px; flex-shrink: 0; }
.rekrutmen-card-header h3 { font-size: 15px; font-weight: 700; margin: 0; color: #1e293b; flex: 1; }
.rekrutmen-konten {
    padding: 16px 20px;
    font-size: 14px;
    color: #374151;
    line-height: 1.8;
    white-space: pre-line;
}

/* ─── Admin Action Buttons ────────────────────────────────────────────────── */
.admin-item-actions {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}
.admin-item-actions-sm { margin-left: auto; }
.btn-edit-item, .btn-delete-item {
    border: none;
    border-radius: 7px;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}
.btn-edit-item { background: #dbeafe; color: #2563eb; }
.btn-edit-item:hover { background: #2563eb; color: #fff; }
.btn-delete-item { background: #fee2e2; color: #dc2626; }
.btn-delete-item:hover { background: #dc2626; color: #fff; }

.btn-edit-overlay, .btn-delete-overlay {
    width: auto !important;
    padding: 5px 10px !important;
    font-size: 12px !important;
    gap: 4px;
    flex-direction: row;
}

/* ─── Add Item Card ───────────────────────────────────────────────────────── */
.add-item-card {
    border: 2px dashed #93c5fd;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background: #f0f9ff;
    margin-top: 8px;
}
.add-item-card:hover { background: #dbeafe; border-color: #2563eb; }
.add-item-card i { font-size: 22px; }

/* ─── Empty State ─────────────────────────────────────────────────────────── */
.empty-state-pc {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}
.empty-state-pc i { font-size: 48px; margin-bottom: 12px; display: block; }
.empty-state-pc p { font-size: 14px; margin: 0; }

/* ─── Edit Modal ──────────────────────────────────────────────────────────── */
.pc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}
.pc-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 640px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: slideUp 0.25s ease;
}
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes slideInToast { from { transform: translateX(60px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.pc-modal-header {
    padding: 18px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
}
.pc-modal-header h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}
.pc-modal-close {
    background: #fee2e2;
    border: none;
    border-radius: 8px;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: #dc2626;
    font-size: 16px;
    transition: background 0.2s;
}
.pc-modal-close:hover { background: #dc2626; color: #fff; }

.pc-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pc-modal-footer {
    padding: 14px 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    background: #f8fafc;
}
.btn-save-modal {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-save-modal:hover { opacity: 0.9; }
.btn-save-modal:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-cancel-modal {
    background: #f1f5f9;
    color: #64748b;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-cancel-modal:hover { background: #e2e8f0; }

/* ─── Form Fields ─────────────────────────────────────────────────────────── */
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}
.form-field .req { color: #ef4444; }
.form-field input[type="text"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    color: #1e293b;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-field textarea { resize: vertical; min-height: 90px; }

/* Color Field */
.form-field-color .color-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
}
.form-field-color input[type="color"] {
    width: 42px;
    height: 38px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 2px;
    cursor: pointer;
    flex-shrink: 0;
}
.form-field-color input[type="text"] { flex: 1; }

/* Toggle Switch */
.form-field-toggle .toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
}
.toggle-switch { position: relative; display: inline-block; width: 46px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute;
    inset: 0;
    background: #cbd5e1;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.3s;
}
.toggle-slider:before {
    content: '';
    position: absolute;
    height: 18px; width: 18px;
    left: 3px; bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: #2563eb; }
.toggle-switch input:checked + .toggle-slider:before { transform: translateX(22px); }

/* Rich Text Editor */
.rich-toolbar {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}
.rich-toolbar button {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 13px;
    color: #374151;
    transition: background 0.2s;
}
.rich-toolbar button:hover { background: #dbeafe; color: #2563eb; }
.rich-editor {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 12px;
    min-height: 120px;
    font-size: 13px;
    color: #1e293b;
    outline: none;
    line-height: 1.6;
}
.rich-editor:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.rich-editor table { width: 100%; border-collapse: collapse; }
.rich-editor table th, .rich-editor table td {
    border: 1px solid #d1d5db;
    padding: 5px 8px;
}

/* ─── Delete Modal ────────────────────────────────────────────────────────── */
.delete-modal-content { text-align: center; padding: 8px 0; }
.delete-modal-content .delete-icon {
    width: 60px; height: 60px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
    color: #dc2626;
}
.delete-modal-content h4 { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: #1e293b; }
.delete-modal-content p { font-size: 13px; color: #64748b; margin: 0 0 4px; }
.delete-modal-content .item-name-preview {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-top: 6px;
}
.btn-delete-confirm {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-delete-confirm:hover { opacity: 0.88; }
.btn-delete-confirm:disabled { opacity: 0.5; cursor: not-allowed; }

/* ─── Lowongan Pekerjaan Grid ─────────────────────────────────────────────── */
.lowongan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.lowongan-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.lowongan-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.lowongan-inactive {
    opacity: 0.55;
}

/* Top row: icon + title + admin buttons */
.lowongan-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.lowongan-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.lowongan-title-block {
    flex: 1;
    min-width: 0;
}
.lowongan-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px;
    line-height: 1.3;
}

/* Status badge */
.lowongan-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.2px;
}
.lowongan-badge-open {
    background: #dcfce7;
    color: #15803d;
}
.lowongan-badge-soon {
    background: #fef9c3;
    color: #92400e;
}
.lowongan-badge-closed {
    background: #fee2e2;
    color: #dc2626;
}

/* Meta row: divisi, tipe, lokasi, deadline */
.lowongan-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}
.lowongan-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: #64748b;
}
.lowongan-meta-item i {
    font-size: 11px;
    color: #94a3b8;
}
.lowongan-meta-item strong {
    color: #dc2626;
    font-weight: 600;
}

/* Deskripsi singkat */
.lowongan-desc {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Preview kualifikasi (max 3 baris) */
.lowongan-kual-preview {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.lowongan-kual-preview li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}
.lowongan-kual-preview li i {
    color: #22c55e;
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Footer: tombol Lebih Detail */
.lowongan-card-footer {
    margin-top: auto;
    padding-top: 4px;
}
.btn-lowongan-detail {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    font-family: inherit;
}
.btn-lowongan-detail:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.btn-lowongan-detail i {
    font-size: 12px;
    transition: transform 0.2s;
}
.btn-lowongan-detail:hover i {
    transform: translateX(3px);
}
.btn-lowongan-detail-link {
    /* same as btn-lowongan-detail, just for <a> tag */
}

/* ─── Detail Popup Content ────────────────────────────────────────────────── */
.lowongan-detail-popup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ldp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}
.ldp-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}
.ldp-meta span i {
    color: #2563eb;
    font-size: 12px;
}
.ldp-desc {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}
.ldp-section-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.lowongan-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.lowongan-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: #374151;
    line-height: 1.55;
}
.lowongan-detail-list li i.fa-check-circle { color: #22c55e; font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.lowongan-detail-list li i.fa-angle-right  { color: #3b82f6; font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.ldp-info-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13.5px;
    color: #1d4ed8;
    line-height: 1.6;
}
.ldp-info-box i {
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .pc-tabs { gap: 2px; }
    .pc-tab-btn { min-width: 0; font-size: 12px; padding: 8px 10px; }
    .pc-tab-btn span { display: none; }
    .pc-tab-btn i { font-size: 14px; }
    .policy-grid,
    .program-grid,
    .benefit-grid,
    .lowongan-grid { grid-template-columns: 1fr; }
    .pc-modal { max-height: 95vh; }
    .pc-hero { padding: 20px; }
    .pc-hero h1 { font-size: 18px; }
}
