/* Minimal shared utilities for diagnosis pages. Page-specific themes stay local. */
.tc-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tc-disclaimer {
  margin: 18px 0 0;
  color: var(--tc-muted, #667085);
  font-size: 0.86rem;
  line-height: 1.8;
}

.tc-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.tc-recommendations {
  margin: 32px auto;
}

.tc-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.tc-recommendation-card {
  display: block;
  border-radius: 18px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
}

.tc-recommendation-card img {
  display: block;
  width: 100%;
  height: auto;
}

.tc-recommendation-card span {
  display: block;
  padding: 10px 12px 12px;
  font-weight: 700;
}

.tc-recommendation-card small {
  display: block;
  padding: 0 12px 12px;
  color: var(--tc-muted, #667085);
  font-size: 0.78rem;
  line-height: 1.6;
}
