/* ========================================
   GRID - CONTAINER AND LAYOUT GRIDS
   This file contains all grid and container layout styles including:
   - Universal container styles
   - Features container grid layout
   - Content section layouts
   - Grid-based layouts for consistent spacing
   ======================================== */

/* ==================== UNIVERSAL CONTAINER FOR ALL SECTIONS ==================== */

.features-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 60px;
  position: relative;
  z-index: 2;
  margin-block: 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ==================== UNIVERSAL CONTENT STYLING ==================== */

.content-section,
.features-content,
.analytics-content {
  color: white;
  margin-block: 50px;
}

.community-content {
  color: #2c2c2e;
  margin-block: 50px;
  text-shadow: none;
}
