/*
Theme Name: EmpleosHoy
Theme URI: https://empleoshoy.com.ar
Author: EmpleosHoy
Description: Portal de empleos local - Tema a medida sin plugins
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: empleoshoy
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --color-primary:    #1A3C5E;
  --color-accent:     #F5A623;
  --color-accent2:    #E8334A;
  --color-bg:         #F4F6F9;
  --color-white:      #FFFFFF;
  --color-text:       #1C2B3A;
  --color-muted:      #6B7C93;
  --color-border:     #DDE3EC;
  --color-card:       #FFFFFF;
  --color-tag-bg:     #EBF4FF;
  --color-tag-text:   #1A3C5E;
  --font-display:     'Sora', sans-serif;
  --font-body:        'DM Sans', sans-serif;
  --radius-sm:        6px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --shadow-sm:        0 2px 8px rgba(26,60,94,0.08);
  --shadow-md:        0 6px 24px rgba(26,60,94,0.12);
  --shadow-lg:        0 16px 48px rgba(26,60,94,0.16);
  --transition:       0.22s cubic-bezier(.4,0,.2,1);
  --max-width:        1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo .logo-mark {
  width: 38px;
  height: 38px;
  background: var(--color-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-primary);
  letter-spacing: -1px;
}
.site-logo .logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-white);
  letter-spacing: -0.5px;
}
.site-logo .logo-text span {
  color: var(--color-accent);
}

/* Search bar in header */
.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.header-search form {
  display: flex;
}
.header-search input {
  width: 100%;
  padding: 10px 16px 10px 44px;
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 14px;
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  outline: none;
  transition: background var(--transition);
}
.header-search input::placeholder { color: rgba(255,255,255,0.55); }
.header-search input:focus { background: rgba(255,255,255,0.2); }
.header-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  pointer-events: none;
}
.header-search button {
  padding: 10px 20px;
  background: var(--color-accent);
  border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.header-search button:hover { background: #e0941a; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.header-nav a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
}
.btn-publish-header {
  background: var(--color-accent) !important;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-md) !important;
}
.btn-publish-header:hover { background: #e0941a !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.site-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0d2540 100%);
  padding: 64px 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.site-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.site-hero h1 span { color: var(--color-accent); }
.site-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 32px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -1px;
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   CATEGORY FILTER BAR
   ============================================================ */
.filter-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 68px;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar-inner::-webkit-scrollbar { display: none; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--color-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--color-white);
}
.filter-chip:hover, .filter-chip.active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-tag-bg);
}
.filter-chip.active { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  padding: 32px 0 60px;
  align-items: start;
}

/* ============================================================
   JOB LISTINGS
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.5px;
}
.section-header .count {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 500;
}

.job-grid { display: flex; flex-direction: column; gap: 14px; }

.job-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: start;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
}
.job-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.job-card.featured {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, #fffbf2 0%, var(--color-white) 100%);
}
.job-card.featured::before {
  content: '★ DESTACADO';
  position: absolute;
  top: -1px;
  right: 16px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  letter-spacing: 0.5px;
}

.job-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.job-logo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-primary), #2a5f8f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.job-info { min-width: 0; }
.job-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.job-title a:hover { color: var(--color-primary); }
.job-company {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--color-tag-bg);
  color: var(--color-tag-text);
}
.job-tag.type-fulltime { background: #e8f5e9; color: #2e7d32; }
.job-tag.type-parttime { background: #fff3e0; color: #e65100; }
.job-tag.type-remote   { background: #e3f2fd; color: #0d47a1; }
.job-tag.location      { background: #f3e5f5; color: #6a1b9a; }

.job-date {
  font-size: 12px;
  color: var(--color-muted);
  flex-shrink: 0;
  margin-top: 4px;
  text-align: right;
}

.job-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-apply:hover { background: #0f2a45; transform: translateY(-1px); }
.btn-detail {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 500;
  transition: color var(--transition);
}
.btn-detail:hover { color: var(--color-primary); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
}
.pagination a, .pagination span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  transition: all var(--transition);
}
.pagination a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.pagination .current { background: var(--color-primary); color: white; border-color: var(--color-primary); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-widget {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  overflow: hidden;
}
.widget-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 12px 18px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.widget-body { padding: 16px 18px; }

/* Ad Banner Widget */
.ad-banner {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.ad-banner:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.ad-banner a { display: block; }
.ad-banner img {
  width: 100%;
  aspect-ratio: 300/200;
  object-fit: cover;
}
.ad-banner-placeholder {
  width: 100%;
  aspect-ratio: 300/200;
  background: linear-gradient(135deg, #f0f4f8, #dde3ec);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
}
.ad-banner-placeholder .ad-icon {
  font-size: 28px;
  opacity: 0.5;
}
.ad-label {
  text-align: center;
  font-size: 10px;
  color: var(--color-muted);
  padding: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Category list */
.category-list { display: flex; flex-direction: column; gap: 4px; }
.category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
}
.category-list li a:hover {
  background: var(--color-tag-bg);
  color: var(--color-primary);
}
.category-list .cat-count {
  font-size: 12px;
  font-weight: 600;
  background: var(--color-bg);
  color: var(--color-muted);
  padding: 2px 8px;
  border-radius: 100px;
}

/* Publish CTA widget */
.widget-publish-cta {
  background: linear-gradient(135deg, var(--color-primary), #0d2540);
  border-color: var(--color-primary);
  padding: 24px 20px;
  text-align: center;
}
.widget-publish-cta h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.widget-publish-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  line-height: 1.5;
}
.btn-cta-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-cta-yellow:hover { background: #e0941a; transform: translateY(-2px); }

/* ============================================================
   JOB DETAIL PAGE
   ============================================================ */
.job-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  padding: 32px 0 60px;
  align-items: start;
}
.job-detail-header {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  padding: 32px;
  margin-bottom: 20px;
}
.job-detail-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.job-detail-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  object-fit: cover;
  flex-shrink: 0;
}
.job-detail-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.job-detail-company {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.job-detail-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.job-detail-body {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  padding: 28px 32px;
  margin-bottom: 20px;
}
.job-detail-body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 24px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-bg);
}
.job-detail-body h3:first-child { margin-top: 0; }
.job-detail-body p { font-size: 15px; color: var(--color-muted); line-height: 1.7; margin-bottom: 12px; }
.job-detail-body ul { padding-left: 20px; }
.job-detail-body ul li { font-size: 15px; color: var(--color-muted); margin-bottom: 8px; line-height: 1.6; }

