/* Outsourcea Talent Header */
.osth-section {
  --osth-bg: #F7F7F6;
  --osth-accent: #00A651;
  --osth-text: #111111;
  --osth-muted: #3D3D4D;
  --osth-width: 1320px;
  width: 100%;
  background: var(--osth-bg);
  color: var(--osth-text);
  font-family: inherit;
  padding: 64px 30px 42px;
  box-sizing: border-box;
}
.osth-section *, .osth-section *::before, .osth-section *::after { box-sizing: border-box; }
.osth-wrap {
  max-width: var(--osth-width);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(320px, 42%);
  gap: 56px;
  align-items: start;
}
.osth-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--osth-muted);
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  margin: 0 0 14px;
}
.osth-label span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--osth-accent);
  display: inline-block;
}
.osth-left h2 {
  max-width: 760px;
  margin: 0 !important;
  color: var(--osth-text);
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -2.8px;
  font-weight: 400;
}
.osth-right p {
  max-width: 490px;
  margin: 0 0 24px !important;
  color: var(--osth-muted);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 400;
}
.osth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--osth-accent);
  color: #ffffff !important;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform .2s ease, background .2s ease;
}
.osth-button:hover { transform: translateY(-2px); background: #009747; }
@media (max-width: 1024px) {
  .osth-section { padding: 52px 26px 34px; }
  .osth-wrap { grid-template-columns: 1fr; gap: 24px; }
  .osth-left h2, .osth-right p { max-width: 100%; }
}
@media (max-width: 767px) {
  .osth-section { padding: 42px 20px 28px; }
  .osth-left h2 { font-size: 40px; letter-spacing: -1.6px; }
  .osth-right p { font-size: 15px; }
}
