.elementor-13099 .elementor-element.elementor-element-2fd6b0a{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f18b4ba *//* 1. Global Box Sizing & Fluid Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #f9fafb;
  padding: 2rem 1rem;
}

/* 2. Container Constraints */
.container {
  width: 100%;
  max-width: 1200px;
  margin-0-auto;
  padding: 0 1rem;
}

/* 3. Fluid Responsive Typography (No overlapping line-heights) */
.heading-primary {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.5rem;
  /* Prevent word collision on tiny screens */
  overflow-wrap: break-word;
  word-break: break-word;
}

.heading-secondary {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 0.75rem;
  overflow-wrap: break-word;
}

.body-text {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  color: #4b5563;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* 4. Flexible Auto-Fit Grid */
.responsive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2rem;
}

/* 5. Flex Cards with Dynamic Heights */
.card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* CRITICAL: Allows natural vertical growth, preventing text overlap */
  height: auto;
  min-height: 100%;
}

.card-header {
  /* CRITICAL for Flexbox children to avoid overflow */
  min-width: 0; 
  margin-bottom: 1rem;
}

.card-body {
  flex: 1;
  min-width: 0;
}

.card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  min-width: 0;
}

/* 6. Optional Utility for Multi-line Truncation */
.text-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}/* End custom CSS */