body {
    font-family: sans-serif;
    font-size:15px;
    margin: 0;
    color: var(--contrast);
}

a {
    color: var(--accent);
    text-decoration: underline;
}

a:hover, a:focus, a:active {
    color: var(--contrast);
}
/* =========================
   CONTAINER
========================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 10px 16px;
}

/* =========================
   GRID LAYOUT
========================= */
.layout{
    display:flex;
    gap:24px;
}

.content {
    width: 70%;
}

.post-single{
    flex:1;
    min-width:0;
}

.sidebar{
    width:320px;
    flex-shrink:0;
}

@media(max-width:768px){

    .layout{
        flex-direction:column;
    }
    
    .content {
    width: auto;
}

    .sidebar{
        width:100%;
    }

}

/* =========================
   HEADER WRAPPER
========================= */
.site-header {
    background: #1e3a5f;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

.inside-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

/* =========================
   LOGO
========================= */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

.site-title a {
    color: #fff;
    text-decoration: none;
}

.site-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* =========================
   MENU DESKTOP (FIX UTAMA)
========================= */
.main-navigation {
    display: flex;
    align-items: center;
}

ul.menu-list {
    display: flex;
    flex-direction: row; /* 🔥 INI WAJIB */
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    position: relative;
}

.menu-list li a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: 0.2s;
}

.menu-list li a:hover {
    color: #FF9800;
}

/* =========================
   TOGGLE BUTTON
========================= */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .inside-header {
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #284771;
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        border-radius: 10px;
    }

    .main-navigation.active {
        display: block;
    }

    ul.menu-list {
        flex-direction: column; /* 🔥 MOBILE ONLY */
        gap: 12px;
        padding: 15px;
    }

    .menu-list li a {
        display: block;
        padding: 10px 0;
    }
}

/* =========================
   SIDEBAR & WIDGET
========================= */

/* =========================
   SIDEBAR WIDGET MODERN
========================= */
.widget {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

/* TITLE */
.widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

/* garis kiri */
.widget-title::before,
.widget-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

/* spacing */
.widget-title::before {
    margin-right: 10px;
}

.widget-title::after {
    margin-left: 10px;
}


/* LIST RESET */
.widget-list,
.widget ul,
.widget ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.widget li::marker {
    content: "";
}

.widget li::before,
.widget li a::before {
    content: none !important;
    display: none !important;
}

/* ITEM */
.widget-list li {
    margin-bottom: 10px;
}

.widget-list li:last-child {
    margin-bottom: 0;
}

/* LINK */
.widget-list li a {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    color: #222;
    transition: all 0.2s ease;
    padding: 6px;
    border-radius: 8px;
}

.widget-list li a:hover {
    background: #f7f9fc;
    color: var(--accent);
    transform: translateX(3px);
}

/* DOT */
.widget-list li a::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #fe750c;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.material-symbols-outlined {
  line-height: 1.4 !important;
}


/* TAGS */
.widget-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-item {
    display: inline-block;
    font-size: 12px;
    padding: 4px 10px;
    background: #f5f7fb;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    transition: 0.2s;
    border: 1px solid #eee;
}

.tag-item:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* =========================
   POST LIST
