/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after{
    box-sizing:border-box;
}

/*
|--------------------------------------------------------------------------
| Container
|--------------------------------------------------------------------------
*/

.jp-container{
    max-width:1200px;
    margin:auto;
    padding:20px;
}

/*
|--------------------------------------------------------------------------
| Archive
|--------------------------------------------------------------------------
*/

.jp-job-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

/*
|--------------------------------------------------------------------------
| Card
|--------------------------------------------------------------------------
*/

.jp-job-card{
    display:flex;
    gap:20px;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    transition:.3s;
}

.jp-job-card:hover{
    transform:translateY(-4px);
}

/*
|--------------------------------------------------------------------------
| Thumbnail
|--------------------------------------------------------------------------
*/

.jp-job-thumb{
    width:260px;
    flex-shrink:0;
}

.jp-job-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/*
|--------------------------------------------------------------------------
| Content
|--------------------------------------------------------------------------
*/

.jp-job-content{
    flex:1;
    padding:20px;
}

.job-sidebar{
    width:320px;
    flex-shrink:0;
}

@media(max-width:768px){
    .job-sidebar{
        width:100%;
    }

}

/* =========================
   DETAIL PERUSAHAAN
========================= */

.jpc-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}

/* =========================
   DETAIL PERUSAHAAN - SIDEBAR
========================= */

.jpc-side {
    width: 280px;
    flex-shrink: 0;
}

.jpc-profile {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);

    /* 🔥 center all content */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.jpc-logo {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    background: linear-gradient(135deg, #f5f6f8, #ffffff);
    border: 1px solid #f0f0f0;
}

.jpc-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jpc-name {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px;
    line-height: 1.3;
}

.jpc-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    color: #4b5563;

    padding: 8px 12px;
    border-radius: 999px;

    background: #f9fafb;
    border: 1px solid #f1f5f9;

}

.jpc-stat .material-symbols-rounded {
    font-size: 18px;
    color: #6b7280;
}

.jpc-about {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    width: 100%;
}

.jpc-about h2 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #374151;
}

.jpc-about p {
    margin: 0;
}


.jpc-about-content{
    font-size:13px;
    line-height:1.7;
    color:#64748b;
}

.jpc-about-full{
    display:none;
}

.jpc-about.active .jpc-about-preview{
    display:none;
}

.jpc-about.active .jpc-about-full{
    display:block;
}

.jpc-about-toggle{
    margin-top:12px;
    padding:0;

    border:none;
    background:none;

    font-weight:600;
    cursor:pointer;
}

.jpc-about-toggle:hover{
    text-decoration:underline;
}

/* =========================
   DETAIL PERUSAHAAN - MAIN CONTENT
========================= */
.jpc-main {
    flex: 1;
}

.jpc-title-section {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.jpc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jpc-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px;
    transition: .2s ease;
}

