/* MadJob All Jobs v3.0 – UPDATED BIG UI (WP Job Portal Style) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

.mj-wrap {
    font-family: 'Inter', sans-serif;
    max-width: 1250px;
    margin: 0 auto;
    padding: 12px 16px;
}

.mj-header {
    padding: 0 0 18px;
    margin-bottom: 28px;
    border-bottom: 2px solid #f0f0f0
}

.mj-count {
    font-size: 18px;
    color: #555
}

.mj-count strong {
    font-size: 30px;
    font-weight: 700;
    color: #000
}

.mj-empty {
    text-align: center;
    padding: 80px 20px;
    color: #888
}

.mj-empty-icon {
    font-size: 60px;
    margin-bottom: 16px
}

.mj-empty p {
    font-size: 18px
}

/* MORE SPACE BETWEEN CARDS */
.mj-list {
    display: flex;
    flex-direction: column;
    gap: 30px
}

/* BIG CARD (MAIN CHANGE) */
.mj-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    padding: 32px 36px;
    transition: box-shadow .25s, transform .25s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    min-height: 170px;
}

.mj-card:hover {
    box-shadow: 0 18px 50px rgba(0, 0, 0, .14);
    transform: translateY(-3px)
}

/* BIG LOGO */
.mj-logo {
    flex-shrink: 0;
    width: 95px;
    height: 95px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mj-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.mj-logo-init {
    width: 100%;
    height: 100%;
    font-size: 28px;
    background: linear-gradient(135deg, #F83230, #ff7070);
    color: #fff;
    font-weight: 700;
}

/* BODY */
.mj-body {
    flex: 1;
    min-width: 0
}

/* BIG TITLE (Poppins Heading) */
.mj-title {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #111;
    line-height: 1.4
}

.mj-title a {
    color: #111;
    text-decoration: none
}

.mj-title a:hover {
    color: #F83230
}

/* META BIGGER */
.mj-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 17px
}

.mj-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    background: #f5f5f5;
    color: #555;
    white-space: nowrap;
}

/* BIG JOB TYPE BADGE */
.mj-jtype {
    background: #6b7280 !important;
    color: #fff;
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 600;
}

/* DATE ROW BIG (BOTTOM BAR FEEL) */
.mj-dates {
    font-size: 17px;
    color: #666;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #eee;
}

/* RIGHT SIDE (SALARY + BUTTON) */
.mj-action {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-end;
    min-width: 220px;
    font-size: 20px;
    font-weight: 600;
}

/* BIG APPLY BUTTON (LIKE WP JOB PORTAL) */
.mj-btn-view {
    display: inline-block;
    padding: 16px 36px;
    background: #F83230;
    color: #fff !important;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all .2s;
    text-align: center;
    box-shadow: 0 6px 18px rgba(248, 50, 48, 0.35);
}

.mj-btn-view:hover {
    background: #d42826;
    transform: translateY(-2px);
    text-decoration: none
}

.mj-btn-na {
    font-size: 14px;
    padding: 10px 16px
}

.mj-btn-edit {
    padding: 8px 16px;
    font-size: 14px;
}

/* BIG PAGINATION */
.mj-pagination {
    margin-top: 40px
}

.mj-page-btn {
    min-width: 46px;
    height: 46px;
    font-size: 16px;
    border-radius: 8px;
}

/* MOBILE */
@media(max-width:600px) {
    .mj-card {
        flex-direction: column;
        gap: 18px;
        padding: 24px
    }

    .mj-action {
        flex-direction: column;
        align-items: flex-start;
        min-width: unset;
        width: 100%;
    }

    .mj-logo {
        width: 80px;
        height: 80px
    }

    .mj-title {
        font-size: 22px
    }

    .mj-btn-view {
        width: 100%;
        text-align: center;
    }
}