/* ==========================================================================
   HAIER
   Diagrams drawn from real elements. The range architecture, the per-tier
   display specifications and the unreleased product UI are not published
   here; the reasoning is, which is the part that transfers.
   ========================================================================== */


/* --------------------------------------------------------------------------
   THE TRANSFER
   As the display gives up capability the physical controls take the load
   back. Two bands of a fixed total, drawn three times.
   -------------------------------------------------------------------------- */

.hr-transfer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;

  list-style: none;
  padding: 0;
  margin: 56px 0 0;
}

.hr-transfer li {
  padding: 26px 24px 24px;

  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--ring-figure);
}

.hr-hw {
  display: block;
  margin-bottom: 18px;

  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-text);
}

/* the two bands */
.hr-bar {
  display: flex;
  height: 30px;

  border-radius: 6px;
  overflow: hidden;
}

.hr-bar span {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hr-digital  { background: var(--pantone-ice-melt);    color: #3d5a72; }
.hr-physical { background: var(--pantone-peach-dust);  color: #7a5642; }

.hr-transfer p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-secondary);
}

.hr-key {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;

  list-style: none;
  padding: 0;
  margin: 20px 0 0;

  font-size: 13px;
  color: var(--color-secondary);
}

.hr-key li { display: flex; align-items: center; gap: 8px; }

.hr-key i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}


/* --------------------------------------------------------------------------
   SPECIFICATION WORK
   What the internship actually consisted of, described as craft rather than
   shown as product.
   -------------------------------------------------------------------------- */

.hr-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 56px;

  list-style: none;
  padding: 0;
  margin: 48px 0 0;
}

.hr-specs li {
  padding: 22px 0;
  border-top: 1px solid var(--color-line);
}

.hr-specs h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 6px;
}

.hr-specs p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-secondary);
  margin: 0;
}


/* --------------------------------------------------------------------------
   CONCLUSION
   -------------------------------------------------------------------------- */

.hr-lessons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 56px;

  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  counter-reset: lesson;
}

.hr-lessons li {
  counter-increment: lesson;
  position: relative;
  padding-left: 44px;
}

.hr-lessons li::before {
  content: counter(lesson, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;

  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: var(--color-tertiary);
}

.hr-lessons h3 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 8px;
}

.hr-lessons p {
  margin: 0;
  color: var(--color-secondary);
}


@media (max-width: 860px) {

  .hr-transfer,
  .hr-specs,
  .hr-lessons { grid-template-columns: 1fr; }

  .hr-transfer { gap: 16px; }
  .hr-lessons { gap: 26px; }
}