.jpc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.jpc-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.jpc-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.jpc-job {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.jpc-time {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.jpc-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.jpc-meta {
    font-size: 13px;
    color: var(--muted);
    background: #f3f3f3;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.jpc-meta .material-symbols-rounded {
    font-size: 16px;
}

/* =========================
   DETAIL PERUSAHAAN - JOB PAGINATION
========================= */
.jpc-pagination {
    margin-top: 20px;
}

.jpc-pagination a,
.jpc-pagination span {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #eee;
    margin-right: 4px;
    text-decoration: none;
}

.jpc-pagination .current {
    background: #1e3a5f;
    color: #fff;
    border-color: #1e3a5f;
}

/* =========================
   DETAIL PERUSAHAAN - RESPONSIVE
========================= */
@media (max-width: 768px) {

    .jpc-layout {
        flex-direction: column;
    }

    .jpc-side {
        width: 100%;
    }

}


/*
|--------------------------------------------------------------------------
| Title
|--------------------------------------------------------------------------
*/

.jp-job-title{
    font-size:22px;
    line-height:1.4;
    margin-bottom:15px;
}

.jp-job-title a{
    text-decoration:none;
    color:#111;
}

/*
|--------------------------------------------------------------------------
| Meta
|--------------------------------------------------------------------------
*/

.jp-job-location,
.jp-job-salary,
.jp-job-deadline{
    margin-bottom:10px;
    font-size:14px;
    color:#444;
}

/*
|--------------------------------------------------------------------------
| Button
|--------------------------------------------------------------------------
*/

.jp-job-button{
    display:inline-block;
    margin-top:15px;
    padding:12px 18px;
    background:#111;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.jp-job-button:hover{
    opacity:.9;
    color:#fff;
}

/*
|--------------------------------------------------------------------------
| Single Job
|--------------------------------------------------------------------------
*/

.jp-job-meta{
    margin:20px 0;
    padding:20px;
    background:#f5f5f5;
    border-radius:10px;
}

.jp-meta-item{
    margin-bottom:12px;
}

/*
|--------------------------------------------------------------------------
| Apply Button
|--------------------------------------------------------------------------
*/

.jp-apply-wrapper{
    margin-top:30px;
}

.jp-apply-btn{
    display:inline-block;
    background:#000;
    color:#fff;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
}

.jp-apply-btn:hover{
    opacity:.9;
    color:#fff;
}

/*
|--------------------------------------------------------------------------
| Pagination
|--------------------------------------------------------------------------
*/

.jp-pagination{
    margin-top:40px;
}

/*
|--------------------------------------------------------------------------
| Empty
|--------------------------------------------------------------------------
*/

.jp-no-job{
    padding:30px;
    background:#fff;
    border-radius:10px;
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media(max-width:768px){ 

    .jp-job-card{
        flex-direction:column;
    }

    .jp-job-thumb{
        width:100%;
    }

    .jp-job-thumb img{
        height:220px;
    }

}



/* ==========================
   HEADER
========================== */

.job-single .job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #fff;
}

.job-single .job-header-left{
display:flex;
align-items:center;
gap:16px;
flex:1;
min-width:0;
}

.job-single .job-company-logo{
width:70px;
height:70px;

border-radius:14px;
overflow:hidden;

background:#f5f5f5;

flex-shrink:0;
}

.job-single .job-company-logo img{
width:100%;
height:100%;
object-fit:contain;
}

.job-single .job-title{
margin:0;
font-size:22px;
line-height:1.4;
word-break:break-word;
}

.job-single .job-company-name a {
    font-size: 15px;
    color: #74818f;
    text-decoration: none;
}

.job-single .job-company-name a:hover{
color:#2563eb;
}


/* ==========================
   APPLY BUTTON
========================== */

.job-single .job-apply-dropdown{
position:relative;
}

.job-single .job-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 11px;
    border: none;
    border-radius: 10px;
    background: #1e3a5f;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
}

.job-single .job-apply-btn:hover{
   transform:translateY(-2px);
    opacity:.9;
    color:#fff;
}

.job-single .job-apply-btn .material-symbols-rounded{
font-size:20px;
}


/* ==========================
   DROPDOWN
========================== */

.job-single .job-apply-dropdown{
position:relative;
}

.job-single .job-apply-menu{
position:absolute;

bottom:100%;
left:0;

width:220px;

margin-bottom:10px;

background:#1E3A5F;

border:1px solid rgba(255,255,255,.06);
border-radius:10px;

opacity:0;
visibility:hidden;

transform:translateY(8px) scale(.98);

transition:
opacity .22s ease,
transform .22s ease,
visibility .22s ease;

box-shadow:
0 12px 30px rgba(15,23,42,.22);

z-index:9999;
overflow:visible;
}

/* ==========================
   SEGITIGA TENGAH
========================== */

.job-single .job-apply-menu::after{
content:"";

position:absolute;

left:50%;
bottom:-7px;

width:14px;
height:14px;

background:#1E3A5F;

border-right:1px solid rgba(255,255,255,.06);
border-bottom:1px solid rgba(255,255,255,.06);

transform:translateX(-50%) rotate(45deg);
}

/* ==========================
   ACTIVE
========================== */

.job-single .job-apply-dropdown.active .job-apply-menu{
opacity:1;
visibility:visible;
transform:translateY(0) scale(1);
}

/* ==========================
   LIST
========================== */

.job-single .job-apply-menu ul{
margin:0;
padding:5px;
list-style:none;
}

.job-single .job-apply-menu li{
margin:0;
}

/* ==========================
   LINK ITEM
========================== */

.job-single .job-apply-menu li a{
display:flex;
align-items:center;
gap:10px;

padding:5px 5px;

border-radius:10px;

text-decoration:none;
color:#f8fafc;

font-size:13px;
font-weight:500;

transition:.18s ease;
}

.job-single .job-apply-menu li a:hover{
background:rgba(255,255,255,.06);
}

/* ==========================
   ICON
========================== */

.job-single .job-apply-menu .material-symbols-rounded{
font-size:18px;
color:#cbd5e1;
}


/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

.job-single .job-header{
align-items:flex-start;
}

.job-single .job-header-left{
gap:14px;
}

.job-single .job-company-logo{
width:60px;
height:60px;
}

.job-single .job-apply-desktop{
display:none;
}


/* sticky bottom */

.job-single .job-apply-mobile{
display:block;

position:fixed;
left:0;
right:0;
bottom:0;

padding:12px;

background:#fff;
border-top:1px solid #eee;

box-shadow:
0 -4px 20px rgba(0,0,0,.05);

z-index:9998;
}

.job-single .job-apply-mobile .job-apply-dropdown{
width:100%;
}

.job-single .job-apply-mobile .job-apply-btn{
width:100%;
}


}

