@charset "UTF-8";
/* CSS Document */

/* Page centering */
.hire-wrap{
  display: flex;
  justify-content: center;
  text-decoration: none;
}

/* Banner */
.hire-banner{
  background: #0b1f3a; /* navy blue */
  color: #ffffff;
  margin-top: 3px;
  padding: 10px 10px;
  border-radius: 16px;
  text-align: center;
  min-width: 400px;
  max-width: 520px;
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.25);
  transition: transform .15s ease, box-shadow .15s ease;
}

.hire-banner:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.35);
}

/* Red badge */
.hire-badge{
  display: inline-block;
  background: #dc2626; /* red */
  color: #ffffff;
  font: 700 12px/1 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Main text */
.hire-main{
  display: block;
  font: 600 18px/1.2 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

/* CTA */
.hire-cta{
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
}
.hire-banner{
  cursor: pointer;
}
