/** Shopify CDN: Minification failed

Line 11:10 Unexpected "{"
Line 11:19 Expected ":"
Line 222:3 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.section-{{ section.id }} .blog .article-container{
  max-width: 900px;
  padding: 0 10px;
  margin: 0 auto;
}

.blog .article-header {
  margin-bottom: 2rem;
  text-align: center;
  background: var(--color-dark-blue);
  background: linear-gradient(180deg, var(--color-dark-blue) 80%, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
  padding-top: 1rem;
  color: #fff;

  h1 {
    color: #fff;
    margin: 2rem 0 1rem;
    text-wrap: balance;
  }

  .blog-byline{
    margin-bottom: 3rem;
    text-wrap: balance;
    font-size: var(--font-body-large);
  }
}

.blog .article-meta .author-bio{
  display: flex;
  gap: 2rem;

  .author-photo{
    flex: 0 0 90px;
  }

  .author-name{
    font-weight: bold;
  }

  .author-title{
    font-size: var(--font-body-xsmall);
    margin-bottom: 1rem;
  }

  .author-bio{
    font-size: var(--font-body-small);
  }
}

.article-meta .article-container {
  margin-top: 20px;
  background-color: var(--color-neutral-100);
  padding: 2rem;
  margin: 2rem auto;
}

@media screen and (min-width: 769px) {

  .blog .article-header {
    h1{
      font-size: var(--font-display-large);
    }
}

@media screen and (min-width: 1024px) {
}
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
    margin-top: 40px;
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.search-results {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }

  .product-type{
    margin-bottom: 0.5rem;
    font-size: var(--font-body-xsmall);
    color: var(--color-light-blue);
  }

  .product-title{
    margin-bottom: 0.25rem;
    font-weight: var(--font-bold);
  }

  .product-price{
    font-weight: var(--font-bold);
  }

  .search-result__content{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
  }

  .modal-overlay {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.7); 
}

.modal-overlay .modal-content {
  background-color: #fefefe;
  margin: 10% auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%; 
  max-width: 700px; 
  position: relative;
}

.modal-overlay .close-button {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal-overlay iframe {
  width: 100%;
  height: 400px;
}

/* CSS from block stylesheet tags */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);

    .shopify-block {
      flex: 1;
    }
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }