/* Tausiyah Page Cards */
.tausiyah-card {
  background: var(--blue-100);
  padding: 18px 22px;
  margin: 16px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 6px solid var(--blue-900);
  transition: transform .15s ease, box-shadow .15s ease;
}
.tausiyah-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,.1);
}
.tausiyah-date {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}
.tausiyah-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-900);
}
.tausiyah-title a {
  color: inherit;
  text-decoration: none;
}
.tausiyah-title a:hover {
  text-decoration: underline;
}
.no-posts {
  text-align: center;
  color: var(--muted);
  margin-top: 30px;
}

@media (max-width: 600px) {
  .tausiyah-card {
    padding: 14px 16px;
  }
  .tausiyah-title {
    font-size: 18px;
  }
}