.vacancy-page {
    padding: 100px 0 3rem;
    min-height: 60vh;
}

.vacancy-page__title {
    color: #fb0a01;
    font-size: 3rem;
    font-family: zlb;
    margin-bottom: 0.25rem;
}

.vacancy-page__subtitle {
    color: #fb0a01;
    font-family: jkt;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.vacancy-list {
    display: flex;
    flex-direction: column;
}

.vacancy-item {
    padding: 1rem;
    background: #fb0a01;
    margin-bottom: 1rem;
}

.vacancy-item__header {
    margin-bottom: 0.75rem;
}

.vacancy-item__title {
    font-family: jkt;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.vacancy-item__subtitle {
    font-family: jkt;
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.vacancy-item__badges {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.vacancy-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-family: jkt;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 600;
    white-space: nowrap;
    background: #07733d;
    color: #fff;
}

.vacancy-item__desc {
    font-family: jkt;
    font-size: 1rem;
    color: #fff;
    margin: 0.75rem 0 1rem;
    line-height: 1.6;
}

.vacancy-item__btn {
    display: inline-block;
    background: #fff;
    color: #fb0a01;
    font-size: 0.78rem;
    font-family: jkt;
    padding: 0.4rem 1.4rem;
    border-radius: 1.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.vacancy-item__btn:hover {
    transform: translateY(-6px);
    color: #fb0a01;
}

.vacancy-empty {
    color: #fff;
    font-family: jkt;
    font-size: 1rem;
    text-align: center;
    padding: 2rem 0;
}

/* Modal */
.vacancy-modal .modal-content {
    border-radius: 12px;
    border: none;
}

.vacancy-modal .modal-header {
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.vacancy-modal .modal-title {
    font-family: zlb;
    color: #fb0a01;
    font-size: 1.4rem;
}

.vacancy-modal__badges {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.vacancy-modal__badges .vacancy-badge {
    background: #e0c25f;
    color: #1a1a1a;
}

.vacancy-modal__heading {
    font-family: zlb;
    color: #07733d;
    font-size: 1.05rem;
    margin: 1.25rem 0 0.5rem;
}

.vacancy-modal__content {
    font-family: jkt;
    font-size: 0.92rem;
    color: #4d4d4d;
    line-height: 1.7;
}

.vacancy-modal__content ul,
.vacancy-modal__content ol {
    padding-left: 1.2rem;
}

.vacancy-modal .modal-footer {
    border-top: 1px solid #eee;
}

.vacancy-modal__apply {
    display: inline-block;
    background: #fb0a01;
    color: #fff;
    font-size: 0.85rem;
    font-family: jkt;
    padding: 0.5rem 1.6rem;
    border-radius: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.vacancy-modal__apply:hover {
    transform: translateY(-4px);
    color: #fff;
}
/* Search */
.vacancy-search {
    position: relative;
    margin-bottom: 2rem;
    max-width: 420px;
}

.vacancy-search__input {
    width: 100%;
    padding: 0.65rem 2.2rem 0.65rem 1rem;
    border: 2px solid #fb0a01;
    border-radius: 1.5rem;
    font-family: jkt;
    font-size: 0.9rem;
    color: #1a1a1a;
    outline: none;
    transition: box-shadow 0.2s;
}

.vacancy-search__input:focus {
    box-shadow: 0 0 0 3px rgba(251, 10, 1, 0.2);
}

.vacancy-search__clear {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.3rem;
    line-height: 1;
    color: #fb0a01;
    cursor: pointer;
}

/* Loading state saat search/pagination sedang fetch */
.vacancy-list--loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Pagination */
.vacancy-pagination {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.vacancy-pagination__list {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.vp-item {
    display: flex;
}

.vp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #fb0a01;
    color: #fb0a01;
    font-family: jkt;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition:
        background 0.2s,
        color 0.2s;
    outline: none;
    box-shadow: none;
}

.vp-link:hover {
    background: #fb0a01;
    color: #fff;
}

.vp-link:focus,
.vp-link:focus-visible {
    box-shadow: 0 0 0 3px rgba(251, 10, 1, 0.25);
}

.vp-item--active .vp-link {
    background: #fb0a01;
    color: #fff;
    font-weight: 700;
    cursor: default;
}

.vp-item--disabled .vp-link {
    opacity: 0.35;
    cursor: not-allowed;
    background: #fff;
    color: #fb0a01;
}

.vp-item--dots .vp-link {
    border: none;
    background: transparent;
    color: #999;
    cursor: default;
}

.vacancy-pagination__info {
    font-family: jkt;
    font-size: 0.78rem;
    color: #888;
    margin: 0;
}

@media (max-width: 768px) {
    .vp-link {
        width: 1.9rem;
        height: 1.9rem;
        font-size: 0.78rem;
    }
    .vacancy-page__title {
        font-size: 2rem;
    }

    .vacancy-page__subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .vacancy-item__title {
        font-size: 1rem;
    }

    .vacancy-item__desc {
        font-size: 0.85rem;
    }

    .vacancy-modal .modal-title {
        font-size: 1.15rem;
    }
}
