/* Job Page - Consistent with Blog Page */
.job-page {
    padding: 60px 0 80px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(255, 99, 71, 0.02) 100%
    );
    min-height: 70vh;
}

/* Page Header - Consistent with Blog */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary, #ff6347);
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light, #000000);
    margin: 0;
}

/* Filter Section - Similar to Search Section in Blog */
.filter-section {
    margin-bottom: 40px;
}

.filter-form {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-section .form-control,
.filter-section .form-select {
    border: 2px solid rgba(255, 99, 71, 0.15);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.filter-section .form-control:focus,
.filter-section .form-select:focus {
    outline: none;
    border-color: var(--primary, #ff6347);
    box-shadow: 0 0 0 3px rgba(255, 99, 71, 0.1);
}

/* Filter button menggunakan cta cta_ani - styling sudah ada di main.css */

/* Jobs List */
.jobs-list {
    margin-bottom: 30px;
}

/* Job Card - Similar to Blog Item Card */
.job-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.job-card-content {
    padding: 30px;
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.job-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary, #ff6347);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.job-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.job-title a:hover {
    color: var(--primary-dark, #ff6347);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light, #000000);
}

.job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    color: var(--primary, #ff6347);
    font-size: 12px;
}

.bookmark-btn {
    background: rgba(255, 99, 71, 0.1);
    border: 2px solid rgba(255, 99, 71, 0.2);
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--primary, #ff6347);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.bookmark-btn:hover {
    background: var(--primary, #ff6347);
    border-color: var(--primary, #ff6347);
    color: #ffffff;
    transform: scale(1.1);
}

.bookmark-btn.active {
    background: var(
        --gradient-primary,
        linear-gradient(135deg, #ff6347 0%, #ff6347 100%)
    );
    border-color: var(--primary, #ff6347);
    color: #ffffff;
}

.job-description {
    font-size: 15px;
    color: var(--text-light, #000000);
    margin: 0 0 20px 0;
    line-height: 1.7;
}

.job-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Job actions button menggunakan cta cta_ani - styling sudah ada di main.css */

/* Empty State - Consistent with Blog */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state-icon {
    font-size: 80px;
    color: #000000;
    margin-bottom: 30px;
}

.empty-state-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary, #ff6347);
    margin: 0 0 15px 0;
}

.empty-state-text {
    font-size: 16px;
    color: var(--text-light, #000000);
    margin: 0;
}

/* Pagination - Consistent with Blog */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination-wrapper .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper .pagination li {
    display: inline-block;
}

.pagination-wrapper .pagination li a,
.pagination-wrapper .pagination li span {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary, #ff6347);
    background: #ffffff;
    border: 1px solid rgba(255, 99, 71, 0.15);
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-wrapper .pagination li.active span,
.pagination-wrapper .pagination li a:hover {
    background: var(--primary, #ff6347);
    color: #ffffff;
    border-color: var(--primary, #ff6347);
}

.pagination-wrapper .pagination li.disabled span {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 992px) {
    .page-title {
        font-size: 36px;
    }

    .filter-form {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .job-page {
        padding: 40px 0 60px;
    }

    .page-title {
        font-size: 30px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .job-card-content {
        padding: 20px;
    }

    .job-title {
        font-size: 20px;
    }

    .job-meta {
        font-size: 12px;
        gap: 10px;
    }

    .job-actions {
        flex-direction: column;
    }

    .job-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .empty-state-icon {
        font-size: 60px;
    }

    .empty-state-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 26px;
    }

    .filter-form {
        padding: 15px;
    }

    .job-card-content {
        padding: 15px;
    }
}
