/*
Theme Name: Wazifkom Pro
Theme URI: https://wazifkom.com
Author: Wazifkom Team
Author URI: https://wazifkom.com
Description: Ù‚Ø§Ù„Ø¨ ÙˆÙˆØ±Ø¯Ø¨Ø±ÙŠØ³ Ø¹Ø±Ø¨ÙŠ Ø§Ø­ØªØ±Ø§ÙÙŠ ÙˆØ³Ø±ÙŠØ¹ Ù…Ø®ØµØµ Ù„Ù†Ø´Ø± Ø§Ù„ÙˆØ¸Ø§Ø¦Ù ÙˆØ§Ù„ÙØ±Øµ Ø§Ù„ÙˆØ¸ÙŠÙÙŠØ© ÙÙŠ Ø§Ù„Ø³Ø¹ÙˆØ¯ÙŠØ© ÙˆØ§Ù„Ø¹Ø§Ù„Ù… Ø§Ù„Ø¹Ø±Ø¨ÙŠ. Ù…ØµÙ…Ù… Ù„Ù„Ø³Ø±Ø¹Ø© ÙˆØ§Ù„ØªÙˆØ§ÙÙ‚ Ù…Ø¹ Ø¬ÙˆØ¬Ù„ Ø£Ø¯Ø³Ù†Ø³ ÙˆÙ…Ø®Ø·Ø·Ø§Øª Ø¬ÙˆØ¬Ù„ Ù„Ù„ÙˆØ¸Ø§Ø¦Ù.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wazifkom
Domain Path: /languages
Tags: rtl, right-to-left, arabic, jobs, custom-menu, featured-images, theme-options
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
*/

/* ============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */
:root {
    /* Colors â€” Flat & Clean Design (Inspired by ewdifh) */
    --wz-primary: #16a34a; /* Main Green */
    --wz-primary-light: #22c55e;
    --wz-primary-dark: #15803d;
    --wz-accent: #f59e0b; /* Accent for specific alerts */
    --wz-accent-light: #fcd34d;
    
    --wz-bg: #F9FAFB; /* Flat light gray background */
    --wz-bg-card: #FFFFFF;
    --wz-bg-dark: #1F2937;
    
    --wz-text: #111827;
    --wz-text-secondary: #4B5563;
    --wz-text-muted: #9CA3AF;
    
    --wz-border: #E5E7EB;
    --wz-border-light: #F3F4F6;
    
    --wz-success: #16A34A;
    --wz-danger: #EF4444;
    --wz-info: #3B82F6;
    
    /* Shadows - extremely minimal */
    --wz-shadow-sm: none;
    --wz-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --wz-shadow-lg: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --wz-shadow-hover: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    
    /* Border Radius - subtle */
    --wz-radius: 6px;
    --wz-radius-sm: 4px;
    --wz-radius-lg: 12px;
    
    --wz-transition: 0.2s ease-in-out;

    /* Typography */
    --wz-font: 'Tajawal', sans-serif;
    --wz-fs-xs: 0.75rem;
    --wz-fs-sm: 0.875rem;
    --wz-fs-base: 1rem;
    --wz-fs-md: 1.125rem;
    --wz-fs-lg: 1.25rem;
    --wz-fs-xl: 1.5rem;
    --wz-fs-2xl: 2rem;
    --wz-fs-3xl: 2.5rem;
    --wz-fs-hero: 3.25rem;

    /* Spacing */
    --wz-gap: 1.5rem;
    --wz-container: 1200px;
}


/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--wz-font);
    font-size: var(--wz-fs-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--wz-text);
    background-color: var(--wz-bg);
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--wz-primary);
    transition: color var(--wz-transition);
}

a:hover {
    color: var(--wz-primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--wz-text);
}


/* ============================================
   CONTAINER
   ============================================ */
.wz-container {
    width: 100%;
    max-width: var(--wz-container);
    margin-inline: auto;
    padding-inline: 1.25rem;
}


/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.wz-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.wz-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0.5rem 0;
}

.wz-header__right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.wz-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--wz-fs-xl);
    font-weight: 800;
    color: var(--wz-primary);
    flex-shrink: 0;
}

.wz-logo__icon {
    display: none; /* Hide icon for simpler flat look, or adjust as needed */
}

.wz-logo span {
    color: var(--wz-primary);
}

/* Navigation */
.wz-nav {
    display: flex;
    align-items: center;
}

.wz-nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.wz-nav li a {
    display: inline-block;
    padding: 0.75rem 0;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-base);
    font-weight: 500;
    color: #444444;
    transition: all var(--wz-transition);
    white-space: nowrap;
    position: relative;
}

.wz-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #28a745;
    transform: scaleX(0);
    transition: transform 0.2s ease-in-out;
    transform-origin: right;
}

.wz-nav li a:hover,
.wz-nav li.current-menu-item a,
.wz-nav li.current_page_item a {
    color: #28a745;
}

.wz-nav li a:hover::after,
.wz-nav li.current-menu-item a::after,
.wz-nav li.current_page_item a::after {
    transform: scaleX(1);
}

/* Search Bar */
.wz-search {
    position: relative;
    flex-shrink: 0;
}

.wz-search__input {
    width: 220px;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-sm);
    border: 1.5px solid var(--wz-border);
    border-radius: 50px;
    background: var(--wz-bg);
    color: var(--wz-text);
    transition: all var(--wz-transition);
    direction: rtl;
}

.wz-search__input:focus {
    outline: none;
    border-color: var(--wz-primary-light);
    box-shadow: 0 0 0 3px rgba(27, 107, 74, 0.1);
    width: 280px;
    background: #fff;
}

.wz-search__input::placeholder {
    color: var(--wz-text-muted);
}

.wz-search__btn {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--wz-text-muted);
    cursor: pointer;
    padding: 4px;
    font-size: 1rem;
    line-height: 1;
}

/* Mobile Menu Toggle */
.wz-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #444444;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 1001;
}


/* ============================================
   HERO SECTION (HOMEPAGE)
   ============================================ */
.wz-hero {
    background: #FFFFFF;
    border-bottom: 1px solid var(--wz-border);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wz-hero::before {
    display: none;
}

.wz-hero__content {
    position: relative;
    z-index: 1;
}

.wz-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(22, 163, 74, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: var(--wz-fs-sm);
    color: var(--wz-primary);
    margin-bottom: 1.5rem;
}

.wz-hero h1 {
    font-size: var(--wz-fs-hero);
    color: var(--wz-text);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.wz-hero h1 .wz-highlight {
    color: var(--wz-primary);
}

.wz-hero p {
    font-size: var(--wz-fs-lg);
    color: var(--wz-text-secondary);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Hero Stats */
.wz-hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.wz-hero__stat {
    text-align: center;
}

.wz-hero__stat-number {
    font-size: var(--wz-fs-2xl);
    font-weight: 800;
    color: #fff;
}

.wz-hero__stat-label {
    font-size: var(--wz-fs-sm);
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.wz-hero-search {
    margin: 2rem auto 0;
    max-width: 600px;
    width: 100%;
}

.wz-hero-search__wrap {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid var(--wz-border);
    border-radius: 60px;
    padding: 0.35rem 0.35rem 0.35rem 1.25rem;
    gap: 0.75rem;
    transition: all var(--wz-transition);
}

.wz-hero-search__wrap:focus-within {
    border-color: var(--wz-primary);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.wz-hero-search__wrap svg {
    color: var(--wz-text-muted);
    flex-shrink: 0;
}

.wz-hero-search__wrap input[type="search"] {
    flex: 1;
    min-width: 0;
    background: none;
    border: none;
    outline: none;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-sm);
    color: var(--wz-text);
    padding: 0.5rem 0;
    direction: rtl;
}

.wz-hero-search__wrap input[type="search"]::placeholder {
    color: var(--wz-text-muted);
}

.wz-hero-search__wrap button {
    font-family: var(--wz-font);
    font-size: var(--wz-fs-sm);
    font-weight: 700;
    color: #FFFFFF;
    background: var(--wz-primary);
    border: none;
    border-radius: 50px;
    padding: 0.6rem 2rem;
    cursor: pointer;
    transition: all var(--wz-transition);
    white-space: nowrap;
}

.wz-hero-search__wrap button:hover {
    background: var(--wz-primary-dark);
    transform: translateY(-1px);
}



/* ============================================
   ARCHIVE HERO â€” Compact version of homepage hero
   ============================================ */
.wz-archive-hero {
    padding: 3rem 0 2.5rem;
}

.wz-archive-hero h1 {
    font-size: var(--wz-fs-2xl);
    margin-bottom: 0.75rem;
}

.wz-archive-hero p {
    font-size: var(--wz-fs-base);
    margin-bottom: 1.5rem;
}

/* Breadcrumbs inside hero */
.wz-archive-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--wz-fs-sm);
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem 1rem;
    border-radius: 50px;
}

.wz-archive-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--wz-transition);
}

