/* ==========================================================================
   Vertical Center — Multi-column containers
   ========================================================================== */

/* Vertically centers all direct child columns within the container
   while preserving the widths set in Splash. */
.vertical-center-row {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Removes Splash's forced float and matched-height behavior
   so each child column sizes naturally and can center correctly. */
.vertical-center-row > div {
  float: none !important;
  min-height: 0px !important;
  max-height: 9999px !important;
  height: auto !important;
  box-sizing: border-box !important;
}



/* ==========================================================================
   Text Links — Use Splash's native text color
   ========================================================================== */

/* Prevents the theme from forcing a default link color.
   Text links inherit the color assigned to their content block in Splash. */
#main-canvas .cms-block-type-content a,
#main-canvas .cms-block-type-content a:link,
#main-canvas .cms-block-type-content a:visited,
#main-canvas .cms-block-type-content a:hover,
#main-canvas .cms-block-type-content a:focus,
#main-canvas .cms-block-type-content a:active {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
  text-decoration-color: currentColor !important;
}