/** Shopify CDN: Minification failed

Line 14:21 Expected identifier but found whitespace
Line 14:23 Unexpected "{"
Line 14:32 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-featured-section {
    width: 100%;
    padding: 4rem 0;
    background-color: {{ section.settings.background_color }};
  }

  .custom-featured-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }

  .custom-featured-section__content {
    flex: 1;
    min-width: 300px;
  }

  .custom-featured-section__image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
  }

  .custom-featured-section__subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .custom-featured-section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .custom-featured-section__description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
  }

  .custom-featured-section__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .custom-featured-section__button {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .custom-featured-section__button--primary {
    background-color: #000;
    color: #fff;
  }

  .custom-featured-section__button--secondary {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
  }

  .custom-featured-section__image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  @media (max-width: 768px) {
    .custom-featured-section__container {
      flex-direction: column;
      text-align: center;
    }

    .custom-featured-section__image {
      max-width: 100%;
    }

    .custom-featured-section__buttons {
      justify-content: center;
    }
  }