/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  padding: 80px 60px;
  min-height: 70vh;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-content p {
  max-width: 420px;
  font-size: 16px;
  color: #cfcfcf;
}

.hero-visual {
  position: relative;
}

.grid {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(#1a1a1a 1px, transparent 1px),
    linear-gradient(90deg, #1a1a1a 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}

/* JOBS */
.jobs {
  padding: 80px 60px;
  background: #0f0f0f;
}

.jobs h2 {
  font-size: 36px;
  margin-bottom: 32px;
}

.filters {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.filters input,
.filters select {
  background: #141414;
  border: 1px solid #2a2a2a;
  padding: 12px 14px;
  color: #fff;
  opacity: 0.6;
  cursor: not-allowed;
}

.count {
  margin-left: auto;
  color: #888;
}

/* JOB CARD */
.job-card-link {
  display: block;
  max-width: 520px;
  text-decoration: none;
  color: inherit;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px;
  border: 1px solid #2a2a2a;
  transition: border 0.2s ease, background 0.2s ease;
}

.job-card:hover {
  border-color: #444;
  background: #111;
}

.job-meta {
  color: #aaa;
  font-size: 14px;
}

/* VIEW JOB CTA */
.view-job {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #3a3a3a;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.job-card:hover .view-job {
  background: #fff;
  color: #000;
}

.arrow {
  transition: transform 0.2s ease;
}

.job-card:hover .arrow {
  transform: translateX(4px);
}
