/*
Theme Name: Glidik Theme
Theme URI: https://glidik.com
Author: Admin Glidik
Author URI: https://glidik.com
Description: Platform Marketplace Jasa dan Usaha Lokal Terpercaya.
Version: 1.4.8
Text Domain: glidik
*/

:root {
    --miranda: 'Miranda Sans', sans-serif;
    --brand-primary: #1D293D;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    overflow-x: visible; 
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Untuk Chrome, Safari, dan Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    vertical-align: middle;
    display: block;
}

a {
    color: #333;
    text-decoration: none;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter-Variable.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

input, textarea, select, button {
    font-family: 'Inter', sans-serif;
}

/* --- GLOBAL RESET --- */
body { 
    font-family: 'Inter', sans-serif; 
    line-height: 1.6; 
    color: #333; 
    margin: 0;
    padding: 0;
    overflow-x: clip; 
}

/* --- CONTAINER GLOBAL --- */
.container-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.glidik-content {
    padding: 50px 0;
}

/* --- FOOTER GLOBAL --- */
.site-footer {
    background: #222;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    border-top: 5px solid #007bff;
}

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

.site-footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* BATAS KODE */

/* CONTAINER & WRAPPER */
.glidik-archive-wrapper {
    background: #f8f9fa;
    padding: 40px 0;
    min-height: 80vh;
}

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

/* HEADER */
.archive-header {
    margin-bottom: 40px;
    text-align: center;
}

.archive-header h1 {
    font-size: 28px;
    color: #1e73be;
    margin-bottom: 10px;
    font-weight: 800;
}

.archive-header p {
    color: #666;
    font-size: 15px;
}

/* GRID PRESISI */
.pekerja-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

@media (max-width: 768px) {
    .pekerja-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .pekerja-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* PAGINATION & LAINNYA */
.no-data {
    grid-column: 1/-1;
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 15px;
}

.no-data h2 {
    color: #999;
}

.glidik-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.glidik-pagination .page-numbers {
    padding: 8px 16px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #1e73be;
    text-decoration: none;
    font-weight: bold;
}

.glidik-pagination .page-numbers.current {
    background: #1e73be;
    color: white;
    border-color: #1e73be;
}

/* ---------- HEADER MENU BLOG ---------- */

.blog-menu-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.blog-category-menu {
    max-width: 1100px;
    margin: 0 auto;
}

#menu-menu-blog {
    display: flex;
    align-items: center;
    gap: 30px;
}

#menu-menu-blog li a {
    display: block;
    font-size: initial;
    font-weight: bold;
    color: var(--brand-primary);
    text-transform: capitalize;
    padding: 10px 0;
}

@media (max-width: 768px) {
    .blog-category-menu {
        padding: 0 15px;
    }
}

/* ---------- BLOG FOOTER ---------- */

.blog-footer {
    background: lavender;
}

.blog-footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    font-size: small;
    line-height: 1.3;
}

.blog-footer-menu {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}

.blog-footer-copyright {
	color: lightslategray;
}

.blog-footer-menu li a {
    white-space: nowrap;
    color: lightslategray;
}

@media (max-width: 768px) {
    .blog-footer-container {
        flex-direction: column;
        gap: 15px;
    }
    .blog-footer-menu {
        justify-content: center;
        row-gap: 5px;
    }
    .blog-footer-copyright {
        text-align: center;
    }
}