/* [project]/src/styles/Hire/HireOnDemand.css [client] (css) */
.hire-on-demand {
  background-color: #000;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 30px 0;
  display: flex;
}

.on-demand-container {
  text-align: center;
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
}

.on-demand-header {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 30px;
}

.on-demand-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 48px;
  font-family: var(--font-heading, "Lexend Deca", sans-serif);
  margin-bottom: 25px;
}

.on-demand-title .text-primary {
  color: var(--color-primary, #54b248);
}

.on-demand-subtitle {
  color: #fff;
  max-width: 1070px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  font-family: var(--font-body, "Inter", sans-serif);
  margin: 0 auto;
}

.on-demand-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 35px 25px;
  width: 100%;
  padding-bottom: 20px;
  display: grid;
}

.role-card-wrapper {
  z-index: 1;
  position: relative;
}

.role-card {
  border: 2.5px dashed var(--color-primary, #54b248);
  z-index: 2;
  cursor: default;
  background-color: #fff;
  border-radius: 10px;
  align-items: center;
  gap: 15px;
  padding: 25px 15px;
  transition: transform .3s;
  display: flex;
  position: relative;
}

.role-card-shadow {
  z-index: 0;
  background-color: #888;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  transition: transform .3s;
  position: absolute;
  top: 8px;
  left: 8px;
}

.role-card-wrapper:hover .role-card {
  transform: translate(-3px, -3px);
}

.role-card-wrapper:hover .role-card-shadow {
  transform: translate(3px, 3px);
}

.role-circle {
  background: linear-gradient(135deg, #e0e0e0 0%, #d1d1d1 100%);
  border-radius: 50%;
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  box-shadow: inset 0 2px 5px #0000001a;
}

.role-name {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-body, "Lexend Deca", sans-serif);
  line-height: 1.2;
}

@media (max-width: 1300px) {
  .on-demand-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .on-demand-title {
    font-size: 34px;
    line-height: 1.25;
  }

  .on-demand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .on-demand-title {
    font-size: 28px;
  }

  .on-demand-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .role-card-shadow {
    top: 6px;
    left: 6px;
  }

  .role-card {
    padding: 20px 15px;
  }

  .role-name {
    font-size: 17px;
  }
}

/*# sourceMappingURL=src_styles_Hire_HireOnDemand_css_65f1660e._.single.css.map*/