.wz-archive-breadcrumbs a:hover {
    color: var(--wz-accent);
}

.wz-archive-breadcrumbs__sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7em;
}

/* ============================================
   FILLED APPLY BUTTON (archive / homepage cards)
   ============================================ */
.wz-job-card__apply--filled {
    background: var(--wz-primary);
    color: #fff !important;
    border-color: var(--wz-primary);
}

.wz-job-card__apply--filled:hover {
    background: var(--wz-primary-light);
    border-color: var(--wz-primary-light);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(27, 107, 74, 0.3);
}


/* ============================================
   GOLD PRICE CHANGE INDICATOR
   ============================================ */
.wz-gold-item__change {
    font-size: 0.7rem;
    font-weight: 600;
    color: #16a34a;
    background: rgba(22, 163, 74, 0.08);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    direction: ltr;
}

.wz-gold-item__change.is-negative {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
}


/* ============================================
   CTA WIDGET (Post a Job)
   ============================================ */
.wz-widget--cta {
    background: linear-gradient(135deg, var(--wz-primary), #0f4a33) !important;
    border: none !important;
    color: #fff;
}

.wz-cta-widget {
    text-align: center;
    padding: 0.5rem;
}

.wz-cta-widget__icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
}

.wz-cta-widget h4 {
    font-size: var(--wz-fs-lg);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.wz-cta-widget p {
    font-size: var(--wz-fs-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.wz-cta-widget__btn {
    display: inline-block;
    padding: 0.7rem 2rem;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-sm);
    font-weight: 700;
    color: var(--wz-primary);
    background: #fff;
    border-radius: 50px;
    transition: all var(--wz-transition);
}

.wz-cta-widget__btn:hover {
    background: var(--wz-accent);
    color: var(--wz-bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}



/* ============================================
   NEWS LAYOUT (Job News Aggregator)
   ============================================ */

/* Hero category pills */
.wz-hero__cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.wz-hero__cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 1.1rem;
    font-size: var(--wz-fs-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    transition: all var(--wz-transition);
    backdrop-filter: blur(6px);
}

.wz-hero__cat-pill:hover {
    background: var(--wz-accent);
    border-color: var(--wz-accent);
    color: var(--wz-bg-dark);
    transform: translateY(-2px);
}

/* News Layout: list + sidebar */
.wz-news-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
    direction: rtl;
}

.wz-news-layout>.wz-news-list {
    order: 1;
}

.wz-news-layout>.wz-sidebar {
    order: 2;
}

/* News List */
.wz-news-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* News Card â€” horizontal layout */
.wz-news-card {
    background: var(--wz-bg-card);
    border-radius: var(--wz-radius);
    border: 1px solid var(--wz-border-light);
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    transition: all var(--wz-transition);
    position: relative;
    animation: fadeInUp 0.4s ease forwards;
    animation-fill-mode: both;
}

.wz-news-card:hover {
    border-color: var(--wz-primary);
    background: #FAFAFA;
}

.wz-news-card:nth-child(1) {
    animation-delay: 0.05s;
}

.wz-news-card:nth-child(2) {
    animation-delay: 0.10s;
}

.wz-news-card:nth-child(3) {
    animation-delay: 0.15s;
}

.wz-news-card:nth-child(4) {
    animation-delay: 0.20s;
}

.wz-news-card:nth-child(5) {
    animation-delay: 0.25s;
}

.wz-news-card:nth-child(6) {
    animation-delay: 0.30s;
}

/* Green top bar removed for flat simplicity */
.wz-news-card::before {
    display: none;
}

/* Thumbnail */
.wz-news-card__img-wrap {
    flex-shrink: 0;
    width: 180px;
    min-height: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-left: 1px solid var(--wz-border-light);
}

.wz-news-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0.75rem;
    background: #FFFFFF;
}

.wz-news-card__img-wrap--placeholder {
    background: #F9FAFB;
}

.wz-news-card__placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.6;
}

/* Card Body */
.wz-news-card__body {
    flex: 1;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

/* Category Badge */
.wz-news-card__cat {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--wz-primary);
    background: rgba(27, 107, 74, 0.1);
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    width: fit-content;
    text-decoration: none;
    transition: all var(--wz-transition);
}

.wz-news-card__cat:hover {
    background: var(--wz-primary);
    color: #fff;
}

/* Title */
.wz-news-card__title {
    font-size: var(--wz-fs-base);
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.wz-news-card__title a {
    color: var(--wz-text);
    transition: color var(--wz-transition);
}

.wz-news-card__title a:hover {
    color: var(--wz-primary);
}

/* Excerpt */
.wz-news-card__excerpt {
    font-size: var(--wz-fs-sm);
    color: var(--wz-text-secondary);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

/* Meta row */
.wz-news-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.5rem;
}

.wz-news-card__meta-item,
.wz-news-card__date {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: var(--wz-fs-xs);
    color: var(--wz-text-muted);
}

/* Footer */
.wz-news-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--wz-border-light);
    margin-top: 0.25rem;
}

.wz-news-card__read-more {
    font-size: var(--wz-fs-sm);
    font-weight: 600;
    color: var(--wz-primary);
    padding: 0.35rem 0.9rem;
    border: 1.5px solid var(--wz-primary);
    border-radius: 50px;
    transition: all var(--wz-transition);
}

.wz-news-card__read-more:hover {
    background: var(--wz-primary);
    color: #fff;
}

.wz-news-card__apply {
    font-size: var(--wz-fs-sm);
    font-weight: 700;
    color: #fff;
    background: var(--wz-primary);
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    transition: all var(--wz-transition);
    border: 1.5px solid var(--wz-primary);
}

.wz-news-card__apply:hover {
    background: var(--wz-primary-light);
    border-color: var(--wz-primary-light);
    color: #fff;
    box-shadow: 0 4px 16px rgba(27, 107, 74, 0.3);
    transform: translateY(-1px);
}

/* No Posts State */
.wz-no-posts {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--wz-bg-card);
    border-radius: var(--wz-radius);
    border: 1px solid var(--wz-border-light);
}

.wz-no-posts__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.wz-no-posts h2 {
    font-size: var(--wz-fs-xl);
    margin-bottom: 0.75rem;
}

.wz-no-posts p {
    color: var(--wz-text-secondary);
    margin-bottom: 1.5rem;
}

/* ============================================
   PAGINATION BAR
   ============================================ */
.wz-pagination-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 1.25rem 0 0.5rem;
    border-top: 1px solid var(--wz-border-light);
}

.wz-pag-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.4rem;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-sm);
    font-weight: 700;
    color: var(--wz-primary);
    background: #fff;
    border: 2px solid var(--wz-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--wz-transition);
    direction: rtl;
}

.wz-pag-btn:hover:not(:disabled) {
    background: var(--wz-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.25);
}

.wz-pag-btn:disabled,
.wz-pag-btn.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    border-color: var(--wz-border);
    color: var(--wz-text-muted);
}

.wz-pag-info {
    font-family: var(--wz-font);
    font-size: var(--wz-fs-base);
    font-weight: 700;
    color: var(--wz-text);
    background: var(--wz-bg);
    border: 1.5px solid var(--wz-border);
    border-radius: 50px;
    padding: 0.45rem 1.2rem;
    min-width: 80px;
    text-align: center;
    letter-spacing: 0.5px;
}

.wz-pag-info span:first-child {
    color: var(--wz-primary);
}


/* Responsive */
@media (max-width: 1024px) {
    .wz-news-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .wz-news-card {
        flex-direction: column;
    }

    .wz-news-card__img-wrap {
        width: 100%;
        min-height: 180px;
    }

    .wz-news-card__body {
        padding: 1rem;
    }
}


