/** Shopify CDN: Minification failed

Line 57:16 Expected identifier but found whitespace
Line 57:17 Unexpected "4px"
Line 57:28 Unexpected "{"
Line 57:37 Expected ":"
Line 71:10 Expected identifier but found whitespace
Line 71:12 Unexpected "{"
Line 71:21 Expected ":"
Line 72:15 Expected identifier but found whitespace
Line 72:17 Unexpected "{"
Line 72:26 Expected ":"

**/

  .med-catalog-flex {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    align-items: flex-start;
  }

  /* Image Column Styling */
  .med-catalog-image {
    flex: 1;
    position: sticky;
    top: 50px; /* Keeps the image visible as you scroll */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    line-height: 0;
  }

  .med-catalog-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .med-catalog-image:hover img {
    transform: scale(1.03);
  }

  /* Content Column Styling */
  .med-catalog-content {
    flex: 1.2;
  }

  .catalog-item-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 4px solid {{ section.settings.accent_color }};
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: 0.3s ease;
  }

  .catalog-item-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  }

  .catalog-category-tag {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    color: {{ section.settings.accent_color }};
    background: {{ section.settings.accent_color | color_modify: 'alpha', 0.1 }};
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: inline-block;
  }

  .catalog-item-title {
    margin: 0 0 10px 0;
    color: #111;
    font-size: 1.4rem;
  }

  .catalog-item-examples {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    font-style: italic;
  }

  .catalog-item-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
  }

  @media (max-width: 990px) {
    .med-catalog-flex {
      flex-direction: column;
    }
    .med-catalog-image {
      position: relative;
      top: 0;
      width: 100%;
      margin-bottom: 30px;
    }
  }