/* Activities Section */
.activities-section {
  background-color: #f7f9fb;
}

.section-title {
  font-size: 2rem;
  letter-spacing: 0.5px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.activity-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.activity-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.activity-body {
  padding: 1.5rem;
}

.activity-title {
  margin-bottom: 0.75rem;
}

.activity-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.activity-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.activity-link:hover {
  color: #2a3693;
}

/* Brand Colors */
.text-brand-deep {
  color: #2a3693 !important;
}
.text-brand-sky {
  color: #00aeef !important;
}
