/* Daily Worker LokerBali - Pure CSS, Mobile First */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: #1a1a2e;
    background: #f7f7f8;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.dw-header {
    background: #1a1a2e;
    color: #fff;
    padding: 24px 0;
}

.dw-header h1 {
    font-size: clamp(20px, 5vw, 30px);
    margin-bottom: 6px;
}

.dw-header p {
    opacity: 0.85;
    font-size: 14px;
}

/* Stats */
.dw-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0;
}

@media (min-width: 640px) {
    .dw-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dw-stat-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.dw-stat-card .num {
    font-size: 28px;
    font-weight: bold;
    color: #f97316;
}

.dw-stat-card .label {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

/* Search */
.dw-search {
    margin: 20px 0;
}

.dw-search form {
    display: flex;
    gap: 8px;
}

.dw-search input[type="text"] {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.dw-search button {
    padding: 12px 20px;
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.dw-search button:hover {
    background: #ea6a0c;
}

/* Job Grid */
.dw-job-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 20px 0;
}

@media (min-width: 640px) {
    .dw-job-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .dw-job-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dw-job-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dw-job-card.expired {
    opacity: 0.7;
}

.dw-job-card .position {
    font-size: 17px;
    font-weight: bold;
    color: #1a1a2e;
}

.dw-job-card .company {
    font-size: 14px;
    color: #444;
}

.dw-job-card .meta {
    font-size: 13px;
    color: #666;
}

.dw-job-card .fee {
    font-size: 15px;
    font-weight: bold;
    color: #f97316;
    margin-top: 4px;
}

.dw-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-top: 8px;
    width: fit-content;
}

.dw-badge.expired {
    background: #e5e5e5;
    color: #666;
}

.dw-btn-whatsapp {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 16px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.dw-btn-whatsapp:hover {
    background: #1ebe5b;
}

/* Pagination */
.dw-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.dw-pagination a,
.dw-pagination span {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #1a1a2e;
    font-size: 14px;
}

.dw-pagination .active {
    background: #f97316;
    color: #fff;
    border-color: #f97316;
}

/* GEO Content */
.dw-content {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.dw-content h2 {
    font-size: 20px;
    margin-bottom: 12px;
    border-bottom: 2px solid #f97316;
    padding-bottom: 6px;
    display: inline-block;
}

.dw-content p {
    margin-bottom: 12px;
    color: #333;
}

/* FAQ */
.dw-faq {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.dw-faq h2 {
    font-size: 20px;
    margin-bottom: 12px;
    border-bottom: 2px solid #f97316;
    padding-bottom: 6px;
    display: inline-block;
}

.dw-faq-item {
    margin-top: 14px;
}

.dw-faq-item h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.dw-faq-item p {
    font-size: 14px;
    color: #444;
}

.dw-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

footer.dw-footer {
    text-align: center;
    padding: 24px 0;
    color: #888;
    font-size: 13px;
}
