/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 17:15 Unexpected "{"
Line 17:24 Expected ":"
Line 17:30 Unexpected "{"
Line 376:17 Unexpected "{"
Line 376:26 Expected ":"
Line 376:32 Unexpected "{"
Line 406:17 Unexpected "{"
Line 406:26 Expected ":"
Line 406:32 Unexpected "{"
... and 1 more hidden warnings

**/
<style>
#blog-archive-{{ section.id }}{
  --radius:18px;
  --card-bg:rgba(255,255,255,.7);
  --border:rgba(255,255,255,.35);
  --shadow:0 10px 35px rgba(0,0,0,.08);
  --transition:.35s ease;
  padding:80px 0;
}

/* Header */
.blog-archive__header{
  text-align:center;
  max-width:800px;
  margin:0 auto 50px;
}

.blog-archive__heading{
  margin:0 0 12px;
  font-size:clamp(32px,4vw,54px);
  line-height:1.1;
}

.blog-archive__description{
  opacity:.75;
}

/* Featured Post */
.blog-featured-post{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:center;
  margin-bottom:60px;
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:28px;
  overflow:hidden;
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:var(--shadow);
}

.blog-featured-post__image{
  display:block;
  height:100%;
}

.blog-featured-post__image img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  display:block;
}

.blog-featured-post__content{
  padding:40px;
}

.featured-badge{
  display:inline-flex;
  padding:8px 14px;
  border-radius:100px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
  background:rgba(0,0,0,.06);
}

.blog-featured-post h3{
  margin:0 0 16px;
  font-size:clamp(28px,3vw,42px);
  line-height:1.15;
}

.blog-featured-post h3 a{
  color:inherit;
  text-decoration:none;
}

.meta-item{
  font-size:14px;
  opacity:.7;
  margin-bottom:18px;
}

.featured-excerpt{
  margin-bottom:24px;
  line-height:1.7;
  opacity:.8;
}

/* Search */
.blog-search-wrapper{
  margin-bottom:24px;
}

.blog-search-input{
  width:100%;
  height:60px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.1);
  padding:0 20px;
  background:#fff;
  font-size:16px;
  outline:none;
}

.blog-search-input:focus{
  box-shadow:0 0 0 3px rgba(0,0,0,.08);
}

/* Layout Switch */
.blog-layout-switch{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-bottom:24px;
}

.layout-btn{
  border:none;
  cursor:pointer;
  border-radius:100px;
  padding:10px 20px;
  transition:var(--transition);
}

.layout-btn.active{
  transform:translateY(-2px);
}

/* Tags */
.blog-tags-filter{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:40px;
}

.tag-filter{
  border:none;
  cursor:pointer;
  padding:10px 18px;
  border-radius:100px;
  transition:var(--transition);
}

.tag-filter.active{
  transform:translateY(-2px);
}

/* Grid */
.blog-posts-grid{
  display:grid;
  gap:28px;
}

.columns-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.columns-3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.columns-4{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

/* Masonry Mode */
.blog-posts-grid.masonry{
  column-gap:28px;
}

.blog-posts-grid.masonry.columns-2{
  columns:2;
}

.blog-posts-grid.masonry.columns-3{
  columns:3;
}

.blog-posts-grid.masonry.columns-4{
  columns:4;
}

.blog-posts-grid.masonry .blog-card{
  display:inline-block;
  width:100%;
  margin:0 0 28px;
}

/* Card */
.blog-card{
  background:var(--card-bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:var(--shadow);
  transition:var(--transition);
}

.blog-card:hover{
  transform:translateY(-8px);
}

.blog-card__image{
  display:block;
  overflow:hidden;
}

.blog-card__image img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
  transition:transform .7s ease;
}

.blog-card:hover .blog-card__image img{
  transform:scale(1.08);
}

.blog-card__content{
  padding:24px;
}

.blog-card__tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}

.blog-card__tags span{
  padding:6px 10px;
  border-radius:100px;
  font-size:12px;
  background:rgba(0,0,0,.06);
}

.blog-card__title{
  margin:0 0 14px;
  font-size:24px;
  line-height:1.3;
}

.blog-card__title a{
  color:inherit;
  text-decoration:none;
}

.blog-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  font-size:13px;
  opacity:.65;
  margin-bottom:14px;
}

.blog-card__excerpt{
  line-height:1.7;
  opacity:.8;
  margin-bottom:18px;
}

.blog-read-more{
  text-decoration:none;
  font-weight:600;
}

/* Load More */
.blog-load-more{
  text-align:center;
  margin-top:50px;
}

.blog-load-more .button{
  min-width:220px;
}

/* Newsletter */
.blog-newsletter{
  margin-top:80px;
  padding:50px;
  text-align:center;
  border-radius:28px;
  background:var(--card-bg);
  border:1px solid var(--border);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:var(--shadow);
}

.blog-newsletter h3{
  margin:0 0 10px;
  font-size:36px;
}

.newsletter-text{
  max-width:650px;
  margin:0 auto 25px;
}

.blog-newsletter form{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.blog-newsletter input[type="email"]{
  width:400px;
  max-width:100%;
  height:58px;
  border-radius:14px;
  padding:0 18px;
  border:1px solid rgba(0,0,0,.12);
}

.blog-newsletter button{
  height:58px;
  border:none;
  cursor:pointer;
  border-radius:14px;
  padding:0 28px;
}

/* Hidden Cards */
.blog-card.hidden{
  display:none!important;
}

/* Animation */
.blog-card,
.blog-featured-post{
  opacity:0;
  transform:translateY(20px);
  animation:blogFade .7s forwards;
  background: #faf5f2;
}

@keyframes blogFade{
  to{
    opacity:1;
    transform:none;
  }
}

/* Tablet */
@media screen and (max-width:989px){

  #blog-archive-{{ section.id }}{
    padding:60px 0;
  }

  .blog-featured-post{
    grid-template-columns:1fr;
  }

  .blog-featured-post__image img{
    min-height:320px;
  }

  .columns-4,
  .columns-3{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .blog-posts-grid.masonry.columns-4,
  .blog-posts-grid.masonry.columns-3{
    columns:2;
  }

  .blog-newsletter{
    padding:40px 25px;
  }
}

/* Mobile */
@media screen and (max-width:749px){

  #blog-archive-{{ section.id }}{
    padding:50px 0;
  }

  .blog-featured-post{
    gap:0;
    border-radius:20px;
  }

  .blog-featured-post__content{
    padding:24px;
  }

  .blog-featured-post h3{
    font-size:28px;
  }

  .blog-featured-post__image img{
    min-height:240px;
  }

  .columns-2,
  .columns-3,
  .columns-4{
    grid-template-columns:1fr;
  }

  .blog-posts-grid.masonry.columns-2,
  .blog-posts-grid.masonry.columns-3,
  .blog-posts-grid.masonry.columns-4{
    columns:1;
  }

  .blog-card__image img{
    height:240px;
  }

  .blog-card__content{
    padding:20px;
  }

  .blog-card__title{
    font-size:22px;
  }

  .blog-newsletter{
    padding:30px 20px;
  }

  .blog-newsletter h3{
    font-size:28px;
  }

  .blog-layout-switch{
    flex-wrap:wrap;
  }

  .blog-tags-filter{
    justify-content:flex-start;
    overflow-x:auto;
    flex-wrap:nowrap;
    padding-bottom:10px;
  }

  .blog-tags-filter::-webkit-scrollbar{
    height:4px;
  }
}
</style>