/* ============================================
   FILTER TABS (Category Filters)
   ============================================ */
.wz-filter-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0;
    border-bottom: 1px solid var(--wz-border-light);
    overflow-x: auto;
}

.wz-filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 0.25rem;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-base);
    font-weight: 600;
    color: var(--wz-text-secondary);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--wz-transition);
    text-decoration: none;
    white-space: nowrap;
}

.wz-filter-tab:hover {
    color: var(--wz-primary);
    border-color: transparent;
    background: transparent;
    transform: none;
}

.wz-filter-tab.is-active {
    color: var(--wz-primary);
    background: transparent;
    border-color: var(--wz-primary);
    box-shadow: none;
}

@media (max-width: 640px) {
    .wz-filter-tabs {
        gap: 0.4rem;
    }

    .wz-filter-tab {
        padding: 0.4rem 0.9rem;
        font-size: 0.75rem;
    }
}


/* ============================================
   SECTION HEADER
   ============================================ */
.wz-section {
    padding: 3.5rem 0;
}

.wz-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.wz-section__title {
    font-size: var(--wz-fs-xl);
    font-weight: 800;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.wz-section__title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--wz-primary);
    border-radius: 4px;
    flex-shrink: 0;
}

.wz-section__link {
    font-size: var(--wz-fs-sm);
    font-weight: 600;
    color: var(--wz-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.wz-section__link:hover {
    gap: 0.6rem;
}


/* ============================================
   JOB CARDS GRID (HOMEPAGE)
   ============================================ */
.wz-content-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
    direction: rtl;
}

.wz-content-wrap>.wz-jobs-grid {
    order: 1;
}

.wz-content-wrap>.wz-sidebar {
    order: 2;
}

.wz-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.wz-job-card {
    background: var(--wz-bg-card);
    border-radius: var(--wz-radius);
    border: 1px solid var(--wz-border-light);
    padding: 1.5rem;
    transition: all var(--wz-transition);
    position: relative;
    overflow: hidden;
}

.wz-job-card::before {
    display: none;
}

.wz-job-card:hover {
    border-color: var(--wz-primary);
    box-shadow: var(--wz-shadow);
}

.wz-job-card__head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wz-job-card__logo {
    width: 52px;
    height: 52px;
    border-radius: var(--wz-radius-sm);
    background: var(--wz-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--wz-border-light);
}

.wz-job-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.wz-job-card__logo-placeholder {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--wz-primary);
}

.wz-job-card__info {
    flex: 1;
    min-width: 0;
}

.wz-job-card__title {
    font-size: var(--wz-fs-base);
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.wz-job-card__title a {
    color: var(--wz-text);
    transition: color var(--wz-transition);
}

.wz-job-card__title a:hover {
    color: var(--wz-primary);
}

.wz-job-card__company {
    font-size: var(--wz-fs-sm);
    color: var(--wz-text-secondary);
    font-weight: 500;
}

.wz-job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.wz-job-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: var(--wz-fs-xs);
    font-weight: 500;
    color: var(--wz-text-muted);
    background: var(--wz-bg);
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
}

.wz-job-card__tag svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.wz-job-card__salary {
    color: var(--wz-success);
    font-weight: 700;
    background: rgba(22, 163, 74, 0.06);
}

.wz-job-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--wz-border-light);
}

.wz-job-card__date {
    font-size: var(--wz-fs-xs);
    color: var(--wz-text-muted);
}

.wz-job-card__apply {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: var(--wz-fs-sm);
    font-weight: 600;
    color: var(--wz-primary);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    border: 1.5px solid var(--wz-primary);
    transition: all var(--wz-transition);
}

.wz-job-card__apply:hover {
    background: var(--wz-primary);
    color: #fff;
}


/* ============================================
   SINGLE POST PAGE
   ============================================ */
/* Featured Image - Full Width Outside Container */
.wz-single-hero {
    width: 100%;
    position: relative;
    background: var(--wz-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    max-height: 600px;
    overflow: hidden;
}

.wz-single-hero img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    opacity: 1;
    position: relative;
    z-index: 1;
}

.wz-single-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 25, 35, 0.4) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

/* Professional Info Bar */
.wz-post-bar {
    background: var(--wz-bg-card);
    border-bottom: 1px solid var(--wz-border-light);
    box-shadow: var(--wz-shadow-sm);
}

.wz-post-bar__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem 0;
}

.wz-post-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--wz-fs-sm);
    font-weight: 500;
    color: var(--wz-text-secondary);
}

.wz-post-bar__item svg {
    width: 16px;
    height: 16px;
    color: var(--wz-text-muted);
    flex-shrink: 0;
}

.wz-post-bar__verified {
    background: rgba(22, 163, 74, 0.08);
    color: var(--wz-success);
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: var(--wz-fs-xs);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.wz-post-bar__verified svg {
    color: var(--wz-success);
}

/* Single Post Content */
.wz-single-content {
    padding: 2.5rem 0;
}

.wz-single-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
    direction: rtl;
}

.wz-single-wrap>.wz-article {
    order: 1;
}

.wz-single-wrap>.wz-sidebar {
    order: 2;
}

.wz-article {
    background: var(--wz-bg-card);
    border-radius: var(--wz-radius);
    border: 1px solid var(--wz-border-light);
    padding: 2rem;
}

.wz-article__title {
    font-size: var(--wz-fs-2xl);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Job Meta Details Box */
.wz-job-details {
    background: linear-gradient(135deg, rgba(27, 107, 74, 0.04), rgba(232, 168, 56, 0.04));
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.wz-job-details__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.wz-job-details__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wz-job-details__label {
    font-size: var(--wz-fs-xs);
    font-weight: 600;
    color: var(--wz-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wz-job-details__value {
    font-size: var(--wz-fs-base);
    font-weight: 700;
    color: var(--wz-text);
}

.wz-job-details__value--salary {
    color: var(--wz-success);
}

/* Apply Button */
.wz-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-md);
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--wz-primary), var(--wz-primary-light));
    border: none;
    border-radius: var(--wz-radius-sm);
    cursor: pointer;
    transition: all var(--wz-transition);
    text-align: center;
    margin-bottom: 2rem;
}

.wz-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--wz-shadow-hover);
    color: #fff;
}

/* Article Content Typography */
.wz-article__body {
    font-size: var(--wz-fs-md);
    line-height: 1.9;
    color: var(--wz-text);
}

.wz-article__body p {
    margin-bottom: 1.25rem;
}

.wz-article__body h2 {
    font-size: var(--wz-fs-xl);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--wz-border-light);
}

.wz-article__body h3 {
    font-size: var(--wz-fs-lg);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.wz-article__body ul,
.wz-article__body ol {
    margin-bottom: 1.25rem;
    padding-right: 1.5rem;
}

.wz-article__body ul {
    list-style: disc;
}

.wz-article__body ol {
    list-style: decimal;
}

.wz-article__body li {
    margin-bottom: 0.5rem;
}

.wz-article__body strong {
    font-weight: 700;
}

.wz-article__body blockquote {
    border-right: 4px solid var(--wz-primary);
    background: var(--wz-bg);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--wz-radius-sm) var(--wz-radius-sm) 0;
    font-style: italic;
    color: var(--wz-text-secondary);
}

.wz-article__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.wz-article__body th,
.wz-article__body td {
    padding: 0.75rem;
    border: 1px solid var(--wz-border);
    font-size: var(--wz-fs-sm);
}

.wz-article__body th {
    background: var(--wz-bg);
    font-weight: 700;
}


/* ============================================
   SIDEBAR
   ============================================ */
.wz-sidebar {
    position: sticky;
    top: 90px;
}

.wz-widget {
    background: var(--wz-bg-card);
    border-radius: var(--wz-radius);
    border: 1px solid var(--wz-border-light);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.wz-widget__title {
    font-size: var(--wz-fs-base);
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--wz-border-light);
}

.wz-widget__title svg {
    width: 18px;
    height: 18px;
    color: var(--wz-accent);
}

/* Gold Prices Widget Styles */
.wz-gold-prices {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wz-gold-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--wz-bg);
    border-radius: var(--wz-radius-sm);
    transition: background var(--wz-transition);
}