========================= */
.post-item {
    display: flex;
    gap: 14px;
    background: #fff;
    padding: 14px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.post-thumb {
    width: 180px;
    flex-shrink: 0;
}

.post-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.post-content {
    flex: 1;
}

.post-title {
    margin: 0 0 8px 0;
    font-size: 18px;
}

.post-title a {
    text-decoration: none;
    color: var(--contrast);
}

.post-title a:hover {
    color: var(--contrast-2);
}

.post-excerpt {
    font-size: 14px;
    line-height: 1.6;
}

.post-category {
    margin-top: 8px;
}

.post-category a {
    display: inline-block;
    font-size: 12px;
    background: #f2f2f2;
    padding: 4px 8px;
    border-radius: 6px;
    margin-right: 5px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.post-category a:hover {
    background: var(--accent);
    color: #fff;
}

/* =========================
   ARCHIVE / SEARCH TITLE
========================= */
.arsip-title {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.arsip-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #ddd;
}

.search-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.search-empty {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* =========================
   SINGLE ARTICLE
========================= */
.single-article {
    background: #fff;
    padding: 18px;
    border: 1px solid #eee;
    border-radius: 12px;
}

.single-title {
    font-size: 26px;
    margin: 0 0 10px 0;
    color: var(--contrast);
    line-height: 1.3;
}

.single-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.single-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.single-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.single-tags {
    margin-top: 20px;
}

.single-tags a {
    display: inline-block;
    font-size: 12px;
    background: var(--base);
    padding: 4px 8px;
    border-radius: 6px;
    margin-right: 5px;
    text-decoration: none;
    color: var(--contrast);
    transition: 0.2s;
}

.single-tags a:hover {
    background: var(--accent);
    color: #fff;
}

/* =========================
   PAGE
========================= */
.page-content {
    margin: 0 auto;
}

.page-title {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--contrast);
}

.page-body {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

/* =========================
   RESPONSIVE
========================= */

/* MOBILE POST */
@media (max-width: 640px) {
    .post-item {
        flex-direction: column;
    }

    .post-thumb {
        width: 100%;
    }

    .post-thumb img {
        height: auto;
    }
}

/* TABLET */
@media (max-width: 1024px) {
    .layout {
        grid-template-columns: 1fr;
    }
}

/* MOBILE NAV */
@media (max-width: 768px) {
    .header-wrap {
        flex-wrap: wrap;
        gap: 12px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .menu {
        display: none;
        width: 100%;
        flex-basis: 100%;
    }

    .menu.active {
        display: block;
        width: 100%;
        flex-basis: 100%;
        margin-top: 10px;

        background: #fff;
        border: 1px solid #eee;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);

        padding: 10px 0;
    }

    .menu-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .menu-list li {
        width: 100%;
        list-style: none;
    }

    .menu-list li a {
        display: block;
        padding: 10px 16px;
    }

    .menu-list li a:hover {
        background: var(--accent);
        color: #fff;
        border-radius: 6px;
    }

    .search {
        width: 100%;
    }

    .search form {
        width: 100%;
        display: flex;
    }

    .search input {
        width: 100%;
    }
}


/* ==========================
HERO
========================== */

.home-hero{

padding:45px 0;

margin-bottom:40px;
color: #fff;
background:
linear-gradient(155deg,#1E3A5F 0%,#0a1628 100%)
}

.home-hero-grid{

display:grid;

grid-template-columns:
1.2fr .8fr;

gap:40px;

align-items:center;
}


.home-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 152, 0, 0.15);
    color: #FF9800;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.home-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #FF9800;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* LEFT */

.home-hero-title{

font-size:32px;

font-weight:500;

line-height:1.25;
}

.home-title-highlight{
color: #FF9800;
font-weight:800;

position:relative;
}

.home-title-highlight::after{

content:'';

position:absolute;

left:0;
bottom:4px;

width:100%;
height:10px;

background:#dbeafe;

z-index:-1;

border-radius:999px;
}


.home-title-badge{

display:inline-flex;

align-items:center;

width:fit-content;

padding:8px 16px;

border-radius:999px;

font-size:13px;

font-weight:700;

background:#eff6ff;

color:#2563eb;

letter-spacing:.5px;

text-transform:uppercase;
}

.home-hero-desc{

line-height:1.7;

opacity: 0.75;

margin-bottom:25px;

max-width:550px;
}

.home-job-highlight-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 15px 36px;
    border-radius: 10px;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.home-job-highlight-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    color: #fff;
}

/* SEARCH */

.home-search-card {
    background: #26374f;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.home-search-title{

font-size:18px;

font-weight:700;

margin-bottom:15px;
}


/* hanya homepage */

.home-search-card form{

display:flex;

flex-direction:column;

gap:12px;
}

.home-search-card input,
.home-search-card select{

height:50px;

padding:0 15px;

border:1px solid #eee;

border-radius:12px;
}

.home-search-card button,
.home-search-card input[type=submit]{

height:50px;

border-radius:12px;
}


/* MOBILE */

@media(max-width:768px){

.home-hero-grid{

grid-template-columns:1fr;
}

.home-hero-title{

font-size:30px;
}

}

/* ==========================
FRONT SEARCH
========================== */

.home-front-search{

display:flex;

flex-direction:column;

gap:12px;
}

.home-front-search input,
.home-front-search select{

width:100%;

height:52px;

padding:0 16px;

border:1px solid #e5e7eb;

border-radius:14px;

background:#fff;

outline:none;

font-size:14px;

transition:.3s;
}

.home-front-search input:focus,
.home-front-search select:focus{

border-color:#2563eb;
}

.home-front-search button {
    height: 52px;
    border: none;
    cursor: pointer;
    background: #FF9800;
    color: #1e3a5f;
    padding: 15px 36px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.3);
}

.home-front-search button:hover{

transform:
translateY(-2px);
}


/* MOBILE */

@media(max-width:768px){

.home-front-search{

width:100%;
}

}


.home{
    --gap:20px;
    --radius:16px;
    --border:#eee;
    --text:#222;
    --muted:#666;
}

/* GRID JOB */
.home-job-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:var(--gap);
}

/* CARD */
.home-job-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:16px;
    transition:.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.home-job-card:hover{
    transform:translateY(-3px);
    box-shadow: 
        0 10px 20px rgba(0,0,0,.08),
        0 4px 8px rgba(0,0,0,.05);
}

.home-job-link{
    text-decoration:none;
    color:inherit;
    display:flex;
    flex-direction:column;
    gap:5px;
}

/* HEADER */
.home-job-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.home-job-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.home-company-logo{
    width:42px;
    height:42px;
    border-radius:10px;
    object-fit:cover;
}

.home-job-title{
    font-size:17px;
    font-weight:700;
    margin:0;
}

/* TIME */
.home-job-time{
    font-size:12px;
    color:var(--muted);
    display:flex;
    align-items:center;
    gap:5px;
}
.home-job-time .material-symbols-rounded {
    font-size: 17px;
}

/* ROW */
.home-job-row{
    display:flex;
    flex-wrap:wrap;
    gap:5px;
}

/* META */
.home-meta {
    font-size: 13px;
    color: var(--muted);
    background: #f3f3f3;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-meta .material-symbols-rounded {
    font-size: 17px;
}

/* BLOG */
.home-blog-section{
    margin-top:20px;
}

.home-section-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.home-section-title {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 17px;
}

.home-section-link {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 6px;
    background: rgb(35 52 75 / 13%);
    color: #1e3a5f;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 30px;
}

.home-blog-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
}