/* ============================================================
   APPLICATION FORM
   ============================================================ */
.apply-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  overflow: hidden;
}
.apply-form-header {
  background: linear-gradient(135deg, var(--color-primary), #0d2540);
  padding: 24px 28px;
}
.apply-form-header h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.apply-form-header p { font-size: 14px; color: rgba(255,255,255,0.65); }
.apply-form-body { padding: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}
.form-group label .req { color: var(--color-accent2); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26,60,94,0.08);
  background: white;
}
.form-control::placeholder { color: #b0bec5; }
textarea.form-control { resize: vertical; min-height: 110px; }

.file-upload-area {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.file-upload-area:hover, .file-upload-area.drag-over {
  border-color: var(--color-primary);
  background: var(--color-tag-bg);
}
.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-upload-icon { font-size: 32px; margin-bottom: 10px; }
.file-upload-text { font-size: 14px; color: var(--color-muted); font-weight: 500; }
.file-upload-hint { font-size: 12px; color: var(--color-muted); margin-top: 4px; }
.file-name-display {
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
}

.privacy-note {
  background: var(--color-tag-bg);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.privacy-note svg { flex-shrink: 0; margin-top: 1px; }

.btn-submit {
  width: 100%;
  background: var(--color-accent2);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: -0.3px;
}
.btn-submit:hover { background: #c0273a; transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Form success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #2e7d32;
  margin-bottom: 8px;
}
.form-success p { font-size: 14px; color: var(--color-muted); }

/* ============================================================
   HORIZONTAL AD BANNER (full width)
   ============================================================ */
.ad-horizontal {
  margin: 28px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.ad-horizontal a { display: block; }
.ad-horizontal img { width: 100%; height: 90px; object-fit: cover; }
.ad-horizontal-placeholder {
  width: 100%;
  height: 90px;
  background: linear-gradient(90deg, #f0f4f8, #e3e9f0, #f0f4f8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-mark {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 220px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom a { color: var(--color-accent); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  z-index: 99;
  padding: 24px 20px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); }

/* ============================================================
   NOTICE BOXES
   ============================================================ */
.notice {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
}
.notice.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.notice.error   { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .main-layout, .job-detail-layout {
    grid-template-columns: 1fr;
  }
  .sidebar { order: -1; display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-search { display: none; }
  .header-nav    { display: none; }
  .hamburger     { display: flex; }
  .site-hero { padding: 40px 0 32px; }
  .hero-stats { gap: 24px; }
  .job-card { grid-template-columns: 44px 1fr; }
  .job-action { display: none; }
  .job-card:hover .job-action { display: flex; }
  .sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .job-card { grid-template-columns: 1fr; }
  .job-logo-placeholder { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
