@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");
@import url("https://fonts.cdnfonts.com/css/nexa");

:root {
  --ink: #000000;
  --paper: #ffffff;
  --line-soft: rgba(0, 0, 0, 0.1);
  --line-mid: rgba(0, 0, 0, 0.22);
  --muted: rgba(0, 0, 0, 0.55);
  --muted-strong: rgba(0, 0, 0, 0.72);
  --muted-light: rgba(255, 255, 255, 0.55);
  --line-light: rgba(255, 255, 255, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

body.tbps-careers-body {
  padding-top: 0 !important;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ HERO ============ */
.hero {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-mid);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}

.hero-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: #000;
}

.hero-title .ital {
  font-style: italic;
  font-weight: 400;
  opacity: 0.75;
}

.hero-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
  align-items: end;
}

.hero-sub p {
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted-strong);
  max-width: 520px;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hero-meta-item {
  border-top: 1px solid var(--ink);
  padding-top: 14px;
}

.hero-meta-key {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.hero-meta-val {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-meta-val .ital {
  font-style: italic;
  font-weight: 400;
  opacity: 0.7;
}

/* ============ MARQUEE ============ */
.marquee {
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 0;
  border-right: 0;
  border-image: linear-gradient(
      90deg,
      transparent 0%,
      #c0c0c0 15%,
      #333333 50%,
      #c0c0c0 85%,
      transparent 100%
    )
    1;
  box-shadow:
    0 -6px 24px rgba(0, 0, 0, 0.07),
    0 6px 24px rgba(0, 0, 0, 0.1);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #ffffff 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
}

.marquee-track .ital {
  font-style: normal;
  opacity: 0.35;
}

.marquee-track .star {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #888 0%, #111 100%);
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SHARED ============ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #000;
}

.section-title .ital {
  font-style: italic;
  font-weight: 400;
}

.section-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

.tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ============ PRINCIPLES ============ */
.principles {
  padding: 90px 0;
  border-top: 1px solid var(--line-soft);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
}

.principle {
  padding: 40px 36px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
}

.principle:hover {
  background: #fafafa;
}

.principle-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

.principle-body h3 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.principle-body h3 .ital {
  font-style: italic;
  font-weight: 400;
}

.principle-body p {
  font-size: 14px;
  color: var(--muted-strong);
  line-height: 1.6;
}

/* ============ BENEFITS ============ */
.benefits {
  background: #0a0a0a;
  color: var(--paper);
  border-radius: 32px;
  margin: 0 0 0;
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 50%, transparent 100%);
}

.benefits::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(255,255,255,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 0% 0%,    rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.benefits-inner {
  position: relative;
  z-index: 1;
  padding: 80px 60px;
}

.benefits-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}

.benefits-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--paper);
}

.benefits-head h2 .ital {
  font-style: italic;
  font-weight: 400;
  opacity: 0.65;
}

.benefits-head p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.benefit {
  padding: 30px 26px;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s;
}

.benefit:hover {
  background: #111;
}

.benefit > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.benefit-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.benefit-icon {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
}

.benefit h4 {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 4px;
}

.benefit h4 .ital {
  font-style: italic;
  font-weight: 400;
}

.benefit p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ============ TEAM VOICES ============ */
.team {
  padding: 90px 0;
  border-top: 1px solid var(--line-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.team-left h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--ink);
}

.team-left h2 .ital {
  font-style: italic;
  font-weight: 400;
}

.team-left p {
  font-size: 15px;
  color: var(--muted-strong);
  line-height: 1.6;
}

.testimonials {
  display: flex;
  flex-direction: column;
}

.testimonial {
  padding: 32px 0;
  border-top: 1px solid var(--line-soft);
}

.testimonial:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.testimonial-quote {
  font-family: "Fraunces", serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}

.testimonial-quote .ital {
  font-style: italic;
}

.testimonial-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: var(--muted);
}

.testimonial-meta .who {
  font-weight: 500;
  color: var(--ink);
}

/* ============ OPEN ROLES ============ */
.roles {
  padding: 90px 0;
  border-top: 1px solid var(--line-soft);
}

.roles-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.role-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-mid);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  user-select: none;
}

.role-filter-pill:hover {
  border-color: var(--ink);
}

.role-filter-pill.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.role-filter-pill .count {
  opacity: 0.5;
  font-size: 10px;
}

.role-filter-pill.active .count {
  opacity: 0.6;
}

.roles-list {
  display: flex;
  flex-direction: column;
}

.role-item {
  display: flex;
  flex-direction: column;
}

.role-item.hidden {
  display: none;
}

.role-item:last-child .role-jd {
  border-bottom: 1px solid var(--ink);
}

.role {
  display: grid;
  grid-template-columns: 48px 1fr auto auto 32px;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  transition: padding-left 0.3s ease;
}

.role-item:last-child > .role {
  border-bottom: 1px solid var(--ink);
}

.role-item.open > .role {
  border-bottom: none;
}

.role:hover {
  padding-left: 12px;
}

.role-arrow {
  font-size: 18px;
  transition: transform 0.35s ease;
  display: inline-block;
}

.role-item.open .role-arrow {
  transform: rotate(90deg);
}

/* ============ JD ACCORDION PANEL ============ */
.role-jd {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: none;
  /* Reset any inherited link/theme colors */
  color: var(--ink);
}

