.shopify-section.two-column_images {
  .image-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .image-column {
    width: 50%;
    position: relative;
  }
  .image-container {
    height: 100%;
  }
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .overlay__content {
    position: absolute;
    color: var(--color-image-content);
    display: flex;
    flex-direction: column;
    padding: 20px;
  }
  .overlay__content.top-left {
    top: 10px;
    left: 10px;
  }
  .overlay__content.top-right {
    top: 10px;
    right: 10px;
  }
  .overlay__content.middle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .overlay__content.bottom-left {
    bottom: 10px;
    left: 10px;
  }
  .overlay__content.bottom-right {
    bottom: 10px;
    right: 10px;
  }
  .overlay__content.text-align-left {
    text-align: left;
    justify-content: flex-start;
    align-items: left;
  }
  .overlay__content.text-align-right {
    text-align: right;
    justify-content: flex-end;
    align-items: right;
  }
  .overlay__content.text-align-center {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .heading-text {
    color: var(--color-image-content);
    font-size: 2.5rem;
    font-weight: bold;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
  }
  .img__description {
    line-height: 1.2;
  }
  .overlay__content a {
    color: var(--color-image-content);
    margin-top: 1rem;
  }
  @media (max-width: 768px) {
    .image-column {
      min-height: 32rem;
    }
    .overlay__content {
      padding: 1rem;
      width: 100%;
    }
    .heading-text {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .heading-text {
      font-size: 1.6rem;
    }
  }
}