/* ═══════════════════════════════════════════════
   ZION Consultancy – Positions Page Styles
   ═══════════════════════════════════════════════ */

/* Page hero banner */
.positions-page-hero {
  padding: 10rem 1rem 4rem;
}
@media (min-width: 640px) {
  .positions-page-hero { padding: 11rem 1.5rem 5rem; }
}

.positions-page-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin: 16px 0 12px;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .positions-page-title { font-size: 2.75rem; }
}

.positions-page-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Filters Section */
.positions-filters-section {
  padding: 1.5rem 0;
  position: sticky;
  top: 64px;
  z-index: 40;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
@media (min-width: 768px) {
  .positions-filters-section { top: 72px; }
}

.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filter-group {
  position: relative;
}

.filter-search {
  flex: 1 1 200px;
  min-width: 200px;
  position: relative;
}

.filter-input {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  color: #374151;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.filter-input:focus {
  border-color: #1e3a5f;
  box-shadow: 0 0 0 3px rgba(30,58,95,0.08);
}

.filter-input-search {
  padding-left: 38px;
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%236b7280' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
  min-width: 160px;
}

.filter-results-count {
  margin-left: auto;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  white-space: nowrap;
  padding: 10px 0;
}

/* Positions List Area */
.positions-page-list {
  padding: 2.5rem 0 4rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  min-height: 400px;
}

/* CTA section */
.positions-page-cta {
  padding: 0 0 5rem;
}

.positions-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a5f, #2c5282);
  border-radius: 24px;
  padding: 3.5rem 2rem;
}

/* Active nav link highlight */
.nav-link-active {
  color: #e8a838 !important;
  background: rgba(232,168,56,0.08);
}

/* Fade-in animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive filter layout */
@media (max-width: 640px) {
  .filters-bar {
    flex-direction: column;
  }
  .filter-group {
    width: 100%;
  }
  .filter-search {
    flex: unset;
    min-width: unset;
  }
  .filter-select {
    min-width: unset;
    width: 100%;
  }
  .filter-results-count {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }
  .positions-page-cta {
    padding: 0 0 3rem;
  }
  .positions-cta-card {
    padding: 2.5rem 1.5rem;
  }
}
