/** Shopify CDN: Minification failed

Line 13:20 Expected identifier but found whitespace
Line 13:22 Unexpected "{"
Line 13:31 Expected ":"
Line 157:3 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.media-with-text-list {
    --section-width: {{ section.settings.width | default: '100%' }};
  }

  .media-with-text-list__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
  }

  .media-with-text-item {
    margin: 0 auto 60px auto;
  }
    .media-with-text-item:last-child {
      margin-bottom: 0;
    }
.media-with-text__media {
  overflow: hidden;
  border-radius : 16px
}
  .media-with-text-item--reverse {
    flex-direction: row-reverse;
  }

  .media-with-text__media {
    flex: 1;
  }

  .media-with-text__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .media-with-text__text {
    flex: 1;
  }

 

  .media-with-text-list__description {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
  }

  .media-with-text-list__info {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #555;
  }

  .media-with-text-list__custom {
    margin-top: 1rem;
  }
    @media (min-width: 769px) {
  .media-with-text-item {
    display: flex;
    align-items: center;
     margin: 0 auto 90px auto;
  }
  @media (max-width: 768px) {
    .media-with-text-item {
      flex-direction: column;
    }

    .media-with-text-list__title {
      font-size: 1.5rem;
    }


  }
.showcase-middle {
    padding: 40px 20px;
  }

  .showcase-middle__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .showcase-middle__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .showcase-middle__image {
    width: 100%;
    height: auto;
  }

  .showcase-middle__text {
    padding: 20px;
  }

  .showcase-middle__connector {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #666;
  }

  .showcase-middle__heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .showcase-middle__description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
  }

  .showcase-middle__info {
    font-size: 14px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
  }

  .showcase-middle__custom {
    margin-top: 20px;
  }

  @media (max-width: 768px) {
    .showcase-middle__content {
      grid-template-columns: 1fr;
    }

    .showcase-middle__heading {
      font-size: 24px;
    }

    .showcase-middle__text {
      padding: 0;
    }
  }