/* MKT1 Job Board — Brand Styles
   Values pulled from live jobs.mkt1.co Webflow site */

:root {
  --yellow: #FFBA10;
  --pink: #EF88FF;
  --blue: #70A0FF;
  --green: #59CD90;
  --red: #F66F5D;
  --cream: #E7E7DA;
  --black: #1E1919;
  --dark: #262626;
  --mid: #4A4A4A;
  --light: #8A8A8A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Schibsted Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* === PAGE WRAPPER — dark bg for the main content area === */
.page-dark {
  background: var(--black);
  color: var(--cream);
}

/* === NAV (cream background) === */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--cream);
}

.nav-wrapper {
  background: var(--cream);
}

.logo-img {
  height: 44px;
  width: auto;
}

.nav-btn {
  border: 3px solid var(--black);
  border-radius: 40px;
  padding: 16px 24px;
  font-family: 'Inconsolata', monospace;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--black);
  background: var(--pink);
  transition: opacity 0.2s, transform 0.2s;
}

.nav-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink);
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
}

/* === HERO (sits on cream bg) === */
.hero {
  text-align: center;
  padding: 100px 40px 56px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  color: var(--cream);
  text-transform: uppercase;
}

.hero-sub {
  margin-top: 16px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  line-height: 28px;
}

.hero-link {
  color: var(--pink);
  text-decoration: underline;
}

/* === FILTER BAR === */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0 20px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  flex-wrap: nowrap;
}

.filter-search {
  flex: 1 1 140px;
  min-width: 100px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--black);
  font-family: inherit;
  font-size: 13px;
  outline: none;
}

.filter-search::placeholder { color: var(--light); }
.filter-search:focus { border-color: var(--yellow); }

.filter-dropdowns {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-count {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--pink);
  margin-left: auto;
  white-space: nowrap;
  min-width: 76px;
  text-align: right;
}

/* Custom dropdowns */
.dropdown { position: relative; }

.dropdown-btn {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--black);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  justify-content: space-between;
}

.dropdown-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.dropdown-btn:hover { border-color: var(--mid); }
.dropdown-btn.active { background: var(--pink); color: var(--black); border-color: var(--pink); }

.dropdown-arrow { font-size: 11px; color: var(--black); transition: transform 0.15s; flex-shrink: 0; }
.dropdown.open .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  padding: 6px 0;
  min-width: 220px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 100;
}

.dropdown.open .dropdown-menu { display: block; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 13px;
  color: var(--black);
  cursor: pointer;
}

.dropdown-item:hover { background: #f5f5f0; }
.dropdown-item.selected { color: var(--blue); font-weight: 600; }
.dropdown-item::before { content: ''; display: inline-block; width: 16px; margin-right: 8px; }
.dropdown-item.selected::before { content: '➜'; }

/* Mobile filter toggle — hidden on desktop */
.filter-toggle {
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--black);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.filter-toggle:hover { border-color: var(--mid); }
.filter-toggle.active { background: var(--pink); color: var(--black); border-color: var(--pink); }

.filter-clear {
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 0;
  color: transparent;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  cursor: default;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.filter-clear.visible {
  border-color: var(--mid);
  color: var(--mid);
  cursor: pointer;
}

.filter-clear.visible:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(246,111,93,0.15);
}

.filter-clear.visible:active {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

/* === MAIN CONTENT AREA (dark bg) === */
.main-grid {
  display: flex;
  gap: 30px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 0;
  align-items: flex-start;
}

/* === JOB LIST === */
.job-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
}

.job-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.7fr 1.1fr;
  gap: 16px;
  align-items: start;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  min-height: 140px;
}

.job-card:hover {
  box-shadow: inset 0 0 0 2px var(--yellow);
  transform: translateY(-2px);
}

.job-card .company-name {
  font-weight: 600;
  font-size: 18px;
  color: var(--blue);
  text-transform: uppercase;
}

.job-card .job-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  line-height: 1.3;
  margin-top: 2px;
}

.featured-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
  margin-top: 10px;
}

.featured-icon {
  width: 14px;
  height: 14px;
}