/* CARD */
.home-blog-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    overflow:hidden;
    transition:.2s ease;
}

.home-blog-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.home-blog-card a{
    text-decoration:none;
    color:inherit;
    display:block;
}

/* THUMBNAIL */
.home-blog-thumb{
    width:100%;
    height:160px;
    overflow:hidden;
    background:#f5f5f5;
}

.home-blog-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.3s ease;
}

.home-blog-card:hover .home-blog-thumb img{
    transform:scale(1.05);
}

/* BODY */
.home-blog-body{
    padding:12px 14px;
}

.home-blog-title{
    font-size:14px;
    font-weight:700;
    margin:0 0 10px;
    color:#111;
    line-height:1.4;
}

/* META */
.home-blog-meta{
    display:flex;
    justify-content:space-between;
    font-size:12px;
    color:#666;
}

.home-blog-date,
.home-blog-author{
    display:flex;
    align-items:center;
    gap:5px;
}

/* ICON SIZE FIX */
.home-blog-meta .material-symbols-rounded{
    font-size:16px;
}

.home-view-all-jobs,
.home-view-all-blog{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;

    padding:14px 16px;
    margin-top:18px;

    background:#fff;
    border:1px solid #eee;
    border-radius:14px;

    text-decoration:none;
    color:#111;

    transition:.2s ease;
}

