.plantation-section {
  margin: 4rem 0;
}

.plantation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.plantation-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.plantation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.plantation-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.plantation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.plantation-card:hover .plantation-image img {
  transform: scale(1.05);
}

.plantation-info {
  padding: 1.5rem;
  text-align: center;
}

.plantation-title {
  font-weight: 600;
  color: var(--marian-blue);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.plantation-date {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .plantation-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }

  .plantation-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .plantation-grid {
    grid-template-columns: 1fr;
  }

  .plantation-image {
    height: 180px;
  }

  .plantation-info {
    padding: 1rem;
  }
}