.wz-gold-item:hover {
    background: rgba(232, 168, 56, 0.08);
}

.wz-gold-item__label {
    font-size: var(--wz-fs-sm);
    font-weight: 600;
    color: var(--wz-text);
}

.wz-gold-item__price {
    font-size: var(--wz-fs-sm);
    font-weight: 700;
    color: var(--wz-accent);
}

/* Categories Widget */
.wz-cat-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wz-cat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    font-size: var(--wz-fs-sm);
    font-weight: 500;
    color: var(--wz-text-secondary);
    border-radius: var(--wz-radius-sm);
    transition: all var(--wz-transition);
}

.wz-cat-list li a:hover {
    background: rgba(27, 107, 74, 0.06);
    color: var(--wz-primary);
    padding-right: 1rem;
}

.wz-cat-count {
    font-size: var(--wz-fs-xs);
    font-weight: 600;
    color: var(--wz-text-muted);
    background: var(--wz-bg);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    min-width: 28px;
    text-align: center;
}


/* ============================================
   DEFAULT WORDPRESS WIDGETS STYLING
   ============================================ */

/* General widget styling (WordPress default widgets) */
.wz-sidebar .widget {
    background: var(--wz-bg-card);
    border-radius: var(--wz-radius);
    border: 1px solid var(--wz-border-light);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.wz-sidebar .widget-title,
.wz-sidebar .widgettitle,
.wz-sidebar .widget h2 {
    font-size: var(--wz-fs-base);
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--wz-border-light);
    color: var(--wz-text);
    line-height: 1.4;
}

/* Widget lists (Archives, Categories, Recent Posts, Recent Comments, Pages, Meta) */
.wz-sidebar .widget ul {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.wz-sidebar .widget ul li {
    margin: 0;
    padding: 0;
}

.wz-sidebar .widget ul li a {
    display: block;
    padding: 0.55rem 0.75rem;
    font-size: var(--wz-fs-sm);
    font-weight: 500;
    color: var(--wz-text-secondary);
    border-radius: var(--wz-radius-sm);
    transition: all var(--wz-transition);
}

.wz-sidebar .widget ul li a:hover {
    background: rgba(27, 107, 74, 0.06);
    color: var(--wz-primary);
    padding-right: 1rem;
}

/* Nested sub-lists */
.wz-sidebar .widget ul ul {
    margin-right: 1rem;
    margin-top: 0.15rem;
    border-right: 2px solid var(--wz-border-light);
    padding-right: 0.5rem;
}

/* Search Widget */
.wz-sidebar .widget_search form,
.wz-sidebar .widget_search .wp-block-search {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.wz-sidebar .widget_search input[type="search"],
.wz-sidebar .widget_search input[type="text"],
.wz-sidebar .widget_search .wp-block-search__input {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 1rem;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-sm);
    border: 1.5px solid var(--wz-border);
    border-radius: var(--wz-radius-sm);
    background: var(--wz-bg);
    color: var(--wz-text);
    transition: all var(--wz-transition);
    direction: rtl;
}

.wz-sidebar .widget_search input[type="search"]:focus,
.wz-sidebar .widget_search input[type="text"]:focus,
.wz-sidebar .widget_search .wp-block-search__input:focus {
    outline: none;
    border-color: var(--wz-primary-light);
    box-shadow: 0 0 0 3px rgba(27, 107, 74, 0.1);
    background: #fff;
}

.wz-sidebar .widget_search input[type="submit"],
.wz-sidebar .widget_search button,
.wz-sidebar .widget_search .wp-block-search__button {
    padding: 0.65rem 1.25rem;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-sm);
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--wz-primary), var(--wz-primary-light));
    border: none;
    border-radius: var(--wz-radius-sm);
    cursor: pointer;
    transition: all var(--wz-transition);
    white-space: nowrap;
}

.wz-sidebar .widget_search input[type="submit"]:hover,
.wz-sidebar .widget_search button:hover,
.wz-sidebar .widget_search .wp-block-search__button:hover {
    box-shadow: var(--wz-shadow-hover);
    transform: translateY(-1px);
}

/* Recent Comments Widget */
.wz-sidebar .widget_recent_comments ul li {
    padding: 0.55rem 0.75rem;
    font-size: var(--wz-fs-sm);
    color: var(--wz-text-secondary);
    line-height: 1.6;
    border-radius: var(--wz-radius-sm);
}

.wz-sidebar .widget_recent_comments .comment-author-link {
    font-weight: 600;
    color: var(--wz-primary);
}

.wz-sidebar .widget_recent_comments a {
    display: inline;
    padding: 0;
    font-weight: 500;
}

/* Calendar Widget */
.wz-sidebar .widget_calendar table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--wz-fs-sm);
}

.wz-sidebar .widget_calendar caption {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--wz-text);
}

.wz-sidebar .widget_calendar th,
.wz-sidebar .widget_calendar td {
    padding: 0.4rem;
    text-align: center;
    border: 1px solid var(--wz-border-light);
}

.wz-sidebar .widget_calendar th {
    background: var(--wz-bg);
    font-weight: 600;
    color: var(--wz-text-secondary);
}

.wz-sidebar .widget_calendar td a {
    font-weight: 700;
    color: var(--wz-primary);
    padding: 0;
}

/* Tag Cloud Widget */
.wz-sidebar .widget_tag_cloud .tagcloud a,
.wz-sidebar .wp-block-tag-cloud a {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    margin: 0.15rem;
    font-size: var(--wz-fs-xs) !important;
    font-weight: 500;
    color: var(--wz-text-secondary);
    background: var(--wz-bg);
    border-radius: 50px;
    transition: all var(--wz-transition);
}

.wz-sidebar .widget_tag_cloud .tagcloud a:hover,
.wz-sidebar .wp-block-tag-cloud a:hover {
    background: var(--wz-primary);
    color: #fff;
    padding: 0.3rem 0.7rem;
}

/* RSS Widget */
.wz-sidebar .widget_rss ul li {
    padding: 0.75rem;
    border-bottom: 1px solid var(--wz-border-light);
}

.wz-sidebar .widget_rss ul li:last-child {
    border-bottom: none;
}

.wz-sidebar .widget_rss .rss-date {
    display: block;
    font-size: var(--wz-fs-xs);
    color: var(--wz-text-muted);
    margin-top: 0.25rem;
}

.wz-sidebar .widget_rss .rssSummary {
    font-size: var(--wz-fs-sm);
    color: var(--wz-text-secondary);
    margin-top: 0.35rem;
    line-height: 1.6;
}

/* Text Widget */
.wz-sidebar .widget_text .textwidget {
    font-size: var(--wz-fs-sm);
    line-height: 1.8;
    color: var(--wz-text-secondary);
}

.wz-sidebar .widget_text .textwidget p {
    margin-bottom: 0.75rem;
}

/* Category post count styling */
.wz-sidebar .widget_categories li,
.wz-sidebar .widget_archive li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wz-sidebar .widget_categories li a,
.wz-sidebar .widget_archive li a {
    flex: 1;
}


/* ============================================
   WORDPRESS ADMIN BAR COMPATIBILITY
   ============================================ */
.admin-bar .wz-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .wz-header {
        top: 46px;
    }
}


/* ============================================
   GUTENBERG BLOCK WIDGETS STYLING
   (WordPress uses block-based widgets by default)
   ============================================ */

/* Block Search Widget */
.wz-sidebar .wp-block-search {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.wz-sidebar .wp-block-search__label {
    width: 100%;
    font-size: var(--wz-fs-base);
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--wz-border-light);
    color: var(--wz-text);
}

.wz-sidebar .wp-block-search__inside-wrapper {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.wz-sidebar .wp-block-search__input {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 1rem;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-sm);
    border: 1.5px solid var(--wz-border);
    border-radius: var(--wz-radius-sm);
    background: var(--wz-bg);
    color: var(--wz-text);
    transition: all var(--wz-transition);
    direction: rtl;
}

.wz-sidebar .wp-block-search__input:focus {
    outline: none;
    border-color: var(--wz-primary-light);
    box-shadow: 0 0 0 3px rgba(27, 107, 74, 0.1);
    background: #fff;
}

