.harvest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.harvest-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.harvest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--accent-color);
}

.harvest-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.harvest-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.harvest-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.farmer-info {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.harvest-feature-text {
  background: var(--bg-color);
  padding: 15px;
  border-left: 4px solid var(--primary-color);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
}

.harvest-date {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.5;
  background: #fdfdfd;
  padding: 10px;
  border-radius: 8px;
  border: 1px dashed #ccc;
  text-align: center;
}

.harvest-content .btn {
  margin-top: auto;
}

.btn-block {
  display: block;
  width: 100%;
}