.role-item.open .role-jd {
  max-height: 2000px;
  border-top: 1px solid var(--line-soft);
}

.role-item:last-child.open .role-jd {
  border-bottom: 1px solid var(--ink);
}

.role-jd-inner {
  padding: 36px 0 44px;
}

.jd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 60px;
  margin-bottom: 36px;
}

.jd-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jd-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted) !important;
  margin-bottom: 4px;
}

.jd-section > p {
  font-size: 14px;
  color: var(--muted-strong) !important;
  line-height: 1.7;
}

.jd-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jd-list li {
  font-size: 14px;
  color: var(--muted-strong) !important;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.jd-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--muted);
}

.jd-details li::before {
  display: none;
}

.jd-details li {
  padding-left: 0;
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.jd-key {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted) !important;
  min-width: 88px;
  flex-shrink: 0;
}

.jd-apply {
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.jd-apply-btn {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 14px 28px;
  font-size: 14px;
  text-decoration: none !important;
}

.jd-apply-btn:hover {
  transform: translateY(-2px);
  color: var(--paper) !important;
}

/* Force-reset any theme link colors inside JD */
.role-jd a,
.role-jd p,
.role-jd li,
.role-jd span {
  color: inherit;
  text-decoration: none;
}

.role-id {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.8px;
}

.role-info h4 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.role-info h4 .ital {
  font-style: italic;
  font-weight: 400;
}

.role-info p {
  font-size: 13px;
  color: var(--muted-strong);
  line-height: 1.5;
  max-width: 480px;
}

.role-cell {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.role-loc {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.8px;
  color: var(--muted);
  white-space: nowrap;
}

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

.role-item.open .role:hover .role-arrow {
  transform: rotate(90deg);
}

.no-roles {
  display: none;
  padding: 48px 0;
  border-top: 1px solid var(--line-soft);
}

.no-roles.show {
  display: block;
}

.no-roles p {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}

.no-roles p .ital {
  font-style: italic;
}

.no-roles small {
  font-size: 13px;
  color: var(--muted);
  display: block;
}

/* ============ PROCESS ============ */
.process {
  padding: 90px 0;
  border-top: 1px solid var(--line-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.process-left h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--ink);
}

.process-left h2 .ital {
  font-style: italic;
  font-weight: 400;
}

.process-left p {
  font-size: 15px;
  color: var(--muted-strong);
  line-height: 1.6;
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.process-step {
  border-top: 1px solid var(--ink);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: padding-left 0.3s ease;
  cursor: default;
}

.process-step:last-child {
  border-bottom: 1px solid var(--ink);
}

.process-step:hover {
  padding-left: 10px;
}

.process-step-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.8px;
  color: var(--muted);
}

.process-step h4 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.process-step h4 .ital {
  font-style: italic;
  font-weight: 400;
}

.process-step p {
  font-size: 13px;
  color: var(--muted-strong);
  line-height: 1.5;
}

.dur {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.8px;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============ CTA ============ */
.cta {
  background: #0a0a0a;
  color: var(--paper);
  border-radius: 32px;
  padding: 80px 60px;
  margin: 0 0 100px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 100% 100%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 35%, transparent 65%),
    radial-gradient(ellipse 45% 60% at 0% 0%,    rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 35%, transparent 65%);
  pointer-events: none;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}

.cta h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--paper);
}

.cta h2 .ital {
  font-style: italic;
  font-weight: 400;
  opacity: 0.78;
}

.cta h2 u {
  text-decoration: none;
  border-bottom: 4px solid var(--paper);
  padding-bottom: 4px;
}

.cta-side p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.cta-btn .arr {
  transition: transform 0.2s;
}

.cta-btn:hover .arr {
  transform: translateX(4px);
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .container { padding: 0 20px; }

  .hero { padding: 90px 0 40px; }
  .hero-sub { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { grid-template-columns: 1fr 1fr; }

  .principles-grid { grid-template-columns: 1fr; }

  .benefits-inner { padding: 40px 24px; }
  .benefits-head { grid-template-columns: 1fr; gap: 20px; }
  .benefits-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; gap: 40px; }

  .role {
    grid-template-columns: 32px 1fr 24px;
    gap: 16px;
  }

  .jd-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .role-jd-inner {
    padding: 28px 0 36px;
  }

  .jd-apply-btn {
    width: 100%;
    justify-content: center;
  }

  .role-cell,
  .role-loc { display: none; }

  .process-grid { grid-template-columns: 1fr; gap: 40px; }

  .process-step {
    grid-template-columns: 40px 1fr auto;
    gap: 16px;
  }

  .cta { padding: 50px 28px; }
  .cta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .marquee-track {
    animation-duration: 15s;
  }

  .hero {
    padding: 96px 0 32px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .principles-grid {
    gap: 20px;
  }

  .benefits-inner {
    padding: 32px 16px;
  }

  .benefits-grid {
    gap: 20px;
  }

  .process-step {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .process-step-num {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 40px 20px;
  }

  .role {
    grid-template-columns: 28px 1fr 20px;
    gap: 12px;
  }

  .jd-grid {
    gap: 24px;
  }

  .jd-section > p,
  .jd-list li {
    font-size: 13px;
  }

  .jd-key {
    min-width: 72px;
  }

  .jd-apply-btn {
    font-size: 13px;
    padding: 12px 20px;
  }
}
