/* ==========================================================================
   Equal-Height Image Row (Divi 5)
   ==========================================================================
   Usage: Klasse "image_row" als Attribute auf die Row in Divi legen.
   Alle Bilder in der Row werden auf gleiche Hoehe gebracht (object-fit: cover).
   ========================================================================== */

.et_pb_row.image_row .et_pb_image.et_pb_module {
    flex: 1 !important;
    min-height: 0 !important;
}

.et_pb_row.image_row .et_pb_image .et_pb_image_wrap {
    flex: 1 !important;
    min-height: 0 !important;
    display: flex !important;
}

.et_pb_row.image_row .et_pb_image_wrap img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}