.home-view-all-jobs:hover,
.home-view-all-blog:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* ICON */
.home-view-all-icon{
    width:42px;
    height:42px;
    background:#f5f5f5;
    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* TEXT */
.home-view-all-text{
    flex:1;
    display:flex;
    flex-direction:column;
}

.home-view-all-text strong{
    font-size:14px;
    font-weight:700;
}

.home-view-all-text span{
    font-size:12.5px;
    color:#666;
}

/* ARROW */
.home-view-all-arrow{
    color:#888;
    display:flex;
    align-items:center;
}

@media (max-width: 992px){

    /* JOB GRID -> 1 COLUMN */
    .home-job-grid{
        grid-template-columns:1fr;
        gap:15px;
    }


    /* JOB CARD lebih nyaman di mobile */
    .home-job-card{
        padding:14px;
    }

    .home-job-title{
        font-size:14px;
        line-height:1.4;
    }

    .home-company-logo{
        width:38px;
        height:38px;
    }
    
    .home-section-link {
    background: none;
}

    /* BLOG FEATURED jadi full width feel */
    .home-blog-layout{
        grid-template-columns:1fr;
    }

    .home-blog-featured{
        margin-bottom:12px;
    }

    /* VIEW ALL CARD lebih rapat */
    .home-view-all-jobs,
    .home-view-all-blog{
        padding:12px 14px;
    }

    .home-view-all-text strong{
        font-size:13px;
    }

    .home-view-all-text span{
        font-size:12px;
    }
}


.home-section-head--segmented{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 14px;
    border:1px solid #eee;
    border-radius:14px;
    background:#fff;
}

.home-section-action a{
    display:flex;
    align-items:center;
    gap:6px;

    font-size:13px;
    color:#444;
    text-decoration:none;
}

.home-section-action a:hover{
    color:#111;
}


.home-company-cta{
    margin:40px 0;
}

.home-company-cta-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:24px;
    border-radius:18px;

    background:linear-gradient(135deg, #fff, #f7f7ff);
    border:1px solid #eee;
}

/* LEFT CONTENT */
.home-company-cta-content{
    max-width:500px;
}

.home-company-cta-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;

    font-size:12px;
    padding:5px 10px;
    border-radius:999px;

    background:#f5f5f5;
    color:#444;

    margin-bottom:10px;
}

.home-company-cta-title{
    font-size:20px;
    font-weight:700;
    margin:0 0 10px;
    color:#1e3a5f;
}

.home-company-cta-desc{
    font-size:13px;
    color:#666;
    line-height:1.6;
    margin-bottom:16px;
}

/* BUTTON */
.home-company-cta-button{
    display:inline-flex;
    align-items:center;
    gap:6px;

    padding:10px 14px;
    border-radius:10px;

    background:#1E3A5F;
    color:#fff;
    text-decoration:none;

    font-size:13px;
    transition:.2s;
}

.home-company-cta-button:hover{
    transform:translateY(-2px);
    opacity:.9;
    color:#fff;
}

/* PREVIEW */
.home-company-cta-preview{
    display:flex;
    gap:10px;
}

.home-company-mini{
    width:50px;
    height:50px;

    border-radius:12px;
    background:#fff;
    border:1px solid #eee;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

.home-company-mini img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* MOBILE */
@media (max-width:768px){
    .home-company-cta-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
    }

    .home-company-cta-preview{
        width:100%;
        justify-content:flex-start;
        flex-wrap:wrap;
    }
}

.home-category-section{
    margin:40px 0;
}

.home-category-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:14px;
}

/* CARD */
.home-category-card{
    display:flex;
    align-items:center;
    gap:12px;

    padding:14px;
    border-radius:14px;

    background:#fff;
    border:1px solid #eee;

    text-decoration:none;
    color:#111;

    transition:.2s;
}

.home-category-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

/* ICON */
.home-category-icon{
    width:42px;
    height:42px;

    border-radius:12px;
    background:#f5f5f5;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* TEXT */
.home-category-content{
    flex:1;
}

.home-category-name{
    font-weight:700;
}

.home-category-count{
    font-size:12px;
    color:#666;
}

/* ARROW */
.home-category-arrow{
    color:#999;
}

/* RESPONSIVE */
@media (max-width:768px){
    .home-category-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:480px){
    .home-category-grid{
        grid-template-columns:1fr;
    }
}

/* overlay */
.jp-modal-overlay{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.5);

    display:none;
    align-items:center;
    justify-content:center;

    z-index:9999;
}

/* aktif */
.jp-modal-overlay.active{
    display:flex;
}

/* box */
.jp-modal-box{
    width:90%;
    max-width:600px;

    background:#fff;
    border-radius:16px;

    padding:20px;

    position:relative;

    animation:fadeIn .2s ease;
}

/* close */
.jp-modal-close{
    position:absolute;
    top:10px;
    right:10px;

    border:none;
    background:none;

    font-size:24px;
    cursor:pointer;
}

/* animasi */
@keyframes fadeIn{
    from{ transform:scale(.95); opacity:0; }
    to{ transform:scale(1); opacity:1; }
}


.jp-read-more-btn {
    font-size: 15px;
    cursor: pointer;
    background: 0 0;
    border: none;
    padding: 0;
    color: #666;
}

