/** Shopify CDN: Minification failed

Line 23:14 Expected identifier but found whitespace
Line 23:16 Unexpected "{"
Line 23:25 Expected ":"
Line 23:51 Expected ":"
Line 24:17 Expected identifier but found whitespace
Line 24:19 Unexpected "{"
Line 24:28 Expected ":"
Line 24:57 Expected ":"
Line 81:14 Expected identifier but found whitespace
Line 81:16 Unexpected "{"
... and 6 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Blog Post Container */
.blog-post {
  max-width: 900px;
  margin: 0 auto;
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  font-family: 'Assistant', sans-serif;
}

/* Header Row: Title + Image */
.blog-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

/* Blog Title */
.blog-title {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
  flex: 1;
}

/* Featured Image */
.blog-featured-image {
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Blog Content */
.blog-content {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 20px;
}

/* Optional: Blog Meta (date/author) */
.blog-meta {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 10px;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .blog-header {
    flex-direction: column;
  }
  .blog-featured-image {
    width: 100%;
    margin-top: 10px;
  }
}
/* Blog Post Container */
.blog-post {
  max-width: 900px;
  margin: 0 auto;
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  font-family: 'Assistant', sans-serif;
  text-align: center; /* center all content */
  padding-bottom: 50px;
}

/* Featured Image */
.blog-featured-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  margin-top: 30px;
}

/* Blog Title */
.blog-title {
  font-weight: 400;
  font-size: 3.225rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

/* Optional: Blog Meta (date/author) */
.blog-meta {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 25px;
}

/* Blog Content */
.blog-content {
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.8;
  text-align: left; /* content left-aligned for readability */
}

/* Headings inside blog content */
.blog-content h1 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 40px;
  margin-bottom: 20px;
}

.blog-content h2 {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 35px;
  margin-bottom: 18px;
}

.blog-content h3 {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-content h4 {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 25px;
  margin-bottom: 12px;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .blog-title {
    font-size: 2.2rem;
  }
  .blog-content {
    font-size: 1.4rem;
    padding-left: 15px;
    padding-right: 15px;
  }
  .blog-featured-image {
    max-width: 90%;
  }
  .blog-content h1 {
    font-size: 2rem;
  }
  .blog-content h2 {
    font-size: 1.75rem;
  }
  .blog-content h3 {
    font-size: 2rem;
  }
  .blog-content h4 {
    font-size: 1.25rem;
  }
}