.wz-sidebar .wp-block-search__button {
    padding: 0.65rem 1.25rem;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-sm);
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--wz-primary), var(--wz-primary-light));
    border: none;
    border-radius: var(--wz-radius-sm);
    cursor: pointer;
    transition: all var(--wz-transition);
    white-space: nowrap;
}

.wz-sidebar .wp-block-search__button:hover {
    box-shadow: var(--wz-shadow-hover);
    transform: translateY(-1px);
}

/* Block Latest Posts Widget */
.wz-sidebar .wp-block-latest-posts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.wz-sidebar .wp-block-latest-posts li {
    margin: 0;
    padding: 0;
}

.wz-sidebar .wp-block-latest-posts li a {
    display: block;
    padding: 0.55rem 0.75rem;
    font-size: var(--wz-fs-sm);
    font-weight: 500;
    color: var(--wz-text-secondary);
    border-radius: var(--wz-radius-sm);
    transition: all var(--wz-transition);
}

.wz-sidebar .wp-block-latest-posts li a:hover {
    background: rgba(27, 107, 74, 0.06);
    color: var(--wz-primary);
    padding-right: 1rem;
}

.wz-sidebar .wp-block-latest-posts__post-date {
    display: block;
    font-size: var(--wz-fs-xs);
    color: var(--wz-text-muted);
    padding: 0 0.75rem;
    margin-top: -0.25rem;
}

/* Block Latest Comments Widget */
.wz-sidebar .wp-block-latest-comments {
    padding: 0;
    margin: 0;
}

.wz-sidebar .wp-block-latest-comments__comment {
    padding: 0.65rem 0.75rem;
    margin: 0;
    font-size: var(--wz-fs-sm);
    color: var(--wz-text-secondary);
    line-height: 1.6;
    border-radius: var(--wz-radius-sm);
    border-bottom: 1px solid var(--wz-border-light);
}

.wz-sidebar .wp-block-latest-comments__comment:last-child {
    border-bottom: none;
}

.wz-sidebar .wp-block-latest-comments__comment-author {
    font-weight: 600;
    color: var(--wz-primary);
}

.wz-sidebar .wp-block-latest-comments__comment-link {
    font-weight: 500;
    color: var(--wz-text);
}

.wz-sidebar .wp-block-latest-comments__comment-date {
    display: block;
    font-size: var(--wz-fs-xs);
    color: var(--wz-text-muted);
    margin-top: 0.15rem;
}

.wz-sidebar .wp-block-latest-comments__comment-excerpt p {
    font-size: var(--wz-fs-sm);
    color: var(--wz-text-secondary);
    margin: 0.25rem 0 0;
    line-height: 1.5;
}

/* Block Archives Widget */
.wz-sidebar .wp-block-archives {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.wz-sidebar .wp-block-archives li {
    margin: 0;
    padding: 0;
}

.wz-sidebar .wp-block-archives li a {
    display: block;
    padding: 0.55rem 0.75rem;
    font-size: var(--wz-fs-sm);
    font-weight: 500;
    color: var(--wz-text-secondary);
    border-radius: var(--wz-radius-sm);
    transition: all var(--wz-transition);
}

.wz-sidebar .wp-block-archives li a:hover {
    background: rgba(27, 107, 74, 0.06);
    color: var(--wz-primary);
    padding-right: 1rem;
}

/* Block Archives Dropdown */
.wz-sidebar .wp-block-archives select,
.wz-sidebar .wp-block-categories select {
    width: 100%;
    padding: 0.65rem 1rem;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-sm);
    border: 1.5px solid var(--wz-border);
    border-radius: var(--wz-radius-sm);
    background: var(--wz-bg);
    color: var(--wz-text);
    cursor: pointer;
    direction: rtl;
}

/* Block Categories Widget */
.wz-sidebar .wp-block-categories {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.wz-sidebar .wp-block-categories li {
    margin: 0;
    padding: 0;
}

.wz-sidebar .wp-block-categories li a {
    display: block;
    padding: 0.55rem 0.75rem;
    font-size: var(--wz-fs-sm);
    font-weight: 500;
    color: var(--wz-text-secondary);
    border-radius: var(--wz-radius-sm);
    transition: all var(--wz-transition);
}

.wz-sidebar .wp-block-categories li a:hover {
    background: rgba(27, 107, 74, 0.06);
    color: var(--wz-primary);
    padding-right: 1rem;
}

/* Block Heading in widgets */
.wz-sidebar .wp-block-heading,
.wz-sidebar .wz-widget h2,
.wz-sidebar .wz-widget h3:not(.wz-widget__title) {
    font-size: var(--wz-fs-base);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--wz-border-light);
    color: var(--wz-text);
    line-height: 1.4;
}

/* Block Group in widgets */
.wz-sidebar .wp-block-group {
    margin: 0;
    padding: 0;
}

/* Block Paragraph in widgets */
.wz-sidebar .wp-block-paragraph {
    font-size: var(--wz-fs-sm);
    line-height: 1.7;
    color: var(--wz-text-secondary);
}

/* Block Tag Cloud in widgets */
.wz-sidebar .wp-block-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.wz-sidebar .wp-block-tag-cloud a {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    font-size: var(--wz-fs-xs) !important;
    font-weight: 500;
    color: var(--wz-text-secondary);
    background: var(--wz-bg);
    border-radius: 50px;
    transition: all var(--wz-transition);
}

.wz-sidebar .wp-block-tag-cloud a:hover {
    background: var(--wz-primary);
    color: #fff;
}

/* Block Calendar */
.wz-sidebar .wp-block-calendar table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--wz-fs-sm);
}

.wz-sidebar .wp-block-calendar caption {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wz-sidebar .wp-block-calendar th,
.wz-sidebar .wp-block-calendar td {
    padding: 0.4rem;
    text-align: center;
    border: 1px solid var(--wz-border-light);
}

.wz-sidebar .wp-block-calendar th {
    background: var(--wz-bg);
    font-weight: 600;
}

/* Block RSS */
.wz-sidebar .wp-block-rss {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wz-sidebar .wp-block-rss__item {
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid var(--wz-border-light);
}

.wz-sidebar .wp-block-rss__item:last-child {
    border-bottom: none;
}

.wz-sidebar .wp-block-rss__item-publish-date {
    font-size: var(--wz-fs-xs);
    color: var(--wz-text-muted);
}


/* ============================================
   PAGINATION
   ============================================ */
.wz-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
}

.wz-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: var(--wz-fs-sm);
    font-weight: 600;
    color: var(--wz-text-secondary);
    background: var(--wz-bg-card);
    border: 1px solid var(--wz-border-light);
    border-radius: var(--wz-radius-sm);
    transition: all var(--wz-transition);
}

.wz-pagination .page-numbers:hover,
.wz-pagination .page-numbers.current {
    background: var(--wz-primary);
    color: #fff;
    border-color: var(--wz-primary);
}


/* ============================================
   FOOTER
   ============================================ */
.wz-footer {
    background: var(--wz-bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem 0 0;
    margin-top: 3rem;
}

.wz-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wz-footer__brand h3 {
    font-size: var(--wz-fs-xl);
    color: #fff;
    margin-bottom: 0.75rem;
}

.wz-footer__brand p {
    font-size: var(--wz-fs-sm);
    line-height: 1.8;
    max-width: 360px;
}

.wz-footer__heading {
    font-size: var(--wz-fs-base);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.wz-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wz-footer__links a {
    font-size: var(--wz-fs-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--wz-transition);
}

.wz-footer__links a:hover {
    color: var(--wz-accent);
    padding-right: 0.3rem;
}

/* Social Icons */
.wz-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.wz-social__link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--wz-transition);
    font-size: 1rem;
}

.wz-social__link:hover {
    background: var(--wz-primary);
    border-color: var(--wz-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Bottom */
.wz-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: var(--wz-fs-xs);
    color: rgba(255, 255, 255, 0.35);
}


/* ============================================
   BREADCRUMBS
   ============================================ */
.wz-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--wz-fs-sm);
    color: var(--wz-text-muted);
    padding: 1rem 0;
}

.wz-breadcrumbs a {
    color: var(--wz-text-secondary);
}

.wz-breadcrumbs a:hover {
    color: var(--wz-primary);
}

.wz-breadcrumbs__sep {
    color: var(--wz-border);
    font-size: 0.7em;
}


/* ============================================
   404 PAGE
   ============================================ */