.jp-modal-content {
    line-height:1.5;
}



/* =========================
   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 */
}

.jp-pagination{
    margin-top:40px;
    display:flex;
    justify-content:center;
}

.jp-pagination .page-numbers{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    height:42px;
    padding:0 14px;
    margin:0 4px;
    border:1px solid #e5e7eb;
    border-radius:10px;
    text-decoration:none;
    color:#1f2937;
    font-weight:600;
    transition:.2s;
}

.jp-pagination .page-numbers:hover{
    opacity:90%;
}

.jp-pagination .current{
    background:var(--primary-color,#1E3A5F);
    color:#fff;
    border-color:var(--primary-color,#1E3A5F);
}




.page-category{
    padding:40px 0;
}

.page-category-hero{
    margin-bottom:20px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:16px;
}

.category-card{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    text-decoration:none;
    transition:.2s ease;
}

.category-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.category-icon{
    width:52px;
    height:52px;
    border-radius:12px;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.category-icon .material-symbols-rounded{
    font-size:26px;
}

.category-info h3{
    margin:0;
    font-size:15px;
    font-weight:600;
    color:#111827;
}

.category-info span{
    font-size:13px;
    color:#6b7280;
}

.empty-state{
    padding:30px;
    text-align:center;
    color:#6b7280;
}
/* ==========================
   FOOTER
========================== */

.lj-footer{
background:#fff;
color:#0f172a;

margin-top:40px;

border-top:1px solid #e5e7eb;
}

/* ==========================
   INNER
========================== */

.lj-footer-inner{
display:flex;
justify-content:space-between;
align-items:center;
gap:10px;

padding-top: 20px;

flex-wrap:wrap;
}

/* ==========================
   MENU
========================== */

.lj-footer-menu{
display:flex;
flex-wrap:wrap;
gap:16px;

margin:0 0 10px;
padding:0;

list-style:none;
}

.lj-footer-menu li{
margin:0;
padding:0;
}

.lj-footer-menu a{
font-weight:500;

color:#64748b;
text-decoration:none;

transition:.2s ease;
}

.lj-footer-menu a:hover{
color:#f97700;
}

/* ==========================
   COPYRIGHT
========================== */

.lj-footer-bottom {
    font-size: 14px;
    color: #4b5563;
    padding-top: 0;
    padding-bottom: 20px;
}

/* ==========================
   RIGHT
========================== */

.lj-footer-social{
display:flex;
gap:10px;

flex-wrap:wrap;
}

/* ==========================
   RIGHT
========================== */

.lj-footer-right{
text-align:right;
}

/* ==========================
   HEADING
========================== */

.lj-footer-heading{
font-weight:600;

color:#1e3a5f;

margin-bottom:14px;
}

/* ==========================
   SOCIAL BUTTON
========================== */
.lj-footer-social img{
width:20px;
height:20px;

display:block;
object-fit:contain;
}

.lj-footer-social a{
width:40px;
height:40px;

display:flex;
align-items:center;
justify-content:center;

border-radius:12px;

background:#f8fafc;

border:1px solid #e2e8f0;

color:#0f172a;
text-decoration:none;

transition:.2s ease;
}

.lj-footer-social a:hover{
background:#f97700;
border-color:#f97700;
color:#fff;

transform:translateY(-2px);
}

/* ==========================
   ICON
========================== */

.lj-footer-social .material-symbols-rounded{
font-size:20px;
}

/* ==========================
   MOBILE
========================== */

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

.lj-footer-inner{
flex-direction:column;
align-items:center;
justify-content:center;

text-align:center;

padding:30px 0;
}

/* ==========================
   MENU
========================== */

.lj-footer-menu{
justify-content:center;

gap:10px 24px;

}

.lj-footer-menu a{
display:block;
}

/* ==========================
   RIGHT
========================== */

.lj-footer-right{
text-align:center;
width:100%;
}

.lj-footer-heading{
margin-bottom:14px;
}

/* ==========================
   SOCIAL
========================== */

.lj-footer-social{
justify-content:center;
gap:8px;
}

.lj-footer-social a{
width:38px;
height:38px;

border-radius:10px;
}

/* ==========================
   COPYRIGHT
========================== */

    .lj-footer-bottom {
        margin: auto;
        text-align: center;
    }

}