/* Category cards */
.category-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Article cards */
article.bb a.color-inherit:hover {
  color: var(--blue, #0074d9);
}

/* YMYL disclosure */
.ymyl-disclosure {
  background: #fff8e1;
  border-left: 4px solid #f9a825;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #5d4037;
  border-radius: 0 4px 4px 0;
}
.ymyl-disclosure p {
  margin: 0;
}

/* Affiliate disclosure */
.affiliate-disclosure {
  font-size: 0.75rem;
  color: #999;
  margin: 2rem 0 0;
  padding-top: 0.5rem;
  border-top: 1px solid #eee;
}

/* Tables */
article table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
article th,
article td {
  border: 1px solid #ddd;
  padding: 0.5rem 0.75rem;
  text-align: left;
}
article th {
  background: #f5f5f5;
  font-weight: 600;
}
article tr:nth-child(even) {
  background: #fafafa;
}

