/* operational-continuity.css — page-specific overrides; base from workflow-page.css */

.oc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8rem 0;
  font-size: 0.88rem;
}

.oc-table th {
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.oc-table th:first-child {
  border-radius: var(--r) 0 0 0;
}

.oc-table th:last-child {
  border-radius: 0 var(--r) 0 0;
}

.oc-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink2);
  line-height: 1.55;
  vertical-align: top;
}

.oc-table tr:last-child td {
  border-bottom: none;
}

.oc-table td:first-child {
  font-weight: 500;
  color: var(--ink);
  width: 32%;
}

.oc-table tr:nth-child(even) td {
  background: var(--s2);
}

.oc-record-strip {
  background: var(--navy);
  border-radius: var(--rl);
  padding: 2rem 2.4rem;
  margin: 2rem 0;
}

.oc-record-strip-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--iq-accent-300, #00BDD6);
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.oc-record-strip-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.oc-record-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.oc-record-item {
  border-left: 2px solid rgba(0, 189, 214, 0.4);
  padding-left: 0.9rem;
}

.oc-record-item-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.3rem;
}

.oc-record-item-val {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