.job-card-col { display: flex; flex-direction: column; gap: 2px; }
.job-card-company { display: flex; flex-direction: column; }

.type-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--mid);
  margin-top: 4px;
}

.job-card .meta-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.job-card .meta-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
  margin-top: 2px;
}

.job-card-actions {
  align-self: center;
}

.apply-link {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  background: transparent;
  border: 2px solid var(--black);
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.apply-link { transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.apply-link:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }

/* === CTA SIDEBAR === */
.cta-sidebar {
  width: 306px;
  flex-shrink: 0;
  align-self: stretch;
}

.cta-sidebar .cta-card {
  margin-bottom: 24px;
}

.cta-sidebar .cta-card:last-child {
  position: sticky;
  top: 24px;
  margin-bottom: 0;
}

.cta-card {
  border-radius: 20px;
  padding: 40px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-yellow { background: var(--yellow); }
.cta-pink { background: var(--pink); }

.cta-icon-img { width: 48px; height: 48px; }
.cta-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: var(--black);
  text-transform: uppercase;
}

.cta-text { font-size: 18px; font-weight: 500; color: var(--black); line-height: 28px; }
.cta-text-small { font-size: 16px; font-weight: 500; color: var(--black); line-height: 24px; }
.cta-link { text-decoration: underline; font-weight: 600; }

.cta-btn {
  display: block;
  text-align: center;
  padding: 16px 24px;
  border-radius: 40px;
  border: 3px solid var(--black);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--black);
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.cta-btn:hover { background: var(--blue); transform: translateY(-2px); }
.cta-btn { transition: opacity 0.2s, transform 0.2s, background 0.2s; }
.cta-btn-blue { background: var(--blue); }
.cta-btn-yellow { background: var(--yellow); }

/* === FOOTER === */
.footer-divider { height: 3px; background: var(--yellow); }

.footer {
  display: flex;
  gap: 120px;
  padding: 60px 40px 32px;
  max-width: 1160px;
  margin: 0 auto;
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col:nth-child(1) .footer-heading { color: var(--blue); }
.footer-col:nth-child(2) .footer-heading { color: var(--yellow); }
.footer-col:nth-child(3) .footer-heading { color: var(--pink); }

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.footer-link:hover { color: var(--yellow); }

.copyright {
  padding: 16px 40px 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  max-width: 1160px;
  margin: 0 auto;
}

/* === JOB DETAIL PAGE === */
.breadcrumb { padding: 14px 40px; }
.breadcrumb a { font-weight: 700; font-size: 13px; color: var(--yellow); }
.breadcrumb a:hover { text-decoration: underline; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  padding: 32px 40px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

.detail-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px;
  color: var(--black);
}

.detail-card .company-name { font-weight: 700; font-size: 16px; color: var(--blue); text-transform: uppercase; }
.detail-card .job-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--black);
  margin-top: 8px;
  line-height: 1.15;
}

.detail-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 20px; }
.detail-meta-item { display: flex; flex-direction: column; gap: 4px; }
.detail-meta-item .meta-label { font-size: 11px; font-weight: 700; color: var(--pink); letter-spacing: 0.04em; text-transform: uppercase; }
.detail-meta-item .meta-value { font-size: 13px; font-weight: 500; color: var(--black); }