/* META GRID */
.job-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 20px;
    border-top: 1px solid #dbe3ec;
    border-bottom: 1px solid #dbe3ec;
    padding: 15px 0;
}

.job-meta-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* LABEL */
.job-meta-item span{

    display:block;

    font-size:13px;
    color:#6b7280;

    margin-bottom:6px;
}

/* VALUE */
.job-meta-item strong{

    display:block;

    font-size:14px;
    font-weight:600;

    word-break:break-word;
}


/* MOBILE */
@media(max-width:768px){

    .job-meta-grid{

        grid-template-columns:
        repeat(2,1fr);

        gap:10px;
    }

    .job-meta-item strong{

        font-size:13px;
    }

}


/* CONTENT */
.job-content {
    line-height: 1.7;
    margin-top: 20px;
}

.job-content h2, .job-apply-info h2{
position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 18px;
}

.job-content h2::after, .job-apply-info h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    border-radius: 99px;
    background: #1e3a5f;
}
.job-content ul {
    margin: 0;
    padding-left: 20px;
}

.wp-block-separator {
    border-top: 1px solid #dbe3ec;
}

.job-archive {
    width: 100%;
}

.archive-title {
    font-size: 26px;
    margin-bottom: 20px;
}

/* GRID */
.job-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* CARD */
.job-card {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

.job-card:hover {
    transform: translateY(-3px);
    border-color: #2563eb;
}

/* HEADER */
.job-card-header {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.job-card-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    background: #f3f4f6;
}

.company-name {
    font-weight: 600;
    font-size: 14px;
}

.job-date {
    font-size: 12px;
    color: #777;
}

/* TITLE */
.job-card-title {
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.4;
}

/* LOCATION */
.job-card-location {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

/* FOOTER */
.job-card-footer {
    font-size: 12px;
    color: #2563eb;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .job-grid {
        grid-template-columns: 1fr;
    }
}



/* =========================================================
   SEARCH SECTION
========================================================= */

.jp-search-section{
    padding:20px 0;
    background:#f5f7fa;
    border-bottom:1px solid #e5e7eb;
}
/* =========================================================
   ACTIONS
========================================================= */

.jp-search-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

/* =========================================================
   SEARCH BUTTON
========================================================= */

.jp-search-button{
    height:48px;

    padding:0 20px;

    border:none;
    border-radius:10px;

    background:#1E3A5F;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;

    font-size:14px;
    font-weight:600;

    cursor:pointer;

    transition:.2s;
}

.jp-search-button:hover{
    transform: translateY(-2px);
    opacity: .9;
    color: #fff;
}

/* =========================================================
   RESET ICON
========================================================= */

.jp-reset-icon{
    width:48px;
    height:48px;

    border:1px solid #dbe2ea;
    border-radius:10px;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#64748b;

    text-decoration:none;

    transition:.2s;
}

.jp-reset-icon:hover{
    border-color:#ef4444;
    color:#ef4444;
}

.jp-reset-icon .material-symbols-rounded{
    font-size:20px;
}
/* =========================================================
   FORM
========================================================= */

.jp-search-form{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

/* =========================================================
   FIELD
========================================================= */

.jp-search-field{
    position:relative;

    flex:1;
    min-width:180px;
}

.jp-search-field.keyword{
    flex:2;
    min-width:280px;
}


/* =========================================================
   ICON
========================================================= */

.jp-search-field .material-symbols-rounded{
    position:absolute;

    top:50%;
    left:14px;

    transform:translateY(-50%);

    font-size:20px;
    color:#64748b;

    pointer-events:none;
}

/* =========================================================
   INPUT
========================================================= */

.jp-search-field input,
.jp-search-field select{
    width:100%;

    height:48px;

    padding:0 14px 0 44px;

    border:1px solid #dbe2ea;
    border-radius:10px;

    background:#fff;

    font-size:14px;
    font-weight:600;

    color:#111827;

    outline:none;

    box-sizing:border-box;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
}

.jp-search-field input:focus,
.jp-search-field select:focus{
    border-color:#2563eb;
}

.jp-search-field input::placeholder{
    color:#94a3b8;
}


/* =========================================================
   FILTER
========================================================= */

.jp-filter-row{
    display:flex;
    flex-wrap:wrap;

    gap:10px;

    width:100%;

    margin-top:6px;
}
/* =========================================================
   CHIP
========================================================= */

.jp-filter-chip{
    cursor:pointer;
}

.jp-filter-chip input{
    display:none;
}

.jp-filter-chip span{
    display:flex;
    align-items:center;
    justify-content:center;

    height:34px;

    padding:0 14px;

    border-radius:999px;

    background:#fff;

    border:1px solid #dbe2ea;

    font-size:13px;
    font-weight:500;

    color:#475569;

    transition:.2s;
}

.jp-filter-chip span:hover{
    border-color:#1E3A5F;
    color:#1E3A5F;
}

.jp-filter-chip input:checked + span{
    background:#1E3A5F;
    border-color:#1E3A5F;
    color:#fff;
}

.search-filter-hero{
    padding:20px 0;
    background:linear-gradient(135deg, #fff, #c6d5e9);
    border-bottom:1px solid #eee;
    margin-bottom: 20px;
}

/* HEADER */
.search-filter-head{
    margin-bottom:16px;
}

.search-filter-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;

    font-size:12px;
    padding:6px 10px;
    border-radius:999px;

    background:rgba(255,152,0,.08);
    color:#FF9800;

    margin-bottom:8px;
}

.search-filter-title{
    font-size:30px;
    font-weight:700;
    margin:0 0 6px;
}

.search-filter-title span{
    color:#f97700;
    font-weight:800;
}

.search-filter-desc{
    font-size:15px;
    color:#666;
    line-height: 1.5;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .jp-search-form{
        gap:10px;
    }

    .jp-search-field,
    .jp-search-field.keyword{
        flex:100%;
        min-width:100%;
    }

    .jp-search-button{
        width:100%;
    }

}

@media(max-width:768px){

    .jp-search-actions{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:10px;
    }

    .jp-search-button{
        width:100%;
        justify-content:center;
    }

    .jp-reset-icon{
        width:100%;
        height:48px;

        display:flex;
        align-items:center;
        justify-content:center;
    }

}


.loker-tool{
    width:100%;
}

.loker-tool .material-symbols-rounded{
    font-size:17px;
}

.loker-tool .tombol{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.left-action{
    display:flex;
    align-items:center;
    gap:10px;
    flex:1;
}

.left-action .job-apply-dropdown{
    flex:1;
}

.kirim-lamaran-btn{
    width:100%;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;

    border:none;
    border-radius:10px;

    background:#1E3A5F;
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

/* ==========================
   WALK IN ADDRESS
========================== */

.job-single .jp-walkin-address{
display:flex;
align-items:flex-start;
gap:10px;

padding:5px 5px;

border-radius:10px;

font-size:13px;
color:#f8fafc;
}

.job-single .jp-walkin-address:hover{
background:rgba(255,255,255,.06);
}

.job-single .jp-walkin-address .material-symbols-rounded{
font-size:18px;
color:#cbd5e1;
flex-shrink:0;
margin-top:1px;
}

.job-single .jp-walkin-address div{
display:flex;
flex-direction:column;
gap:2px;
}

.job-single .jp-walkin-address strong{
font-size:13px;
font-weight:600;
color:#fff;
}

.job-single .jp-walkin-address small{
font-size:12px;
line-height:1.5;
color:#94a3b8;
}

@media (max-width:768px){

.job-apply-row{
flex-direction:column;
gap:8px;
}

.job-apply-label{
width:auto;
}

}

.simplefavorite-button,
.bagikan{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;

    height:42px;
    padding:0 12px;

    border:1px solid #e5e7eb;
    border-radius:10px;
    background:#fff;

    cursor:pointer;
}

.right-meta{
    display:flex;
    align-items:center;
    gap:5px;
}

.timeline,
.lapor{
    display:flex;
    align-items:center;
    gap:6px;

    padding:8px 10px;
    border-radius:8px;

    background:#f9fafb;
}

.lapor{
    color:#991b1b;
}


/* MOBILE */
@media(max-width:768px){

    .tombol{
        flex-direction:column;
        align-items:stretch;
    }

    .left-action{
        width:100%;
    }

    .right-meta{
        width:100%;
        justify-content:space-between;
    }

    /* sembunyikan teks tombol kecil */
    .tool-text{
        display:none;
    }

    .simplefavorite-button,
    .bagikan{
        width:42px;
        padding:0;
    }

}

/* =========================
   REPORT MODAL
========================= */

.report-modal{
    position:fixed;
    inset:0;
    z-index:9999;

    opacity:0;
    visibility:hidden;
    transition:.25s ease;
}

.report-modal.active{
    opacity:1;
    visibility:visible;
}

.report-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.5);
}

/* DESKTOP */

.report-box{

    position:absolute;

    left:50%;
    top:50%;

    transform:
    translate(-50%,-50%);

    width:100%;
    max-width:560px;
    max-height:90vh;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    display:flex;
    flex-direction:column;
}

/* HEADER */

.report-header{
    padding:18px 20px;
    border-bottom:1px solid #eee;
    flex-shrink:0;
}

.report-header h3{
    margin:0;
    font-size:20px;
}

.report-subtitle{
    margin:5px 0 0;
    color:#6b7280;
    font-size:13px;
}

/* FORM */

.report-form{

    flex:1;

    overflow-y:auto;

    padding:20px;

    display:flex;
    flex-direction:column;
    gap:14px;
}

.report-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.report-form input,
.report-form textarea{

    width:100%;

    padding:13px 14px;

    border:1px solid #e5e7eb;
    border-radius:12px;

    font-size:14px;
}

.report-form textarea{

    resize:none;
    min-height:120px;
}

/* ALASAN */

.report-reasons{

    display:grid;
    grid-template-columns:
    repeat(2,1fr);

    gap:10px;
}

.report-option input{
    display:none;
}

.report-option span{

    display:flex;
    align-items:center;
    gap:10px;

    padding:12px;

    border:1px solid #e5e7eb;
    border-radius:12px;

    cursor:pointer;

    transition:.2s;
}

.report-option span:before{

    content:"";

    width:18px;
    height:18px;

    border-radius:50%;
    border:2px solid #d1d5db;

    flex-shrink:0;
}

.report-option input:checked + span{

    background:#eef4ff;
    border-color:#1E3A5F;
    color:#1E3A5F;
}

.report-option input:checked + span:before{

    content:"✓";

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:11px;

    color:#fff;

    background:#1E3A5F;
    border-color:#1E3A5F;
}

/* FOOTER */

.report-footer{

    display:flex;
    gap:10px;

    padding:15px 20px;

    border-top:1px solid #eee;
}

.report-cancel,
.report-submit{

    flex:1;
    height:48px;

    border:none;
    border-radius:12px;

    font-weight:600;
    cursor:pointer;
}

.report-cancel{
    background:#f3f4f6;
}

.report-submit{
    background:#1E3A5F;
    color:#fff;
}


/* MOBILE */

@media(max-width:768px){

    .report-box{

        left:0;
        top:auto;
        bottom:0;

        transform:
        translateY(100%);

        width:100%;
        height:100%;
        max-width:100%;
        max-height:100%;

        border-radius:
        20px 20px 0 0;

        transition:
        transform .35s ease;
    }

    .report-modal.active
    .report-box{

        transform:
        translateY(0);
    }

    .report-grid,
    .report-reasons{

        grid-template-columns:1fr;
    }

}


/* ==========================
   KIRIM LAMARAN
========================== */

.job-apply-info{
margin:20px 0;
border-top: 1px solid #dbe3ec;
}


.job-apply-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 5px 0;
    border-bottom: 1px solid #f1f5f9;
}

.job-apply-row:last-child{
border-bottom:none;
}

.job-apply-label{
width:120px;
display:flex;
align-items:center;
gap:8px;
font-weight:600;
flex-shrink:0;
}

.job-apply-label .material-symbols-rounded{
font-size:20px;
}

.job-apply-value{
display:flex;
align-items:flex-start;
gap:10px;
flex:1;
word-break:break-word;
}

.job-apply-value a{
word-break:break-all;
text-decoration:none;
}

.jp-copy-btn{
display:flex;
align-items:center;
justify-content:center;
padding:0;
background:none;
border:none;
cursor:pointer;
color:#64748b;
}

.jp-copy-btn:hover{
color:#0f172a;
}

.jp-copy-btn .material-symbols-rounded{
font-size:18px;
}

/* =========================================
   ARCHIVE
========================================= */

.job-archive{
    min-width:0;
}

/* =========================================
   LIST
========================================= */

.jp-job-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

/* =========================================
   ITEM
========================================= */

.jp-job-item{
    border:1px solid #e5e7eb;
    border-radius:18px;
    background:#fff;
    overflow:hidden;
    transition:.2s ease;
}

.jp-job-item:hover{
    border-color:#d1d5db;
    transform:translateY(-2px);
}

/* =========================================
   LINK
========================================= */

.jp-job-link{
    display:flex;
    gap:18px;
    padding:18px;
    text-decoration:none;
    color:inherit;
}

/* =========================================
   LEFT
========================================= */

.jp-job-left{
    width:120px;
    height:120px;
    flex-shrink:0;
    overflow:hidden;
    border-radius: 10px
}

.jp-job-left img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* =========================================
   RIGHT
========================================= */

.jp-job-right{
    flex:1;
    min-width:0;
    position: relative;
}

/* =========================================
   TITLE
========================================= */

.jp-job-title{
    margin:0 0 10px;
    font-size:17px;
    line-height:1.5;
    font-weight:700;
    color:#111827;
}

/* =======================
   BADGE (KIRI ATAS)
======================= */
.jp-badge-top {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #4b5563;
}

/* =======================
   TIME (KANAN ATAS)
======================= */
.jp-job-time {
    flex-flow: wrap;
    align-items: center;
    font-size: 12px;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    gap: 3px;
}

/* =========================================
   ROW 1
========================================= */

.jp-job-row-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 5px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 5px;
}

