/* =====================================================
   OVERRIDES.CSS
   -----------------------------------------------------
   PURPOSE:
   - Resolve conflicts with Harmony (P7)
   - Final visual adjustments
   - Last file loaded (highest priority)

   RULES:
   - Keep SMALL and intentional
   - Do NOT duplicate full systems
===================================================== */

/* Example fixes */

/* Ensure containers align with Harmony sections */
.hmy-content .container {
  padding-left: 20px;
  padding-right: 20px;
}

/* Fix image overflow issues */
.img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Prevent clipping inside flex rows */
.img-wrap {
  overflow: hidden;
}
/* =====================================================
   HARMONY WIDTH ALIGNMENT FIX
===================================================== */

.hmy-content {
  width: 100%;
}

.hmy-content .container {
  margin-left: auto;
  margin-right: auto;
}

/* Prevent double padding */

.hmy-content-wrapper {
  padding-left: 0;
  padding-right: 0;
}