/* ─── Health Library table ────────────────────────────────────────────────────── */
.cirneco-health-library-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9375rem;
  margin-block-start: 1.5rem;
}

.cirneco-health-library-table th,
.cirneco-health-library-table td {
  padding: 0.625rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--color-surface);
  vertical-align: top;
}

.cirneco-health-library-table th {
  font-weight: 700;
  background-color: var(--color-surface);
  white-space: nowrap;
}

.cirneco-health-library-table td:first-child {
  white-space: nowrap;
  color: #555;
  font-size: 0.875rem;
  padding-inline-end: 1rem;
}

.cirneco-health-library-table a {
  color: var(--color-crimson);
}

.cirneco-health-library-table a:hover,
.cirneco-health-library-table a:focus {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .cirneco-health-library-table thead {
    display: none;
  }

  .cirneco-health-library-table tr {
    display: block;
    margin-block-end: 1rem;
    border-bottom: 2px solid var(--color-surface);
  }

  .cirneco-health-library-table td {
    display: block;
    border-bottom: none;
    padding-inline-start: 0;
  }

  .cirneco-health-library-table td:first-child {
    font-size: 0.8125rem;
    padding-block-end: 0.25rem;
  }
}