.jp-company{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:14px;
    color:#4b5563;
    font-weight:600;
}

.jp-salary{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:14px;
    color:#4b5563;
}

/* =========================================
   ROW 2
========================================= */

.jp-job-row-2{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.jp-job-row-2 > div{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:14px;
    color:#374151;
}

/* =========================================
   ICON
========================================= */

.jp-job-link .material-symbols-rounded{
    font-size:18px;
    color:#6b7280;
}


/* =========================================
   PAGINATION
========================================= */

.job-pagination{
    margin-top:30px;
}

.job-pagination .nav-links{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.job-pagination .page-numbers{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    height:42px;
    padding:0 14px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    background:#fff;
    color:#111827;
    text-decoration:none;
    transition:.2s ease;
}

.job-pagination .current{
    background:#1e3a5f;
    border-color:#1e3a5f;
    color:#fff;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:767px){

    .jp-job-link{
        gap:14px;
        padding:16px;
        display:block;
    }

    .jp-job-left{
        float: left;
        object-fit: cover;
        width: 50px;
        height: 50px;
        padding-right: 10px;
    }

    .jp-job-title{
        font-size:18px;
        margin-bottom:8px;
    }

    .jp-job-row-1{
        gap:10px;
        margin-bottom:10px;
    }


}



.jp-tax-list-title {
    font-weight: 700;
    margin: 0;
    margin-bottom: 10px;
}

.jp-tax-list{
    margin:0;
    padding:0;
    list-style:none;
}

.jp-tax-list li{
    border-bottom:1px solid #dbe3ec;
}

.jp-tax-list li:last-child{
    border-bottom:none;
}

.jp-tax-list li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:6px 0;
    text-decoration:none;
    color:#2d4059;
    font-size:15px;
    line-height:1.5;
    transition:.2s ease;
}

.jp-tax-list li a:hover{
    color:#0f172a;
    padding-left:4px;
}

.jp-tax-name{
    display:block;
}






/* =========================
   HERO SECTION (HEADER)
   - Mengatur judul & intro halaman company
   - Centered layout biar fokus ke judul
========================= */

.page-company .company-hero{
    text-align:center; /* semua text di tengah */
    margin-bottom:20px; /* jarak ke search box */
}

/* Judul utama halaman company */
.page-company .company-hero h1{
    font-size:28px; /* ukuran besar supaya jadi fokus utama */
    color:#1E3A5F; /* warna brand (navy) */
}


/* =========================
   SEARCH BOX COMPANY
   - Input pencarian perusahaan
   - dibuat responsif & clean
========================= */

.page-company .company-search{
    max-width:500px; /* supaya tidak terlalu lebar di desktop */
    margin:0 auto 20px; /* center + jarak bawah */
}

/* input search */
.page-company .company-search input{
    width:100%; /* full mengikuti container */
    padding:12px; /* ruang dalam agar nyaman diketik */
    border:1px solid #ddd; /* border abu ringan */
    border-radius:10px; /* sudut rounded modern */
}


/* =========================
   GRID LIST COMPANY
   - Layout kartu perusahaan
   - responsive otomatis (auto-fill)
========================= */

.page-company .company-grid{
    display:grid; /* pakai grid layout */
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
    /* otomatis menyesuaikan jumlah kolom */
    gap:15px; /* jarak antar card */
}


/* =========================
   COMPANY CARD
   - tampilan tiap perusahaan
   - hover effect biar interaktif
========================= */

.page-company .company-card{
    text-align:center; /* isi card rata tengah */
    border:1px solid #eee; /* garis tipis */
    padding:15px; /* ruang dalam card */
    border-radius:12px; /* sudut halus */
    text-decoration:none; /* hilangkan underline link */
    transition:.2s; /* animasi smooth saat hover */
    background:#fff; /* background putih bersih */
}

/* efek hover card */
.page-company .company-card:hover{
    transform:translateY(-4px); /* naik sedikit */
    box-shadow:0 10px 20px rgba(0,0,0,.08); /* bayangan lembut */
}


/* =========================
   LOGO COMPANY
   - ukuran logo agar konsisten
   - menjaga semua logo tidak pecah layout
========================= */

.page-company .company-logo img{
    width:60px; /* ukuran logo tetap */
    height:60px; /* kotak seragam */
    object-fit:contain; /* menjaga rasio gambar */
}
