/* =========================
   SERVICE CARD 104 (HR Setup)
   Standard width: 1000px
========================= */
.service-card104 {
  max-width: 1000px;
  margin: 120px auto 90px;
  border-radius: 28px;
  overflow: hidden;
}

/* themes */
html[data-theme="dark"] .service-card104 {
  background: rgba(10, 18, 34, .62);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}


html[data-theme="light"] .service-card104 {
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(17, 24, 39, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

/* video */
.service-card104__media {
  padding: 22px;
  display: flex;
  justify-content: center;
}

.service-card104__media video {
  width: 100%;
  max-width: 960px;
  height: 400px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

/* content */
.service-card104__content {
  padding: 34px 38px 40px;
}

.service-card104__head {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  margin-bottom: 14px;
}

.service-card104__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #60a5fa;
}

html[data-theme="dark"] .service-card104__icon {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
}


html[data-theme="light"] .service-card104__icon {
  background: rgba(37, 99, 235, .10);
  border: 1px solid rgba(37, 99, 235, .18);
}

.service-card104__title {
  margin: 0;
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  min-width: 0;
}

html[data-theme="dark"] .service-card104__title {
  color: #ffffff;
}

.service-card104__text {
  font-size: 15.5px;
  line-height: 1.85;
  margin-top: 8px;
  max-width: 860px;
}

.hr-sect {
  margin-bottom: 32px;
}

.hr-sect__title {
  font-size: 19px;
  margin: 0 0 14px;
  font-weight: 700;
  color: #60a5fa;
}

html[data-theme="light"] .hr-sect__title {
  color: #2563eb;
}

/* list like “— пункт” */
.service-card104__list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.service-card104__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.service-card104__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: bold;
}

html[data-theme="light"] .service-card104__list li::before {
  color: #2563eb;
}

html[data-theme="dark"] .service-card104__text {
  color: rgba(234, 241, 255, .80);
}

.service-card104__text p {
  margin: 0;
}

/* responsive */
@media (max-width: 900px) {
  .service-card104 {
    max-width: 92vw;
    margin-top: 105px;
  }

  .service-card104__media {
    padding: 16px;
  }

  .service-card104__media video {
    max-width: 100%;
    height: 260px;
    border-radius: 18px;
  }

  .service-card104__content {
    padding: 26px 20px 30px;
  }
}

@media (max-width: 560px) {
  .service-card104__head {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
}