/* ============================================================
   1. SINGLE JOB PAGE: TITLE SPACING & COLOR
   ============================================================ */
.single-awsm_job_openings .page-header,
.awsm_job_openings .page-header {
    display: block !important;
    margin-top: 120px !important; /* Pushes title below fixed header */
    padding-bottom: 20px !important;
}

.single-awsm_job_openings .entry-title,
.awsm_job_openings .entry-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #333333 !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    text-transform: uppercase; /* Matches your screenshot style */
}

/* ============================================================
   2. JOB LIST ARCHIVE: TITLES & ICONS (DARK NAVY)
   ============================================================ */
/* Target job titles in the main listing */
.awsm-job-post-title a {
    color: #141E32 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* Target icons and terms (Freelance, Casablanca, etc.) in the list */
.awsm-job-listing .awsm-job-specification-item,
.awsm-job-listing .awsm-job-specification-item i,
.awsm-job-listing .awsm-job-specification-term {
    color: #141E32 !important;
}

/* "More Details" link - Keep brand cyan or match navy as preferred */
.awsm-job-more {
    color: #141E32 !important;
    font-weight: 600 !important;
}

/* ============================================================
   3. JOB CONTENT & SPECIFICATIONS: DARK NAVY (#141E32)
   ============================================================ */
.awsm-job-entry-content,
.awsm-job-entry-content p,
.awsm-job-entry-content li,
.awsm-job-entry-content span,
.awsm-job-entry-content strong,
.awsm-job-content {
    color: #141E32 !important;
}

/* Single page specification terms */
.awsm-job-specification-item a.awsm-job-specification-term,
.awsm-job-specification-label strong {
    color: #141E32 !important;
    font-weight: 600 !important;
}

/* ============================================================
   4. FORM & FILE UPLOAD: DARK NAVY COLORING
   ============================================================ */
.awsm-job-form-inner h2 {
    color: #141E32 !important;
    font-size: 36px !important;
    font-weight: 700 !important;
}

.awsm-job-form-group label,
.awsm-job-form-group small,
.awsm-job-form-group .awsm-form-file-control {
    color: #141E32 !important;
}

/* Fix browser default "No file chosen" color */
.awsm-job-form-group input[type="file"] {
    color: #141E32 !important;
}

/* ============================================================
   5. BUTTONS: BRAND CYAN
   ============================================================ */
#awsm-application-submit-btn {
    background-color: #00BFFF !important;
    color: #FFFFFF !important;
    border-radius: 4px !important;
    padding: 12px 35px !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer;
}

#awsm-application-submit-btn:hover {
    background-color: #0099cc !important;
}

/* ----------> cutome style for images in post gitex 2026 and post Retour sur la table */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}

.image-grid .grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #f5f7fa;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.image-grid .grid-item.large {
  grid-column: span 2;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ✨ Hover effect (pro look) */
.image-grid .grid-item:hover img {
  transform: scale(1.06);
}

.image-grid .grid-item:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .image-grid .grid-item.large {
    grid-column: span 1;
  }
}

