/* ══════════════════════════════════════════════════════════
   Manor Realty — Join the Team Page
   Requires: manor.css (shared design system)
   ══════════════════════════════════════════════════════════ */

/* Hero — plain dark, no photo */
.mn-hdr--join {
  min-height: 44vh;
}

/* ══════════════════════════════════════════════════════════
   CAREER APPLICATION FORM SECTION
   ══════════════════════════════════════════════════════════ */
.mn-career {
  background: var(--mn-dark);
  padding: var(--gap-section) 0;
}

.mn-career__inner {
  max-width: 800px;
  margin: 0 auto;
}

.mn-career__head {
  text-align: center;
  margin-bottom: 3rem;
}

.mn-career__sub {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--mn-muted);
  max-width: 560px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   TEAM HEAD — two-col with title + link
   ══════════════════════════════════════════════════════════ */
.mn-team__head-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--mn-border);
}

.mn-team__head-link {
  font-family: var(--ff-display);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mn-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--mn-accent);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.mn-team__head-link:hover { opacity: 0.75; }