.wz-404 {
    text-align: center;
    padding: 6rem 0;
}

.wz-404__code {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--wz-primary), var(--wz-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.wz-404 h1 {
    font-size: var(--wz-fs-2xl);
    margin-bottom: 0.75rem;
}

.wz-404 p {
    color: var(--wz-text-secondary);
    margin-bottom: 2rem;
}

.wz-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-sm);
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--wz-primary), var(--wz-primary-light));
    border: none;
    border-radius: var(--wz-radius-sm);
    cursor: pointer;
    transition: all var(--wz-transition);
}

.wz-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--wz-shadow-hover);
    color: #fff;
}


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wz-animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

.wz-job-card {
    animation: fadeInUp 0.4s ease forwards;
    animation-fill-mode: both;
}

.wz-job-card:nth-child(1) {
    animation-delay: 0.05s;
}

.wz-job-card:nth-child(2) {
    animation-delay: 0.1s;
}

.wz-job-card:nth-child(3) {
    animation-delay: 0.15s;
}

.wz-job-card:nth-child(4) {
    animation-delay: 0.2s;
}

.wz-job-card:nth-child(5) {
    animation-delay: 0.25s;
}

.wz-job-card:nth-child(6) {
    animation-delay: 0.3s;
}

.wz-job-card:nth-child(7) {
    animation-delay: 0.35s;
}

.wz-job-card:nth-child(8) {
    animation-delay: 0.4s;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {

    .wz-content-wrap,
    .wz-single-wrap,
    .wz-news-layout {
        grid-template-columns: 1fr;
    }

    .wz-sidebar {
        position: static;
    }

    .wz-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --wz-fs-hero: 2rem;
        --wz-fs-2xl: 1.5rem;
        --wz-fs-xl: 1.25rem;
    }

    .wz-header__inner {
        flex-wrap: wrap;
        min-height: 60px;
        gap: 0.5rem;
    }

    .wz-menu-toggle {
        display: block;
        order: -1;
    }

    .wz-nav {
        display: none;
        width: 100%;
        order: 10;
        padding-bottom: 0.75rem;
    }

    .wz-nav.is-open {
        display: block;
    }

    .wz-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .wz-nav li a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--wz-border-light);
    }

    .wz-hero-search__wrap {
        padding: 0.25rem 0.25rem 0.25rem 1rem;
    }

    .wz-hero-search__wrap button {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
    }

    .wz-search {
        flex-grow: 1;
        order: 2;
    }

    .wz-search__input {
        width: 100%;
    }

    .wz-search__input:focus {
        width: 100%;
    }

    .wz-hero {
        padding: 3rem 0 2.5rem;
    }

    .wz-hero__stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .wz-jobs-grid,
    .wz-news-layout {
        grid-template-columns: 1fr;
    }

    .wz-post-bar__inner {
        gap: 0.75rem;
    }

    .wz-single-hero img {
        height: 240px;
    }

    .wz-article {
        padding: 1.25rem;
    }

    .wz-job-details__grid {
        grid-template-columns: 1fr 1fr;
    }

    .wz-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wz-footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .wz-job-details__grid {
        grid-template-columns: 1fr;
    }

    .wz-hero__stats {
        flex-direction: column;
        gap: 1rem;
    }

    .wz-news-card {
        flex-direction: column;
    }

    .wz-news-card__img-wrap {
        width: 100%;
        height: 200px;
    }
}


/* ============================================
   SCREEN READER / A11Y
   ============================================ */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--wz-bg);
    clip: auto !important;
    clip-path: none;
    color: var(--wz-text);
    display: block;
    font-size: var(--wz-fs-sm);
    font-weight: 600;
    height: auto;
    left: 5px;
    padding: 1rem;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}


/* ============================================
   WORDPRESS ALIGNMENT CLASSES
   ============================================ */
.alignleft {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 1.5rem auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: var(--wz-fs-sm);
    color: var(--wz-text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* ============================================================
   CV UPLOAD PAGE — template-cv.php
   ============================================================ */
.wz-cv-hero {
    padding: 2.5rem 0 2rem;
}

.wz-cv-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.wz-cv-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
    direction: rtl;
}

/* Form Card */
.wz-cv-form-card {
    background: var(--wz-bg-card);
    border-radius: var(--wz-radius-lg);
    border: 1px solid var(--wz-border-light);
    padding: 2rem;
    box-shadow: var(--wz-shadow);
}

.wz-cv-form-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--wz-border-light);
}

.wz-cv-form-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--wz-primary), var(--wz-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.wz-cv-form-card__title {
    font-size: var(--wz-fs-lg);
    font-weight: 800;
    margin: 0 0 0.3rem;
}

.wz-cv-form-card__subtitle {
    font-size: var(--wz-fs-sm);
    color: var(--wz-text-secondary);
    margin: 0;
}

/* Form */
.wz-cv-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.wz-cv-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.wz-cv-form__label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--wz-fs-sm);
    font-weight: 700;
    color: var(--wz-text);
}

.wz-cv-form__required {
    color: #DC2626;
    font-size: 0.9em;
}

.wz-cv-form__input,
.wz-cv-form__select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--wz-border);
    border-radius: var(--wz-radius-sm);
    font-family: var(--wz-font);
    font-size: var(--wz-fs-base);
    color: var(--wz-text);
    background: var(--wz-bg);
    direction: rtl;
    transition: border-color var(--wz-transition), box-shadow var(--wz-transition);
}

.wz-cv-form__input:focus,
.wz-cv-form__select:focus {
    outline: none;
    border-color: var(--wz-primary);
    box-shadow: 0 0 0 3px rgba(27, 107, 74, 0.1);
}

.wz-cv-form__input::placeholder {
    color: var(--wz-text-muted);
}

.wz-cv-form__select-wrap {
    position: relative;
}

.wz-cv-form__select {
    appearance: none;
    padding-left: 2.5rem;
    cursor: pointer;
}

.wz-cv-form__select-arrow {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--wz-text-secondary);
}

.wz-cv-form__group--error .wz-cv-form__input,
.wz-cv-form__group--error .wz-cv-form__select {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.wz-cv-form__error-msg {
    font-size: var(--wz-fs-xs);
    color: #DC2626;
}

/* Checkbox */
.wz-cv-form__group--check {
    flex-direction: row;
    align-items: flex-start;
}

.wz-cv-form__check-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: var(--wz-fs-sm);
    color: var(--wz-text-secondary);
    cursor: pointer;
    line-height: 1.6;
}

.wz-cv-form__checkbox {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--wz-primary);
    margin-top: 2px;
}

/* Hidden file input */
.wz-cv-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

/* Drop Zone */
.wz-cv-dropzone {
    display: block;
    border: 2px dashed var(--wz-border);
    border-radius: var(--wz-radius);
    cursor: pointer;
    transition: all var(--wz-transition);
    overflow: hidden;
    background: var(--wz-bg);
}

.wz-cv-dropzone:hover,
.wz-cv-dropzone--drag {
    border-color: var(--wz-primary);
    background: rgba(27, 107, 74, 0.04);
}

.wz-cv-dropzone--has-file {
    border-color: var(--wz-primary);
    border-style: solid;
}

.wz-cv-dropzone__inner {
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.wz-cv-dropzone__icon {
    color: var(--wz-primary);
    opacity: 0.6;
    margin-bottom: 0.5rem;
    transition: transform var(--wz-transition);
}

.wz-cv-dropzone:hover .wz-cv-dropzone__icon {
    transform: translateY(-4px);
    opacity: 1;
}

.wz-cv-dropzone__title {
    font-size: var(--wz-fs-base);
    font-weight: 700;
    color: var(--wz-text);
    margin: 0;
}

.wz-cv-dropzone__sub {
    font-size: var(--wz-fs-sm);
    color: var(--wz-text-secondary);
    margin: 0;
}

.wz-cv-dropzone__btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.45rem 1.25rem;
    background: var(--wz-primary);
    color: #fff;
    border-radius: 50px;
    font-size: var(--wz-fs-sm);
    font-weight: 700;
    transition: background var(--wz-transition);
}

.wz-cv-dropzone:hover .wz-cv-dropzone__btn {
    background: var(--wz-primary-light);
}

