/* ============================================================
   careers.css — Pureframe Labs
   Page-specific: application card wrapper, file upload dropzone.
   Perks grid uses shared .cards component from global.css.
   ============================================================ */

.apply-card {
  background: var(--bone-2);
  border: 1px solid var(--hair);
  border-top: 3px solid var(--red);
  padding: clamp(28px, 5vw, 56px);
  max-width: 760px;
  margin: 0 auto;
}

.apply-card h3 {
  margin-bottom: 10px;
}

.apply-card > p {
  font-size: 15.5px;
  color: var(--ink-2);
  margin-bottom: 36px;
  line-height: 1.6;
}

.careers-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── FILE UPLOAD ── */
.file-upload-area {
  border: 2px dashed var(--hair);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: var(--bone);
  position: relative;
  margin-bottom: 22px;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
  border-color: var(--red);
  background: var(--bone-3);
}

.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.file-upload-title {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 900;
  font-variation-settings: 'wdth' 76;
  font-size: 14.5px;
  margin-bottom: 4px;
}

.file-upload-sub {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.file-name-display {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--red-deep);
  display: none;
}

/* ── UTILITIES ── */
.section-header-mb {
  margin-bottom: 48px;
}

.section-sub-text {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 56ch;
}

.textarea-cover {
  min-height: 110px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .apply-card {
    padding: 28px 20px;
  }
}
