/* Activity Card Styles Template (based on basketball.html) */
.activity-card {
  max-width: 480px;
  margin: 60px auto;
  padding: 36px 28px 32px 28px;
  background: #f9fafb;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(37,99,235,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.activity-img {
  width: 100%;
  max-width: 340px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 28px;
  box-shadow: 0 1px 8px rgba(37,99,235,0.04);
}
.activity-title {
  color: #38b2ac;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.activity-desc {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 22px;
  text-align: center;
  line-height: 1.6;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.activity-tag {
  display: inline-block;
  background: #e6f7ee;
  color: #38b2ac;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 1rem;
  margin-bottom: 18px;
  width: fit-content;
  min-width: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.activity-link {
  color: #38b2ac;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  margin-top: 8px;
  font-family: 'Segoe UI', Arial, sans-serif;
  transition: color 0.18s;
}
.activity-link:hover {
  color: #2563eb;
  text-decoration: underline;
}
