/* =============================================================================
   image-bar.css — Image Bar Block
   Layouts: text|image, image|image, and single image
   ============================================================================= */

.image-bar-block {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: flex-start;
}

.image-bar-block__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

/* ---------- Text content ---------- */
.image-bar-block__text {
  min-width: 0;
}

.image-bar-block__text h4 {
  margin-bottom: 0.75rem;
}

.image-bar-block__text > :last-child {
  margin-bottom: 0;
}

/* ---------- Images ---------- */
.image-bar-block__image {
  flex-shrink: 0;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--app-radius, 8px);
  box-shadow: none !important;
}

/* ---------- Layout: Single image (centered) ---------- */
.image-bar-block--image .image-bar-block__inner {
  justify-content: center;
}

/* ---------- Layout: Image-image ---------- */
.image-bar-block--image-image .image-bar-block__image {
  max-width: 45%;
}

/* Placement: 1st image from left, 2nd centered in remaining space */
.image-bar-block--placement-left .image-bar-block__inner {
  justify-content: flex-start;
}

.image-bar-block--placement-left .image-bar-block__image--2 {
  margin: 0 auto;
}

/* Placement: 1st image from right, 2nd centered between 1st and left wall */
.image-bar-block--placement-right .image-bar-block__inner {
  justify-content: flex-end;
}

.image-bar-block--placement-right .image-bar-block__image--1 {
  order: 1;
}

.image-bar-block--placement-right .image-bar-block__image--2 {
  order: 0;
  margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
  .image-bar-block__image {
    max-width: 100%;
  }

  .image-bar-block--image-image .image-bar-block__image {
    max-width: 80%;
  }

  .image-bar-block--placement-right .image-bar-block__image--1 {
    order: 0;
  }

  .image-bar-block--placement-right .image-bar-block__image--2 {
    order: 0;
    margin: 0;
  }
}
