/* Start custom CSS */```css
/* Tecflow blog tabellen en diagnosekaarten */

.tecflow-blog {
  line-height: 1.65;
}

.tecflow-blog table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.55;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.tecflow-blog th,
.tecflow-blog td {
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid #e5e7eb;
}

.tecflow-blog th {
  background: #f3f6f9;
  font-weight: 700;
  text-align: left;
}

.tecflow-blog tr:last-child td {
  border-bottom: 0;
}

.tecflow-blog td strong {
  display: block;
  margin-bottom: 4px;
}

/* Grote tabellen vervangen door kaarten */

.tf-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 28px 0;
}

.tf-card {
  border: 1px solid #e1e5ea;
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.tf-card h4 {
  margin: 0 0 12px 0;
  font-size: 20px;
  line-height: 1.3;
}

.tf-card-section {
  margin-top: 14px;
}

.tf-card-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #4b5563;
  margin-bottom: 4px;
}

.tf-card p {
  margin: 0;
}

.tf-card a {
  font-weight: 700;
}

.tf-product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tf-product-links a {
  display: inline-block;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f3f6f9;
  border: 1px solid #d7dde5;
  text-decoration: none;
  font-size: 14px;
}

.tf-product-links a:hover {
  background: #111;
  color: #fff;
}

.tf-warning {
  border-left: 4px solid #111;
  background: #f7f7f7;
  padding: 14px 16px;
  border-radius: 10px;
  margin-top: 16px;
}

/* Compactere symptoomkaarten */

.tf-symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

@media (max-width: 900px) {
  .tf-symptom-grid {
    grid-template-columns: 1fr;
  }

  .tecflow-blog table {
    font-size: 14px;
  }

  .tecflow-blog th,
  .tecflow-blog td {
    padding: 12px;
  }
}

@media (max-width: 600px) {
  .tf-card {
    padding: 16px;
  }

  .tf-card h4 {
    font-size: 18px;
  }

  .tf-product-links a {
    width: 100%;
    text-align: center;
  }
}
```/* End custom CSS */