/** Shopify CDN: Minification failed

Line 75:5 Unexpected "/"
Line 81:0 Unexpected "}"

**/
.images_title_container {
  flex: 1;
  padding: 0px 50px 0px 50px;
}

.image-with-text__overlay {
  position: absolute;
  bottom: 0;
  padding: 6px 10px 10px 10px;
  width: 100%;
  text-align: left;
  color: #fff;
  font-weight: 200;
  font-size: 16px; /* 基础字号 */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.image_div_container {
  /* align-items: center;  */
  flex: 1;
  display: flex; /* 启用弹性布局 */
  flex-direction: row; /* 默认值，子元素横向排列（左到右） */
  gap: 10px; /* 设置子元素间距 */
  padding: 10px 150px 0px 150px;
  max-width: 1;
}

.custom_responsive-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover; /* 保持图片比例 */
}

@media (max-width: 1000px) {
  .image-with-text__overlay {
    position: absolute;
    bottom: 0;
    padding: 6px 10px 10px 10px;
    max-width: 0px;
    max-height: 0px;
    color: #fff;
    font-weight: 200;
    font-size: 0px; /* 基础字号 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
}

.image_div_flex {
  flex: 1;
  position: relative;
}

@media (max-width: 750px) {
  .custom_responsive-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover; /* 保持图片比例 */
  }

  /* .image_div_container {
    /* align-items: center;  */
    flex: 1;
    display: flex; /* 启用弹性布局 */
    flex-direction: row; /* 默认值，子元素横向排列（左到右） */
    gap: 10px; /* 设置子元素间距 */
    padding: 0px;
  } */

 .images_title_container {
  flex:1;
  padding: 0px 0px 0px 0px;
  }
}
