/* ===========================================
   ACTIVITIES PAGE STYLES
   =========================================== */

/* Activities Wrapper */
.activities-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Activity Card */
.activity-card {
  background-color: #ffffff;
  border-left: 6px solid var(--primary-green);
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.activity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(76, 175, 80, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.activity-card:hover::before {
  left: 100%;
}

.activity-card:hover {
  transform: translateY(-15px) rotateX(0deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2e7d32;
}

.activity-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}
