/* 人力资源页面 */

.hr-section {
  padding: 48px 0 80px;
  background: var(--white);
}

.hr-heading {
  font-size: 24px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 32px;
}

.hr-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hr-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.hr-icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hr-icon {
  width: 24px;
  height: 24px;
}

.hr-item-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 12px;
}

.hr-item-text .hr-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a5565;
}

.hr-item-text .hr-content ul {
  margin: 8px 0 16px;
  padding-left: 20px;
}

.hr-item-text .hr-content p {
  margin: 0 0 8px;
}

@media (max-width: 768px) {
  .hr-item {
    flex-direction: column;
  }
}
