/* Project overrides for the ported theme — fixes where the app's global Tailwind
 * reset conflicts with the theme (which assumes browser-default element styles).
 * Loaded by ThemePage AFTER plugins.css + style.css. Kept outside /assets so a
 * re-copy of the source theme never clobbers it. */

/* Tailwind's base reset forces `img { display: block }`, which turns the hero's
 * inline avatar stack into a vertical column. Make the avatar container a flex
 * row so the images overlap horizontally as designed. */
.home-two .banner-two__content .customers-info .customers {
  display: flex;
  align-items: center;
}
