/* style/latest-activities.css */

/* Base styles for the page */
.page-latest-activities {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Matches body background from shared.css */
}

/* Color contrast specific classes */
.page-latest-activities__dark-bg {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff;
}

.page-latest-activities__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Utility container for consistent spacing */
.page-latest-activities__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-latest-activities__container--center {
  text-align: center;
}

/* Hero Section */
.page-latest-activities__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  padding-bottom: 60px;
  text-align: center;
  background-color: #26A9E0;
  color: #ffffff;
  overflow: hidden;
}

.page-latest-activities__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-latest-activities__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-latest-activities__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons */
.page-latest-activities__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}