/* ================= BASE ================= */
.career-detail-page {
  font-family: "Manrope", sans-serif;
  background: #f9fafb;
}

.career-detail-page h1,
.career-detail-page h2 {
  font-family: "Sora", sans-serif;
  color: #1a1a1a;
  margin: 0;
  font-weight: 400;
}

.career-detail-page .container {
  width: min(1200px, calc(100% - 2rem));
  margin: auto;
}

/* ================= HEADER ================= */
.detail-head {
  padding: 40px 0 0;
}

.title-row {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.title-row h1 {
  font-size: clamp(40px, 5vw, 70px);
}

.meta {
  margin-top: 10px;
  font-size: 14px;
  color: #6b7280;
}

.apply-btn {
  background: #2563eb;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
}

/* ================= BODY ================= */
.detail-body {
  padding-top: 60px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.detail-copy {
  display: grid;
  gap: 60px;
}

.detail-copy section {
  display: grid;
  gap: 20px;
}

.detail-copy h2,
.apply-wrap h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.detail-copy p,
.detail-copy li {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
}

.detail-copy ul {
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

/* ================= FORM ================= */
.apply-wrap {
  position: sticky;
  top: 100px;
}

.career-form {
  border: 2px solid #2563eb;
  border-radius: 16px;
  padding: 30px;
  display: grid;
  gap: 18px;
  background: #fff;
}

.career-form label {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.career-form input {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 0 14px;
  font-size: 14px;
  background: #fff;
}

.career-form input:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* PHONE INPUT */
.phone-input-wrap {
  display: flex;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
}

.prefix {
  padding: 0 10px;
  display: flex;
  align-items: center;
  background: #f9fafb;
  border-right: 1px solid #d1d5db;
  font-size: 13px;
}

.phone-input-wrap input {
  border: none;
  flex: 1;
}

/* UPLOAD BOX */
.upload-box {
  position: relative;
  border: 1px dashed #2563eb;
  height: 90px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.upload-box input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

/* BUTTON */
.career-form .btn {
  background: #2563eb;
  color: #fff;
  border: none;
  height: 48px;
  border-radius: 999px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .apply-wrap {
    position: static;
  }

  .title-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .title-row h1 {
    font-size: 30px;
  }
}