/* hpc- prefix: column-specific styles, isolated from site CSS */

/* ===== Point list (stacked cards) ===== */
.hpc-point-list {
  margin: 1.5em 0;
}
.hpc-point-item {
  border: 1px solid #ddd;
  border-left: 4px solid #a52f2f;
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin-bottom: 14px;
  background: #fdfdfd;
}
.hpc-point-item h3 {
  margin: 0 0 8px;
  font-size: 1.05em;
  color: #a52f2f;
}
.hpc-point-item p {
  margin: 0;
}

/* ===== Check list ===== */
.hpc-check-list {
  list-style: none;
  padding: 0;
  margin: 1.5em 0;
}
.hpc-check-list > li {
  position: relative;
  padding: 10px 12px 10px 34px;
  border-bottom: 1px dashed #ddd;
}
.hpc-check-list > li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 1.05em;
  width: 12px;
  height: 6px;
  border-left: 2px solid #a52f2f;
  border-bottom: 2px solid #a52f2f;
  transform: rotate(-45deg);
}

/* ===== Data table ===== */
.hpc-data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95em;
}
.hpc-data-table th,
.hpc-data-table td {
  border: 1px solid #ddd;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.hpc-data-table.hpc-size thead th {
  background: #a52f2f;
  color: #fff;
}
.hpc-data-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

/* ===== Flow list ===== */
.hpc-flow-list {
  list-style: none;
  padding: 0;
  margin: 1.5em 0;
  counter-reset: hpc-flow;
}
.hpc-flow-list > li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  counter-increment: hpc-flow;
}
.hpc-flow-list > li::before {
  content: counter(hpc-flow);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: #a52f2f;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9em;
  flex-shrink: 0;
  margin-top: 2px;
}
.hpc-flow-list .hpc-flow-title {
  font-weight: bold;
  margin-bottom: 4px;
}
.hpc-flow-list p {
  margin: 0;
  font-size: 0.95em;
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
  .hpc-point-item {
    padding: 14px 16px;
  }
  .hpc-data-table {
    font-size: 0.85em;
  }
  .hpc-data-table th,
  .hpc-data-table td {
    padding: 8px 10px;
  }
}
