.vrikshah-tabs {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.vrikshah-tabs li {
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 5px;
  background: #eee;
}
.vrikshah-tabs li.active {
  background: #c62828;
  color: #fff;
}

.vrikshah-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
  gap: 20px;
}
.vrikshah-card {
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform .2s ease;
  display: block;
}
.vrikshah-card:hover {
  transform: translateY(-5px);
}
.vrikshah-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
/* Category ribbon now below image */
.vrikshah-cat-strip {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  box-sizing: border-box;
  color: #fff;
  font-size: 13px;
}
/* Default colors */
.vrikshah-cat-strip.completed { background: #2e7d32; }
.vrikshah-cat-strip.ongoing { background: #ff9800; }
.vrikshah-cat-strip.upcoming { background: #607d8b; }

.vrikshah-meta {
  padding: 15px;
}
.vrikshah-meta h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  line-height: 1.2;
}
.vrikshah-meta p {
  margin: 0;
  color: #555;
}
