.troubleshoot-hero,
.troubleshoot-tool,
.troubleshoot-prevention,
.troubleshoot-supporting-gear {
  margin-bottom: 3rem;
}

.troubleshoot-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
  color: #8b5e3c;
}

.lead {
  font-size: 1.08rem;
}

.troubleshoot-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.troubleshoot-hero-card,
.diagnostic-panel,
.support-card,
.prevention-grid article {
  background: #fffaf5;
  border: 1px solid #ead9ca;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(72, 43, 18, 0.08);
}

.troubleshoot-hero-card {
  padding: 1.25rem;
}

.section-heading {
  margin-bottom: 1.25rem;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.symptom-card {
  width: 100%;
  text-align: left;
  border: 1px solid #d8c1ae;
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.symptom-card:hover,
.symptom-card:focus-visible,
.symptom-card.is-active {
  transform: translateY(-2px);
  border-color: #8b5e3c;
  box-shadow: 0 8px 24px rgba(72, 43, 18, 0.12);
}

.symptom-card h3,
.symptom-card p {
  margin: 0;
}

.symptom-card p {
  margin-top: 0.45rem;
  color: #5b4634;
}

.diagnostic-panel {
  padding: 1.25rem;
}

.diagnostic-result-header {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.severity-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #efe1d2;
  color: #5a3923;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.diagnostic-columns,
.prevention-grid,
.supporting-gear-grid,
.resource-strip {
  display: grid;
  gap: 1rem;
}

.diagnostic-columns,
.resource-strip {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.checklist,
.bullet-list {
  margin: 0;
  padding-left: 1.2rem;
}

.checklist li,
.bullet-list li {
  margin-bottom: 0.55rem;
}

.resource-label {
  margin: 0 0 0.65rem;
  font-weight: 700;
}

.resource-links,
.resource-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.resource-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d8c1ae;
  color: #4b321f;
  text-decoration: none;
}

.resource-chip:hover,
.resource-chip:focus-visible {
  border-color: #8b5e3c;
}

.prevention-grid,
.supporting-gear-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.support-card {
  padding: 1rem;
}

.support-card h3 {
  margin-top: 0;
}

@media (max-width: 800px) {
  .troubleshoot-hero,
  .diagnostic-result-header {
    grid-template-columns: 1fr;
    display: block;
  }

  .severity-pill {
    margin-top: 0.75rem;
  }
}