.wz-cv-dropzone__hint {
    font-size: var(--wz-fs-xs);
    color: var(--wz-text-muted);
    margin: 0;
}

.wz-cv-dropzone__preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(27, 107, 74, 0.06);
}

.wz-cv-dropzone__preview-icon {
    font-size: 2rem;
}

.wz-cv-dropzone__preview-info {
    flex: 1;
    min-width: 0;
}

.wz-cv-dropzone__preview-name {
    display: block;
    font-size: var(--wz-fs-sm);
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wz-cv-dropzone__preview-size {
    display: block;
    font-size: var(--wz-fs-xs);
    color: var(--wz-text-secondary);
    margin-top: 0.2rem;
}

.wz-cv-dropzone__remove {
    background: none;
    border: 1.5px solid var(--wz-border);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--wz-text-secondary);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all var(--wz-transition);
}

.wz-cv-dropzone__remove:hover {
    border-color: #DC2626;
    color: #DC2626;
    background: rgba(220, 38, 38, 0.06);
}

/* Submit */
.wz-cv-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--wz-primary) 0%, var(--wz-primary-light) 100%);
    color: #fff;
    border: none;
    border-radius: var(--wz-radius);
    font-family: var(--wz-font);
    font-size: var(--wz-fs-base);
    font-weight: 800;
    cursor: pointer;
    transition: all var(--wz-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(27, 107, 74, 0.3);
}

.wz-cv-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27, 107, 74, 0.4);
}

.wz-cv-submit:active {
    transform: translateY(0);
}

.wz-cv-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.wz-cv-submit__text,
.wz-cv-submit__loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wz-cv-spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: wz-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes wz-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success / Error */
.wz-cv-success,
.wz-cv-error {
    padding: 1.75rem;
    border-radius: var(--wz-radius);
    text-align: center;
    margin-bottom: 1.5rem;
}

.wz-cv-success {
    background: rgba(27, 107, 74, 0.07);
    border: 1.5px solid rgba(27, 107, 74, 0.3);
}

.wz-cv-error {
    background: rgba(220, 38, 38, 0.06);
    border: 1.5px solid rgba(220, 38, 38, 0.25);
}

.wz-cv-success__icon,
.wz-cv-error__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.wz-cv-success h3 {
    font-size: var(--wz-fs-lg);
    color: var(--wz-primary);
    margin-bottom: 0.5rem;
}

.wz-cv-success p,
.wz-cv-error p {
    font-size: var(--wz-fs-sm);
    color: var(--wz-text-secondary);
    margin-bottom: 1.25rem;
}

.wz-cv-error p {
    color: #DC2626;
    margin: 0;
}

/* Sidebar */
.wz-cv-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 5rem;
}

.wz-cv-steps__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.wz-cv-steps__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.wz-cv-steps__num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wz-primary), var(--wz-primary-light));
    color: #fff;
    font-size: var(--wz-fs-xs);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wz-cv-steps__item strong {
    display: block;
    font-size: var(--wz-fs-sm);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.wz-cv-steps__item p {
    font-size: var(--wz-fs-xs);
    color: var(--wz-text-secondary);
    margin: 0;
}

.wz-cv-tips__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wz-cv-tips__list li {
    font-size: var(--wz-fs-sm);
    color: var(--wz-text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.wz-cv-tips__list li::before {
    display: none;
}

.wz-cv-tips__check {
    color: var(--wz-primary);
    font-weight: 700;
    font-size: 1em;
    flex-shrink: 0;
    line-height: 1.6;
}

.wz-cv-privacy {
    background: rgba(27, 107, 74, 0.04);
    border: 1px solid rgba(27, 107, 74, 0.12);
}

/* Responsive */
@media (max-width: 960px) {
    .wz-cv-layout {
        grid-template-columns: 1fr;
    }

    .wz-cv-info {
        position: static;
    }
}

@media (max-width: 640px) {
    .wz-cv-form-card {
        padding: 1.25rem;
    }

    .wz-cv-hero h1 {
        font-size: 1.65rem;
    }
}

/* Header CTA Button */
.wz-header__cta {
    margin-right: auto;
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
}

.wz-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    background: var(--wz-primary);
    color: #fff;
    font-size: var(--wz-fs-sm);
    font-weight: 700;
    font-family: var(--wz-font);
    border-radius: 50px;
    transition: all var(--wz-transition);
    text-decoration: none;
}

.wz-header-btn:hover {
    background: var(--wz-primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 107, 74, 0.25);
}

@media (max-width: 960px) {
    .wz-header__cta {
        display: none;
    }
    
    .wz-header__right {
        width: 100%;
        justify-content: center; /* Center the logo */
    }
    
    .wz-menu-toggle {
        display: block;
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .wz-nav {
        display: none; /* Hide primary nav by default on mobile */
    }
}

/* ============================================
   WP JOB MANAGER UI FIXES 
   ============================================ */
/* Header Text Alignments on Home */
.home h1:not(.wz-hero h1, .wz-cv-hero h1) {
    font-size: var(--wz-fs-3xl);
    text-align: right;
    margin-bottom: 0.5rem;
    color: var(--wz-primary);
}

.home h3.elementor-heading-title,
.home h2:not(.wz-section__title, .wz-cv-form-card__title, .wz-widget__title) {
    text-align: right;
    font-size: var(--wz-fs-lg);
    color: var(--wz-text-secondary);
    margin-bottom: 2rem;
}

/* Job Listings Wrapper Reset */
ul.job_listings {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Job Search Form Styles */
.job_search_form div.search_jobs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--wz-bg-card) !important;
    padding: 1.5rem !important;
    border-radius: var(--wz-radius);
    border: 1px solid var(--wz-border-light);
    box-shadow: var(--wz-shadow-sm);
    margin-bottom: 1.5rem;
}

.job_search_form div.search_jobs .search_keywords,
.job_search_form div.search_jobs .search_location {
    flex: 1;
    min-width: 200px;
}

.job_search_form div.search_jobs .search_keywords label,
.job_search_form div.search_jobs .search_location label {
    display: none;
}

.job_search_form div.search_jobs input[type="text"] {
    width: 100%;
    padding: 0.8rem 1rem !important;
    border: 1.5px solid var(--wz-border) !important;
    border-radius: var(--wz-radius-sm) !important;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-sm);
    transition: all var(--wz-transition);
    background: var(--wz-bg) !important;
    color: var(--wz-text) !important;
}

.job_search_form div.search_jobs input[type="text"]:focus {
    border-color: var(--wz-primary) !important;
    box-shadow: 0 0 0 3px rgba(27, 107, 74, 0.1) !important;
    outline: none;
    background: #fff !important;
}

.job_search_form div.search_jobs .search_submit input[type="submit"] {
    padding: 0.8rem 2rem !important;
    background: var(--wz-primary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--wz-radius-sm) !important;
    font-family: var(--wz-font);
    font-size: var(--wz-fs-sm) !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all var(--wz-transition) !important;
    width: 100%;
}

.job_search_form div.search_jobs .search_submit input[type="submit"]:hover {
    background: var(--wz-primary-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--wz-shadow-hover) !important;
}

/* Job Filters (Checkboxes) */
ul.job_types {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    padding: 1rem !important;
    margin: 0 !important;
    list-style: none !important;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

/* ============================================
   OVERRIDING WP JOB MANAGER LISTING STYLES (AS REQUESTED)
   ============================================ */
/* تحسين شكل بطاقة الوظيفة لتطابق الكروت المسطحة العريضة */
.job_listing {
    background: #fff !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
    padding: 15px !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
    transition: all 0.2s ease-in-out !important;
}

.job_listing:hover {
    border-color: #16a34a !important; /* الأخضر الأساسي للموقع */
    background: #FAFAFA !important;
}

/* اللوجو داخل دائرة جهة اليمين */
.job_listing .company_logo {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important; /* شكل دائري */
    object-fit: contain !important;
    border: 1px solid #f0f0f0 !important;
    padding: 4px !important;
    margin-left: 15px !important; /* مسافة من الجهة اليسرى (لاتجاه RTL) */
    background: #fff !important;
}

/* تعديل العنوان ليكون بارزاً باللون الأسود */
.job_listing h3 {
    color: #222 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    margin-top: 0 !important;
    line-height: 1.4 !important;
}

/* الحاوية الخاصة بمعلومات الوظيفة لترتيبها بجانب اللوجو */
.job_listing .position {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.job_listing .company {
    font-size: 13px !important;
    color: #666 !important;
    font-weight: 600 !important;
}

/* إخفاء الكلمات الإنجليزية والتواريخ كما طلبت */
.job_listing .location,
.job_listing .job-type,
.job_listing .date,
.job_listing ul.meta {
    font-family: 'Tajawal', sans-serif !important;
    text-transform: capitalize;
}

.job_listing .location.anywhere,
.job_listing .date > time {
    display: none !important; /* إخفاء الكلمات الانجليزية إذا لم يستجب الـ Template Override */
}

ul.job_types li {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: rgba(27, 107, 74, 0.05) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 50px !important;
    font-size: var(--wz-fs-sm) !important;
    color: var(--wz-text-secondary) !important;
    border: 1px solid rgba(27, 107, 74, 0.1) !important;
    transition: all var(--wz-transition) !important;
    margin: 0 !important;
}

ul.job_types li:hover {
    border-color: var(--wz-primary) !important;
}

ul.job_types li input[type="checkbox"] {
    accent-color: var(--wz-primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin: 0 !important;
}

/* Header gap for menu */
.wz-nav ul {
    gap: 1.25rem !important;
}

.wz-nav li a {
    font-size: var(--wz-fs-sm);
    font-weight: 700;
}

.job-manager-pagination {
    text-align: center;
    margin-top: 2rem;
}

.job-manager-pagination a {
    display: inline-block;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--wz-border);
    border-radius: var(--wz-radius-sm);
}

.job-manager-pagination .current {
    background: var(--wz-primary);
    color: #fff;
    border-color: var(--wz-primary);
}


/* ============================================
   MISSING VARIABLES COMPATIBILITY
   ============================================ */
:root {
    --wz-primary-hover: #0F1B38;
    --wz-section-bg: #F2F5FA;
    --wz-heading: #1A1D21;
}


/* ============================================
   UNIFIED APPLY BUTTON — ALL PAGES
   ============================================ */
.wz-news-card__apply,
.wz-job-card__apply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--wz-primary);
    color: #fff !important;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.wz-news-card__apply:hover,
.wz-job-card__apply:hover {
    background: var(--wz-primary-hover);
    transform: translateY(-1px);
    color: #fff !important;
}

.wz-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--wz-primary), var(--wz-primary-dark));
    color: #fff !important;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(27,107,74,0.3);
}
.wz-apply-btn:hover {
    background: linear-gradient(135deg, var(--wz-primary-light), var(--wz-primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27,107,74,0.4);
    color: #fff !important;
}


/* ============================================
   NEWS CARD FOOTER FIX
   ============================================ */
.wz-news-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--wz-border-light);
    flex-wrap: wrap;
}