.detail-relationship { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.detail-divider { height: 1px; background: var(--mid); opacity: 0.3; margin: 24px 0; }
.detail-section-title { font-size: 13px; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.detail-section-body { font-size: 14px; color: var(--black); line-height: 1.6; white-space: pre-wrap; }

.apply-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 16px 32px;
  border-radius: 40px;
  border: 3px solid var(--black);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-top: 24px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.apply-btn { transition: opacity 0.2s, transform 0.2s; }
.apply-btn:hover { opacity: 0.85; transform: translateY(-2px); }

.sidebar-stack { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { border-radius: 20px; padding: 28px; }
.sidebar-card-cream { background: var(--cream); color: var(--black); }
.sidebar-card-dark { background: var(--dark); color: var(--cream); }
.sidebar-card-title { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.sidebar-card-cream .sidebar-card-title { color: var(--pink); }
.sidebar-card-dark .sidebar-card-title { color: var(--yellow); }
.sidebar-row { display: flex; justify-content: space-between; padding: 6px 0; }
.sidebar-row-label { font-size: 12px; font-weight: 500; }
.sidebar-card-cream .sidebar-row-label { color: var(--mid); }
.sidebar-card-dark .sidebar-row-label { color: var(--light); }
.sidebar-row-value { font-size: 12px; font-weight: 600; }

/* === SUBMIT FORM === */
.form-header { text-align: center; padding: 64px 40px 40px; }
.form-header h1 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 56px; text-transform: uppercase; color: var(--cream); }
.form-header p { margin-top: 16px; font-size: 18px; color: var(--cream); max-width: 560px; margin-left: auto; margin-right: auto; }

.form-card { background: transparent; max-width: 800px; margin: 0 auto 120px; padding: 0 40px; color: var(--cream); }
.form-hidden { display: none; }

/* Auth gate — inline, no box */
.auth-gate-inline { max-width: 800px; margin: 0 auto 120px; padding: 0 40px; }
.auth-gate-row { display: flex; gap: 12px; }
.auth-gate-row .form-input { flex: 1; }
.auth-gate-btn {
  background: var(--yellow); color: var(--black); border: 3px solid var(--black); border-radius: 40px;
  padding: 14px 28px; font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 18px;
  cursor: pointer; text-transform: uppercase; white-space: nowrap; transition: opacity 0.2s;
}
.auth-gate-btn:hover { opacity: 0.85; }
.auth-gate-btn:disabled { opacity: 0.6; cursor: default; }
.auth-gate-error { color: var(--red); font-size: 15px; font-weight: 500; margin-top: 12px; min-height: 20px; }
.auth-gate-hint { font-size: 15px; color: var(--cream); margin-top: 16px; text-align: center; }
.auth-gate-link { color: var(--pink); font-weight: 600; text-decoration: underline; }

/* Form rows: label left, field right */
.form-row { display: grid; grid-template-columns: 200px 1fr; gap: 24px; align-items: center; margin-bottom: 32px; }
.form-label { display: block; font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 500; color: var(--pink); letter-spacing: 0.01em; text-transform: uppercase; }
.form-input { width: 100%; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 11px 14px; font-family: inherit; font-size: 15px; color: var(--black); background: #fff; outline: none; }
.form-input:focus { border-color: var(--pink); box-shadow: 0 0 0 2px rgba(239,136,255,0.2); }
.form-input::placeholder { color: var(--light); }

.form-select { width: 100%; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 10px 14px; font-family: inherit; font-size: 14px; color: var(--black); background: #fff; outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A4A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }
.form-select:focus { border-color: var(--pink); box-shadow: 0 0 0 2px rgba(239,136,255,0.2); }

.form-actions { display: flex; justify-content: center; margin-top: 40px; }
.form-dropdown { position: relative; }
.form-dropdown .dropdown-btn { width: 100%; max-width: none; min-width: 0; justify-content: space-between; text-align: left; font-size: 15px; padding: 11px 14px; }
.form-dropdown .dropdown-btn.active { background: #fff; color: var(--black); border-color: #ddd; }
.form-dropdown .dropdown-menu { min-width: 100%; }
.form-dropdown .dropdown-arrow { color: var(--black); }
.form-dropdown .dropdown-item::before { display: none; }
.form-dropdown .dropdown-item.selected { color: var(--blue); font-weight: 600; }
.field-wrap { display: flex; flex-direction: column; }
.form-error { display: none; color: #ff6b6b; font-size: 13px; font-family: 'Schibsted Grotesk', sans-serif; margin: 4px 0 0; }
.form-hint { font-size: 13px; color: rgba(255,255,255,0.55); font-family: 'Schibsted Grotesk', sans-serif; margin: 0 0 8px; line-height: 1.4; }

.form-submit {
  background: var(--blue); color: var(--black); border: 3px solid var(--black); border-radius: 40px;
  padding: 16px 40px; font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 20px;
  cursor: pointer; text-transform: uppercase; transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--yellow); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: default; transform: none; }

/* Success state */
.form-success { text-align: center; padding: 48px 0; }
.form-success h2 { font-family: 'Oswald', sans-serif; font-size: 28px; color: var(--cream); margin-bottom: 12px; }
.form-success p { color: var(--cream); opacity: 0.7; margin-bottom: 20px; }
.form-success a { color: var(--pink); font-weight: 700; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .main-grid, .footer, .hero, .nav { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 1100px) {
  .main-grid { flex-direction: column; }
  .cta-sidebar { width: 100%; flex-direction: row; position: static; }
  .cta-card { flex: 1; }
  .detail-grid { grid-template-columns: 1fr; }

  /* Filter bar: single row — search, Filters btn, clear, count */
  .filter-bar { padding: 12px 0; flex-wrap: nowrap; position: relative; max-width: 100%; }
  .filter-search { flex: 1 1 0; min-width: 0; }
  .filter-count { margin-left: auto; flex-shrink: 0; }
  .filter-toggle { display: block; }
  .filter-dropdowns {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 12px 0;
    flex-direction: column;
    gap: 8px;
    z-index: 60;
    align-items: stretch;
  }
  .filter-dropdowns.mobile-open { display: flex; }
  .dropdown { width: 100%; }
  .dropdown-btn { width: 100%; min-width: 0; max-width: none; }
  .dropdown-menu { min-width: 100%; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .nav { padding: 16px 20px; justify-content: center; }
  .nav-right { display: none; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 16px; line-height: 24px; }
  .hero { padding: 32px 20px; }
  .main-grid { padding: 16px 20px; overflow: hidden; }

  /* Job cards: title full-width top, meta columns in row below */
  .job-card {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    padding: 24px;
    min-height: auto;
  }
  .job-card-company { grid-column: 1 / -1; }
  .job-card .featured-pill { margin-top: 6px; }
  .job-card-actions { display: none; }

  .cta-sidebar { flex-direction: column; }
  .footer { flex-direction: column; gap: 24px; padding: 32px 20px; }
  .detail-grid { padding: 16px 20px; }
  .detail-card { padding: 24px; }
  .form-card { padding: 0 20px; }
  .auth-gate-inline { padding: 0 20px; }
  .auth-gate-row { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; gap: 8px; }
  .form-header h1 { font-size: 32px; }
  .form-header { padding: 40px 20px 32px; }
}

@media (max-width: 480px) {
  .form-header h1 { font-size: 28px; }
}

.no-results { text-align: center; padding: 48px 24px; color: var(--light); font-size: 15px; }

/* === JOB DETAIL OVERLAY === */
.overlay-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
}

.overlay-backdrop.open { display: block; }

.overlay-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 560px;
  max-width: 90vw;
  height: 100vh;
  background: var(--cream);
  z-index: 201;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.overlay-panel.open {
  display: block;
  transform: translateX(0);
}

.overlay-close {
  position: sticky;
  top: 0;
  float: right;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--mid);
  cursor: pointer;
  padding: 20px 24px;
  z-index: 1;
}

.overlay-close:hover { color: var(--black); }

.overlay-body {
  padding: 24px 40px 60px;
  color: var(--black);
}

.overlay-company {
  font-size: 18px;
  font-weight: 400;
  color: var(--blue);
  text-transform: uppercase;
}

.overlay-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--black);
  margin-top: 8px;
  line-height: 1.15;
}

.overlay-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.overlay-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
}

.overlay-meta-item .meta-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.overlay-meta-item .meta-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.overlay-divider {
  height: 1px;
  background: var(--mid);
  opacity: 0.2;
  margin: 24px 0;
}

.overlay-company-section {
  margin-top: 8px;
}

.overlay-company-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.overlay-company-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}

.overlay-company-row-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
}

.overlay-company-row-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

.overlay-company-row-value a {
  color: var(--blue);
  text-decoration: underline;
}

.overlay-apply {
  display: block;
  text-align: center;
  background: var(--yellow);
  color: var(--black);
  padding: 16px 32px;
  border-radius: 40px;
  border: 3px solid var(--black);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-top: 28px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.overlay-apply:hover { opacity: 0.85; }