.wz-news-card__read-more {
    color: var(--wz-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.wz-news-card__read-more:hover {
    color: var(--wz-primary-dark);
    text-decoration: underline;
}


/* ============================================
   SECTION TITLE GLOBAL
   ============================================ */
.wz-section-title {
    font-size: 1.8rem;
    color: var(--wz-heading);
    text-align: center;
    margin-bottom: 8px;
}
.wz-section-subtitle {
    text-align: center;
    color: var(--wz-text-secondary);
    margin-bottom: 32px;
}


/* ============================================
   OUTLINE BUTTON VARIANT
   ============================================ */
.wz-btn--outline {
    background: transparent !important;
    border: 2px solid #fff;
    color: #fff !important;
}
.wz-btn--outline:hover {
    background: rgba(255,255,255,0.15) !important;
}

/* === WAZIFKOM UPDATES === */
.wz-hero h1 .wz-highlight{color:#f59e0b!important;}
.wz-gold-item__change{display:none!important;}
.wz-single-featured-img{width:100%;max-height:400px;overflow:hidden;line-height:0;}
.wz-single-featured-img img{width:100%;height:400px;object-fit:cover;display:block;}
.wz-single-three-col{max-width:1300px;margin:2rem auto;padding:0 1.25rem;display:grid;grid-template-columns:240px 1fr 240px;gap:1.5rem;align-items:start;direction:rtl;}
.wz-single-side--right{order:1;}.wz-single-content-col{order:2;}.wz-single-side--left{order:3;}
.wz-article--white{background:#fff;border-radius:12px;border:1px solid #f3f4f6;padding:2rem;box-shadow:0 2px 12px rgba(0,0,0,.06);}
.wz-article__cats{margin-bottom:1rem;}
.wz-article__cat-badge{display:inline-flex;padding:.25rem .85rem;background:rgba(22,163,74,.1);color:#16a34a;border-radius:50px;font-size:.8rem;font-weight:700;text-decoration:none;}
.wz-article__cat-badge:hover{background:#16a34a;color:#fff;}
.wz-article__title{font-size:1.6rem;font-weight:800;line-height:1.4;color:#111827;margin-bottom:1rem;}
.wz-article__meta-bar{display:flex;flex-wrap:wrap;gap:.75rem;padding:.75rem 1rem;background:#f9fafb;border-radius:6px;margin-bottom:1.25rem;border:1px solid #f3f4f6;}
.wz-article__meta-item{display:inline-flex;align-items:center;gap:.35rem;font-size:.82rem;color:#4b5563;}
.wz-article__meta-salary{color:#16a34a;font-weight:700;}
.wz-article__company-logo{display:flex;align-items:center;gap:.75rem;margin-bottom:1.25rem;padding:.75rem;background:#f9fafb;border-radius:6px;border:1px solid #f3f4f6;}
.wz-article__logo-img{width:60px;height:60px;object-fit:contain;border-radius:6px;}
.wz-article__logo-placeholder{width:50px;height:50px;background:#16a34a;color:#fff;display:flex;align-items:center;justify-content:center;border-radius:6px;font-size:1.4rem;font-weight:800;flex-shrink:0;}
.wz-article__company-name{font-weight:700;color:#111827;}
.wz-article__tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:2rem;padding-top:1.25rem;border-top:1px solid #f3f4f6;}
.wz-article__body{color:#111827;line-height:1.9;font-size:1rem;}
.wz-article__body p{margin-bottom:1rem;}
.wz-article__body ul,.wz-article__body ol{list-style:disc;padding-right:1.5rem;margin-bottom:1rem;}
.wz-side-banner{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.5rem;padding:1.25rem 1rem;border-radius:12px;text-align:center;text-decoration:none;color:#fff;margin-bottom:1rem;transition:transform .2s;}
.wz-side-banner:hover{transform:translateY(-3px);color:#fff;box-shadow:0 8px 24px rgba(0,0,0,.2);}
.wz-side-banner span{font-weight:700;font-size:.9rem;}.wz-side-banner small{font-size:.75rem;opacity:.85;}
.wz-side-banner--telegram{background:linear-gradient(135deg,#0088cc,#229ed9);}
.wz-side-banner--whatsapp{background:linear-gradient(135deg,#25d366,#128c7e);}
.wz-side-widget{background:#fff;border:1px solid #f3f4f6;border-radius:12px;padding:1.25rem;margin-bottom:1rem;box-shadow:0 2px 8px rgba(0,0,0,.04);}
.wz-side-widget__title{display:flex;align-items:center;gap:.4rem;font-size:.9rem;font-weight:700;color:#111827;margin-bottom:.75rem;padding-bottom:.5rem;border-bottom:1px solid #f3f4f6;}
.wz-gold-item--compact{display:flex;justify-content:space-between;align-items:center;padding:.4rem 0;border-bottom:1px solid #f3f4f6;font-size:.8rem;}
.wz-gold-item--compact:last-child{border-bottom:none;}
.wz-archive-hero{background:#1F2937!important;}.wz-archive-hero h1{color:#fff!important;}
@media(max-width:1100px){.wz-single-three-col{grid-template-columns:1fr;}.wz-single-side--right,.wz-single-side--left{display:flex;flex-wrap:wrap;gap:1rem;}.wz-single-side--right>*,.wz-single-side--left>*{flex:1;min-width:200px;}}
@media(max-width:640px){.wz-single-featured-img img{height:220px;}.wz-article--white{padding:1.25rem;}.wz-article__title{font-size:1.3rem;}}
